diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0dd2a4aeb10b02148cbb508b994d540e5c1279fa..1a4448046e775c2f2a9c69ae43cf5760599e6997 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,7 +1,7 @@
variables:
# note: GitLab cannot reference variables defined by users in the include ref:, we need to use a YAML anchor for this
# see https://docs.gitlab.com/ci/yaml/includes/#use-variables-with-include for more information
- IVAS_CODEC_CI_REF: &IVAS_CODEC_CI_REF 44cb5638949b874ce0f5c3bf4359f9db860d88bc
+ IVAS_CODEC_CI_REF: &IVAS_CODEC_CI_REF main
include:
- local: .gitlab-ci/variables.yml
@@ -426,7 +426,7 @@ codec-smoke-test:
- if cat smoke_test_output_hrtf.txt | grep -c "failed"; then echo "Smoke test with external hrtf files failed"; ret_val=1; fi
- exit $ret_val
artifacts:
- name: "mr-$CI_MERGE_REQUEST_IID--sha-$CI_COMMIT_SHORT_SHA--stage-$CI_JOB_STAGE--results"
+ name: "mr-$CI_MERGE_REQUEST_IID--sha-$CI_COMMIT_SHORT_SHA--job-$CI_JOB_NAME--results"
expire_in: 1 week
when: always
paths:
@@ -484,7 +484,7 @@ pytest-compare-20ms-and-5ms-rendering:
needs: ["build-codec-linux-cmake", "build-codec-linux-make", "build-codec-instrumented-linux", "build-codec-sanitizers-linux"]
script:
- bash "${CI_PROJECT_DIR}"/ivas-codec-ci/snippets/print-common-info.sh
- - bash "${CI_PROJECT_DIR}"/ivas-codec-ci/snippets/float/disable-limiter.sh
+ - bash "${CI_PROJECT_DIR}"/ivas-codec-ci/snippets/disable-limiter.sh
- make clean
- make -j
### prepare pytest
@@ -508,7 +508,7 @@ pytest-compare-20ms-and-5ms-rendering:
- if [ $exit_code10 -ne 0 ]; then echo "Non-bitexact cases encountered with 10ms rendering!"; exit_code=1; fi
- if [ $exit_code -ne 0 ]; then exit $EXIT_CODE_FAIL; fi
artifacts:
- name: "mr-$CI_MERGE_REQUEST_IID--sha-$CI_COMMIT_SHORT_SHA--stage-$CI_JOB_STAGE--results"
+ name: "mr-$CI_MERGE_REQUEST_IID--sha-$CI_COMMIT_SHORT_SHA--job-$CI_JOB_NAME--results"
expire_in: 1 week
when: always
expose_as: "pytest 5ms and 10ms vs 20ms results"
@@ -544,81 +544,69 @@ renderer-smoke-test:
junit:
- report-junit.xml
-# test renderer executable with cmake + asan
-renderer-asan:
+.renderer-sanitizer-job:
extends:
- .test-job-linux
- .rules-merge-request-to-main
needs: ["build-codec-linux-cmake"]
stage: test
- script:
- - cmake -B cmake-build -G "Unix Makefiles" -DCLANG=asan -DCOPY_EXECUTABLES_FROM_BUILD_DIR=true
- - cmake --build cmake-build -- -j
- - testcase_timeout=180
- - python3 -m pytest -q -n auto -rA --junit-xml=report-junit.xml tests/renderer/test_renderer.py --testcase_timeout=$testcase_timeout
-
+ timeout: "1 hour"
artifacts:
name: "mr-$CI_MERGE_REQUEST_IID--sha-$CI_COMMIT_SHORT_SHA--job-$CI_JOB_NAME--results"
expire_in: 1 week
when: always
paths:
- report-junit.xml
- expose_as: "renderer asan pytest results"
+ - report.html
reports:
junit:
- report-junit.xml
+ before_script:
+ - cmake -B cmake-build -G "Unix Makefiles" -DCLANG=$SANITIZER_BUILD_STRING -DCOPY_EXECUTABLES_FROM_BUILD_DIR=true
+ - cmake --build cmake-build -- -j
+ # rename files to fit naming convention
+ # en- and decoder needed because of split rendering testcases
+ - mv IVAS_cod IVAS_cod_ref
+ - mv IVAS_dec IVAS_dec_ref
+ - mv IVAS_rend IVAS_rend_ref
+ - mv ISAR_post_rend ISAR_post_rend_ref
+ - testcase_timeout=180
+
+# test renderer executable with cmake + asan
+renderer-asan:
+ extends:
+ - .renderer-sanitizer-job
+ variables:
+ SANITIZER_BUILD_STRING: "asan"
+ script:
+ - python3 -m pytest -q --tb=no -n auto --html=report.html --self-contained-html --junit-xml=report-junit.xml tests/renderer/test_renderer.py tests/split_rendering/test_split_rendering.py --create_ref --testcase_timeout=$testcase_timeout
+ artifacts:
+ expose_as: "renderer asan result"
+
# test renderer executable with cmake + msan
renderer-msan:
extends:
- - .test-job-linux
- - .rules-merge-request-to-main
- needs: ["build-codec-linux-cmake"]
- stage: test
+ - .renderer-sanitizer-job
+ variables:
+ SANITIZER_BUILD_STRING: "msan"
script:
- - cmake -B cmake-build -G "Unix Makefiles" -DCLANG=msan -DCOPY_EXECUTABLES_FROM_BUILD_DIR=true
- - cmake --build cmake-build -- -j
- - testcase_timeout=180
- - python3 -m pytest -q -n auto -rA --junit-xml=report-junit.xml tests/renderer/test_renderer.py --testcase_timeout=$testcase_timeout
-
+ - python3 -m pytest -q --tb=no -n auto --html=report.html --self-contained-html --junit-xml=report-junit.xml tests/renderer/test_renderer.py tests/split_rendering/test_split_rendering.py --create_ref --testcase_timeout=$testcase_timeout
artifacts:
- name: "mr-$CI_MERGE_REQUEST_IID--sha-$CI_COMMIT_SHORT_SHA--job-$CI_JOB_NAME--results"
- expire_in: 1 week
- when: always
- paths:
- - report-junit.xml
- expose_as: "renderer msan pytest results"
- reports:
- junit:
- - report-junit.xml
+ expose_as: "renderer msan result"
+
# test renderer executable with cmake + usan
renderer-usan:
extends:
- - .test-job-linux
- - .rules-merge-request-to-main
- needs: ["build-codec-linux-cmake"]
- stage: test
+ - .renderer-sanitizer-job
+ variables:
+ SANITIZER_BUILD_STRING: "usan"
script:
- - cmake -B cmake-build -G "Unix Makefiles" -DCLANG=usan -DCOPY_EXECUTABLES_FROM_BUILD_DIR=true
- - cmake --build cmake-build -- -j
- - testcase_timeout=180
- - UBSAN_OPTIONS=suppressions=scripts/ubsan.supp,report_error_type=1,log_path=usan_log_catchall python3 -m pytest -q -n auto -rA --junit-xml=report-junit.xml tests/renderer/test_renderer.py --testcase_timeout=$testcase_timeout
- - grep_exit_code=0
- - touch usan_log_empty # Creates an empty file, this is to avoid "grep: usan_log_*: No such file or directory" in case no USAN failures are reported from pytest
- - grep UndefinedBehaviorSanitizer usan_log_* || grep_exit_code=$?
- - if [ $grep_exit_code != 1 ] ; then echo "Run errors in test_renderer.py with Clang undefined-behavior-sanitizer"; exit 1; fi
-
+ - UBSAN_OPTIONS=suppressions=scripts/ubsan.supp,report_error_type=1 python3 -m pytest -q --tb=no -n auto --html=report.html --self-contained-html --junit-xml=report-junit.xml tests/renderer/test_renderer.py tests/split_rendering/test_split_rendering.py --create_ref --testcase_timeout=$testcase_timeout
artifacts:
- name: "mr-$CI_MERGE_REQUEST_IID--sha-$CI_COMMIT_SHORT_SHA--job-$CI_JOB_NAME--results"
- expire_in: 1 week
- when: always
- paths:
- - report-junit.xml
- expose_as: "renderer usan pytest results"
- reports:
- junit:
- - report-junit.xml
+ expose_as: "renderer usan result"
+
# compare renderer bitexactness between target and source branch
renderer-pytest-on-merge-request:
@@ -737,6 +725,7 @@ split-rendering-pytest-on-merge-request:
- mv IVAS_cod IVAS_cod_ref
- mv IVAS_dec IVAS_dec_ref
- mv IVAS_rend IVAS_rend_ref
+ - mv ISAR_post_rend ISAR_post_rend_ref
### If ref_using_main is not set, checkout the source branch to use scripts and input from there
- if [ $ref_using_main == 0 ]; then git restore lib_com/options.h; fi # Revert changes back before checking out another branch to avoid conflicts
@@ -784,6 +773,12 @@ ivas-pytest-on-merge-request:
stage: compare
needs: ["build-codec-linux-cmake", "codec-smoke-test"]
timeout: "14 minutes"
+ parallel:
+ matrix:
+ # note: keep in sync with list in $TESTS_DIR_CODEC_BE_ON_MR
+ - PYTEST_SCRIPT:
+ - test_param_file.py
+ - test_sba.py
script:
- bash "${CI_PROJECT_DIR}"/ivas-codec-ci/snippets/print-common-info.sh
- commits_behind_count="$(bash "${CI_PROJECT_DIR}"/ivas-codec-ci/snippets/get-commits-behind-count.sh)"
@@ -801,7 +796,7 @@ ivas-pytest-on-merge-request:
### prepare pytest
# create references
- - python3 -m pytest $TESTS_DIR_CODEC_BE_ON_MR -v --update_ref 1
+ - python3 -m pytest "$TESTS_DIR_CODEC_BE_ON_MR"/"$PYTEST_SCRIPT" -v --update_ref 1
### Run test using branch scripts and input
- if [ $ref_using_main == 1 ]; then git checkout $source_branch_commit_sha; fi
@@ -809,7 +804,7 @@ ivas-pytest-on-merge-request:
### run pytest
- exit_code=0
- testcase_timeout=60
- - python3 -m pytest $TESTS_DIR_CODEC_BE_ON_MR -v --html=report.html --self-contained-html --junit-xml=report-junit.xml --testcase_timeout=$testcase_timeout || exit_code=$?
+ - python3 -m pytest "$TESTS_DIR_CODEC_BE_ON_MR"/"$PYTEST_SCRIPT" -v --html=report.html --self-contained-html --junit-xml=report-junit.xml --testcase_timeout=$testcase_timeout || exit_code=$?
- zero_errors=$(cat report-junit.xml | grep -c 'errors="0"') || true
- *merge-request-comparison-check
@@ -818,7 +813,7 @@ ivas-pytest-on-merge-request:
exit_codes:
- 123
artifacts:
- name: "mr-$CI_MERGE_REQUEST_IID--sha-$CI_COMMIT_SHORT_SHA--stage-$CI_JOB_STAGE--results"
+ name: "mr-$CI_MERGE_REQUEST_IID--sha-$CI_COMMIT_SHORT_SHA--job-$CI_JOB_NAME--results"
expire_in: 1 week
when: always
paths:
@@ -869,7 +864,7 @@ ivas-interop-on-merge-request:
exit_codes:
- 123
artifacts:
- name: "mr-$CI_MERGE_REQUEST_IID--sha-$CI_COMMIT_SHORT_SHA--stage-$CI_JOB_STAGE--results"
+ name: "mr-$CI_MERGE_REQUEST_IID--sha-$CI_COMMIT_SHORT_SHA--job-$CI_JOB_NAME--results"
expire_in: 1 week
when: always
paths:
@@ -921,7 +916,7 @@ evs-pytest-on-merge-request:
exit_codes:
- 123
artifacts:
- name: "mr-$CI_MERGE_REQUEST_IID--sha-$CI_COMMIT_SHORT_SHA--stage-$CI_JOB_STAGE--results"
+ name: "mr-$CI_MERGE_REQUEST_IID--sha-$CI_COMMIT_SHORT_SHA--job-$CI_JOB_NAME--results"
expire_in: 1 week
when: always
paths:
@@ -1017,7 +1012,7 @@ check-first-frame-is-sid:
expose_as: "logs-sidstart"
expire_in: "5 days"
-.lc3plus-ensure-no-code-changes:
+lc3plus-ensure-no-code-changes:
extends:
- .test-job-linux
- .rules-merge-request-to-main
@@ -1029,7 +1024,7 @@ check-first-frame-is-sid:
- ./scripts/lc3plus_lib_setup/get_lc3plus.sh
# Ensure git reports no changes
- - modified_files=$(git status -s)
+ - modified_files=$(git status -su lib_lc3plus)
- if [[ $modified_files ]]; then printf 'LC3plus codebase was modified!\n\n'"$modified_files"'\n\n'; exit $EXIT_CODE_FAIL; fi
check-bitexactness-hrtf-rom-and-file:
@@ -1203,7 +1198,7 @@ codec-comparison-on-main-push:
exit_codes:
- 123
artifacts:
- name: "main-push--sha-$CI_COMMIT_SHORT_SHA--stage-$CI_JOB_STAGE--results"
+ name: "main-push--sha-$CI_COMMIT_SHORT_SHA--job-$CI_JOB_NAME--results"
expire_in: 1 week
when: always
paths:
@@ -1262,6 +1257,7 @@ ivas-conformance:
- cp -force IVAS_cod.exe IVAS_cod_ref.exe
- cp -force IVAS_dec.exe IVAS_dec_ref.exe
- cp -force IVAS_rend.exe IVAS_rend_ref.exe
+ - cp -force ISAR_post_rend.exe ISAR_post_rend_ref.exe
# Reference creation
- python scripts/prepare_combined_format_inputs.py
@@ -1327,6 +1323,7 @@ ivas-conformance:
expire_in: 1 week
when: always
paths:
+ - report_cmd.html
- report-junit.xml
- report.html
- Readme_IVAS_dec.txt
@@ -1355,6 +1352,7 @@ ivas-conformance-linux:
- cp IVAS_cod IVAS_cod_ref
- cp IVAS_dec IVAS_dec_ref
- cp IVAS_rend IVAS_rend_ref
+ - cp ISAR_post_rend ISAR_post_rend_ref
# Reference creation
- python3 scripts/prepare_combined_format_inputs.py
diff --git a/Workspace_msvc/lib_com.vcxproj b/Workspace_msvc/lib_com.vcxproj
index 223f837a2e1685afeedb952a5137dab7b902b3a6..c28b36a1454bdb9bd3245a0ce9050d258602a13a 100644
--- a/Workspace_msvc/lib_com.vcxproj
+++ b/Workspace_msvc/lib_com.vcxproj
@@ -223,7 +223,7 @@
-
+
diff --git a/Workspace_msvc/lib_lc3plus.vcxproj b/Workspace_msvc/lib_lc3plus.vcxproj
index 55a291fa9c768769f213dac4423688e2db81f8e3..3f1527357ad6c96d8629a85f7ab3937e82fb3bb0 100644
--- a/Workspace_msvc/lib_lc3plus.vcxproj
+++ b/Workspace_msvc/lib_lc3plus.vcxproj
@@ -106,7 +106,6 @@
-
@@ -116,13 +115,13 @@
-
-
+
+
-
+
@@ -133,35 +132,36 @@
+
-
-
-
+
+
+
+
-
-
-
+
+
+
-
@@ -169,14 +169,12 @@
-
-
-
-
+
+
+
+
-
-
diff --git a/Workspace_msvc/lib_rend.vcxproj b/Workspace_msvc/lib_rend.vcxproj
index 27d4a19a693cf86f60b3ce654912c65b4a7cbaa6..854c99a979e4ae274d9c002b2ca6686a96e75870 100644
--- a/Workspace_msvc/lib_rend.vcxproj
+++ b/Workspace_msvc/lib_rend.vcxproj
@@ -175,6 +175,7 @@
+
diff --git a/Workspace_msvc/lib_rend.vcxproj.filters b/Workspace_msvc/lib_rend.vcxproj.filters
index 942c63712f66e57821488868f81981d3042c56b0..2d1d7d46c0b86e517f6f5a9a35d3c5a985a4caac 100644
--- a/Workspace_msvc/lib_rend.vcxproj.filters
+++ b/Workspace_msvc/lib_rend.vcxproj.filters
@@ -32,30 +32,12 @@
rend_c
-
- rend_c
-
-
- rend_c
-
-
- rend_c
-
-
- rend_c
-
rend_c
rend_c
-
- rend_c
-
-
- rend_c
-
rend_c
@@ -83,15 +65,6 @@
rend_c
-
- rend_c
-
-
- rend_c
-
-
- rend_c
-
rend_c
@@ -113,9 +86,6 @@
rend_c
-
- rend_c
-
rend_c
@@ -134,24 +104,6 @@
rend_c
-
- rend_c
-
-
- rend_c
-
-
- rend_c
-
-
- rend_c
-
-
- rend_c
-
-
- rend_c
-
rend_c
@@ -161,30 +113,15 @@
rend_c
-
- rend_c
-
-
- rend_c
-
-
+
rend_c
-
+
rend_c
-
- rend_h
-
-
- rend_h
-
-
- rend_h
-
rend_h
@@ -203,12 +140,6 @@
rend_h
-
- rend_h
-
-
- rend_h
-
diff --git a/apps/decoder.c b/apps/decoder.c
index a9f5818606272f4f5d060beef44442e49dccf9e6..f2f0e31b3dfbdbed85b3ba823f62d44281a80b3d 100644
--- a/apps/decoder.c
+++ b/apps/decoder.c
@@ -2139,6 +2139,18 @@ static bool parseCmdlIVAS_dec(
return false;
}
+#ifdef SUPPORT_JBM_TRACEFILE
+ /* Validate options that depend on other options */
+ if ( arg->jbmTraceFilename != NULL && arg->delayCompensationEnabled
+ /* This decMode check should be removed once timestamp sync issues between JBM trace and audio are fixed in EVS */
+ && arg->decMode != IVAS_DEC_MODE_EVS )
+ {
+ fprintf( stderr, "Error: Writing to a JBM trace file requires delay compensation to be disabled with -no_delay_cmp\n\n" );
+ usage_dec();
+ return false;
+ }
+#endif
+
return true;
}
@@ -2185,7 +2197,8 @@ static void usage_dec( void )
fprintf( stdout, " Reading RFC4867 AMR/AMR-WB RTP payload format is not supported.\n" );
#endif
#ifdef SUPPORT_JBM_TRACEFILE
- fprintf( stdout, "-Tracefile TF : VoIP mode: Generate trace file named TF\n" );
+ fprintf( stdout, "-Tracefile TF : VoIP mode: Generate trace file named TF. Requires -no_delay_cmp to\n" );
+ fprintf( stdout, " be enabled so that trace contents remain in sync with audio output.\n" );
#endif
#ifdef DEBUGGING
#ifdef VARIABLE_SPEED_DECODING
@@ -2390,13 +2403,13 @@ static ivas_error initOnFirstGoodFrame(
return error;
}
- int16_t *zeroBuf = malloc( pcmFrameSize * sizeof( int16_t ) );
+ /* Write zeros to the output audio buffer */
+ int16_t *zeroBuf = calloc( pcmFrameSize, sizeof( int16_t ) );
if ( zeroBuf == NULL )
{
fprintf( stdout, "Error: Unable to allocate memory for output buffer.\n" );
return IVAS_ERR_FAILED_ALLOC;
}
- memset( zeroBuf, 0, pcmFrameSize * sizeof( int16_t ) );
for ( int16_t i = 0; i < numInitialBadFrames; ++i )
{
@@ -2420,7 +2433,6 @@ static ivas_error initOnFirstGoodFrame(
}
else
{
-
if ( *pRemainingDelayNumSamples < *numOutSamples )
{
if ( ( error = AudioFileWriter_write( *ppAfWriter, zeroBuf, *numOutSamples * *pNumOutChannels - ( *pRemainingDelayNumSamples * *pNumOutChannels ) ) ) != IVAS_ERR_OK )
diff --git a/apps/encoder.c b/apps/encoder.c
index 4235e3d7880fc6022c39ac904bd5d6db53f61c41..147512afc994a4504eeec140416468d11319b60a 100644
--- a/apps/encoder.c
+++ b/apps/encoder.c
@@ -15,6 +15,7 @@
the software. This notice grants no license of any kind, including but not limited to patent
license, nor is any license granted by implication, estoppel or otherwise.
+ Contributors are required to enter into the IVAS codec Public Collaboration agreement before making
Contributors are required to enter into the IVAS codec Public Collaboration agreement before making
contributions.
diff --git a/apps/isar_post_rend.c b/apps/isar_post_rend.c
index aa004c4cc3a094b1c256d47ea4ffe01871a27b07..2744c3bbe5855eb06393bc3ac5a418cfef302c3e 100644
--- a/apps/isar_post_rend.c
+++ b/apps/isar_post_rend.c
@@ -681,6 +681,7 @@ int main(
int argc,
char **argv )
{
+ bool mainFailed = true; /* Assume main failed until cleanup is reached without errors */
ISAR_POST_REND_HANDLE hIsarPostRend = NULL;
RotFileReader *headRotReader = NULL;
RotFileReader *externalOrientationFileReader = NULL;
@@ -1222,6 +1223,8 @@ int main(
* Close files and deallocate resources
*------------------------------------------------------------------------------------------*/
+ mainFailed = false; /* This will stay set to true if cleanup is reached via a goto due to an error */
+
cleanup:
free( inpInt16Buffer );
@@ -1252,7 +1255,7 @@ cleanup:
print_mem( NULL );
#endif
- return 0;
+ return mainFailed ? -1 : 0;
}
diff --git a/apps/renderer.c b/apps/renderer.c
index 1fb83acc5ae1689af041495acb51c5cd2e031916..18e0f838e31ad927b92664cb4c99f72c6890f56b 100644
--- a/apps/renderer.c
+++ b/apps/renderer.c
@@ -68,6 +68,8 @@
#define IVAS_MAX16B_FLT 32767.0f
#define IVAS_MIN16B_FLT ( -32768.0f )
+#define OMASA_TDREND_MATCHING_GAIN_DB ( -2.0f )
+
#if !defined( DEBUGGING ) && !defined( WMOPS )
static
#endif
@@ -232,13 +234,13 @@ static const CmdLnParser_Option cliOptions[] = {
.id = CmdLnOptionId_inputFormat,
.match = "input_format",
.matchShort = "if",
- .description = "Audio format of input file (e.g. 5_1 or HOA3 or META, use -l for a list)",
+ .description = "Audio format of input file (e.g. 5_1 or HOA3 or META,\nuse -l for a list)",
},
{
.id = CmdLnOptionId_inputMetadata,
.match = "input_metadata",
.matchShort = "im",
- .description = "Space-separated list of path to metadata files for ISM or MASA inputs or BINAURAL_SPLIT_PCM input mode. For OMASA, ISM files must be specified first.",
+ .description = "Space-separated list of path to metadata files for ISM/MASA/OMASA/\nOSBA/BINAURAL_SPLIT_PCM inputs. \nFor OMASA, ISM files must be specified first.",
},
{
.id = CmdLnOptionId_outputFile,
@@ -256,13 +258,13 @@ static const CmdLnParser_Option cliOptions[] = {
.id = CmdLnOptionId_sampleRate,
.match = "sample_rate",
.matchShort = "fs",
- .description = "Input sampling rate in kHz (16, 32, 48) - required only with raw PCM inputs",
+ .description = "Input sampling rate in kHz (16, 32, 48) - required only with raw\nPCM inputs",
},
{
.id = CmdLnOptionId_trajFile,
.match = "trajectory_file",
.matchShort = "T",
- .description = "Head rotation trajectory file for simulation of head tracking (only for binaural outputs)",
+ .description = "Head rotation trajectory file for simulation of head tracking\n(only for binaural outputs)",
},
{
.id = CmdLnOptionId_outputMetadata,
@@ -280,43 +282,43 @@ static const CmdLnParser_Option cliOptions[] = {
.id = CmdLnOptionId_refRotFile,
.match = "reference_rotation_file",
.matchShort = "rf",
- .description = "Reference rotation trajectory file for simulation of head tracking (only for binaural outputs)",
+ .description = "Reference rotation trajectory file for simulation of head tracking\n(only for binaural outputs)",
},
{
.id = CmdLnOptionId_customHrtfFile,
.match = "custom_hrtf",
.matchShort = "hrtf",
- .description = "Custom HRTF file for binaural rendering (only for binaural outputs)",
+ .description = "Custom HRTF file for binaural rendering\n(only for binaural outputs)",
},
{
.id = CmdLnOptionId_renderConfigFile,
.match = "render_config_parameters",
.matchShort = "render_config",
- .description = "Binaural renderer configuration parameters in file (only for binaural outputs)",
+ .description = "Binaural renderer configuration parameters in file\n(only for binaural outputs)",
},
{
.id = CmdLnOptionId_nonDiegeticPan,
.match = "non_diegetic_panning",
.matchShort = "non_diegetic_pan",
- .description = "Panning mono non diegetic sound to stereo -90<= pan <= 90\nleft or l or 90->left, right or r or -90->right, center or c or 0 ->middle\n",
+ .description = "Panning mono non diegetic sound to stereo -90<= pan <= 90\nleft or l or 90->left, right or r or -90->right,\ncenter or c or 0 ->middle",
},
{
.id = CmdLnOptionId_orientationTracking,
.match = "tracking_type",
.matchShort = "otr",
- .description = "Head orientation tracking type: 'none', 'ref', 'avg' or `ref_vec` or `ref_vec_lev` (only for binaural outputs)",
+ .description = "Head orientation tracking type: 'none', 'ref', 'avg' or `ref_vec`\nor `ref_vec_lev` (only for binaural outputs)",
},
{
.id = CmdlnOptionId_lfePosition,
.match = "lfe_position",
.matchShort = "lp",
- .description = "Output LFE position. Comma-delimited triplet of [gain, azimuth, elevation] where gain is linear (like --gain, -g) and azimuth, elevation are in degrees.\nIf specified, overrides the default behavior which attempts to map input to output LFE channel(s)",
+ .description = "Output LFE position. Comma-delimited triplet of [gain, azimuth,\nelevation] where gain is linear (like --gain, -g) and azimuth,\nelevation are in degrees. If specified, overrides the default\nbehavior which attempts to map input to output LFE channel(s)",
},
{
.id = CmdlnOptionId_lfeMatrix,
.match = "lfe_matrix",
.matchShort = "lm",
- .description = "LFE panning matrix. File (CSV table) containing a matrix of dimensions [ num_input_lfe x num_output_channels ] with elements specifying linear routing gain (like --gain, -g). \nIf specified, overrides the output LFE position option and the default behavior which attempts to map input to output LFE channel(s)",
+ .description = "LFE panning matrix. File (CSV table) containing a matrix of\ndimensions [ num_input_lfe x num_output_channels ] with elements\nspecifying linear routing gain (like --gain, -g). If specified,\noverrides the output LFE position option and the default\nbehavior which attempts to map input to output LFE channel(s)",
},
{
.id = CmdLnOptionId_noDelayCmp,
@@ -328,7 +330,7 @@ static const CmdLnParser_Option cliOptions[] = {
.id = CmdLnOptionId_complexityLevel,
.match = "complexity_level",
.matchShort = "level",
- .description = "Complexity level, level = (1, 2, 3), will be defined after characterisation.",
+ .description = "Complexity level, level = (1, 2, 3), will be defined after\ncharacterisation.",
},
{
.id = CmdLnOptionId_quietModeEnabled,
@@ -352,13 +354,13 @@ static const CmdLnParser_Option cliOptions[] = {
.id = CmdLnOptionId_referenceVectorFile,
.match = "reference_vector_file",
.matchShort = "rvf",
- .description = "Reference vector trajectory file for simulation of head tracking (only for binaural outputs)",
+ .description = "Reference vector trajectory file for simulation of head tracking\n(only for binaural outputs)",
},
{
.id = CmdLnOptionId_exteriorOrientationFile,
.match = "exterior_orientation_file",
.matchShort = "exof",
- .description = "External orientation trajectory file for simulation of external orientations",
+ .description = "External orientation trajectory file for simulation of external\norientations",
},
{
.id = CmdLnOptionId_framing,
@@ -370,19 +372,19 @@ static const CmdLnParser_Option cliOptions[] = {
.id = CmdLnOptionId_syncMdDelay,
.match = "sync_md_delay",
.matchShort = "smd",
- .description = "Metadata Synchronization Delay in ms, Default is 0. Quantized by 5ms subframes for TDRenderer (13ms -> 10ms -> 2subframes)",
+ .description = "Metadata Synchronization Delay in ms, Default is 0. Quantized by\n5ms subframes for TDRenderer (13ms -> 10ms -> 2subframes)",
},
{
.id = CmdLnOptionId_directivityPatternId,
.match = "ism_directivity_pattern_id",
.matchShort = "dpid",
- .description = "Directivity pattern ID(s) = [ID1, ID2, ID3, ID4]. Space-separated list of up to 4 numbers (unsigned integers) can be specified for BINAURAL and BINAURAL_ROOM_REVERB output configuration.\nID1, ID2, ID3, ID4 specify the directivity pattern IDs used for ISMs 1,2,3 and 4 respectively.\nThis options needs to be accompanied by a render_config file, otherwise a default directivity pattern is used.",
+ .description = "Directivity pattern ID(s) = [ID1, ID2, ID3, ID4]. Space-separated\nlist of up to 4 numbers (unsigned integers) can be specified for\nBINAURAL and BINAURAL_ROOM_REVERB output.\nID1, ID2, ID3, ID4 specify the directivity pattern IDs used for\nISMs 1,2,3 and 4 respectively. \nThis option needs to be accompanied by a render_config file,\notherwise a default directivity pattern is used.",
},
{
.id = CmdLnOptionId_acousticEnvironmentId,
.match = "acoustic_environment_id",
.matchShort = "aeid",
- .description = "Acoustic environment ID (number > 0) alternatively, it can be a text file where each line contains \"ID duration\" for BINAURAL_ROOM_REVERB output configuration.",
+ .description = "Acoustic environment ID (number > 0) alternatively, it can be\na text file where each line contains \"ID duration\" for\nBINAURAL_ROOM_REVERB output.",
},
};
@@ -562,12 +564,19 @@ static void setupWithSingleFormatInput(
positionProvider->numObjects = args.inConfig.numAudioObjects;
for ( int16_t i = 0; i < positionProvider->numObjects; ++i )
{
- /* It is allowed on CLI to have no metadata for an ISM input - skip opening if string is empty or contains "NULL" */
+ /* Check if path to metadata file was given */
+ if ( isEmptyString( args.inMetadataFilePaths[i] ) )
+ {
+ fprintf( stderr, "No metadata file was given for ISM input %d\n", i );
+ exit( -1 );
+ }
+
+ /* It is allowed on CLI to have no metadata for an ISM input - skip opening if string contains "NULL" */
char charBuf[FILENAME_MAX];
strncpy( charBuf, args.inMetadataFilePaths[i], min( FILENAME_MAX, RENDERER_MAX_CLI_ARG_LENGTH ) - 1 );
charBuf[min( FILENAME_MAX, RENDERER_MAX_CLI_ARG_LENGTH ) - 1] = '\0';
to_upper( charBuf );
- if ( isEmptyString( args.inMetadataFilePaths[i] ) || strncmp( charBuf, "NULL", 4 ) == 0 )
+ if ( strncmp( charBuf, "NULL", 4 ) == 0 )
{
continue;
}
@@ -659,12 +668,13 @@ int main(
int argc,
char **argv )
{
+ bool mainFailed = true; /* Assume main failed until cleanup is reached without errors */
IVAS_REND_HANDLE hIvasRend = NULL;
RotFileReader *headRotReader = NULL;
RotFileReader *externalOrientationFileReader = NULL;
RotFileReader *referenceRotReader = NULL;
- IVAS_CLDFB_FILTER_BANK_HANDLE cldfbAna[IVAS_MAX_INPUT_CHANNELS];
- IVAS_CLDFB_FILTER_BANK_HANDLE cldfbSyn[IVAS_MAX_INPUT_CHANNELS];
+ IVAS_CLDFB_FILTER_BANK_HANDLE cldfbAna[RENDERER_MAX_INPUT_CHANNELS];
+ IVAS_CLDFB_FILTER_BANK_HANDLE cldfbSyn[RENDERER_MAX_INPUT_CHANNELS];
int16_t cldfb_in_flag, CLDFBframeSize_smpls;
SplitRendBFIFileReader *splitRendBFIReader = NULL;
Vector3PairFileReader *referenceVectorReader = NULL;
@@ -697,6 +707,7 @@ int main(
SplitFileReadWrite *hSplitRendFileReadWrite;
int16_t delayNumSamples_temp;
int32_t delayTimeScale_temp;
+ bool flushRendererLastFrame = false;
int16_t numSamplesRead;
int16_t delayNumSamples = -1;
int16_t delayNumSamples_orig = 0;
@@ -741,8 +752,11 @@ int main(
CmdlnArgs args = parseCmdlnArgs( argc, argv );
- if ( args.nonDiegeticPan && !( ( args.inConfig.numAudioObjects == 0 && args.inConfig.multiChannelBuses[0].audioConfig == IVAS_AUDIO_CONFIG_MONO ) ||
- ( args.inConfig.numAudioObjects > 0 && args.inConfig.audioObjects[0].audioConfig == IVAS_AUDIO_CONFIG_OBA && args.inConfig.numAudioObjects == 1 ) ) )
+ if ( args.nonDiegeticPan &&
+ !( ( args.inConfig.numAudioObjects == 0 &&
+ args.inConfig.multiChannelBuses[0].audioConfig == IVAS_AUDIO_CONFIG_MONO ) ||
+ ( args.inConfig.numAudioObjects > 0 &&
+ args.inConfig.audioObjects[0].audioConfig == IVAS_AUDIO_CONFIG_OBA && args.inConfig.numAudioObjects == 1 ) ) )
{
fprintf( stderr, "\ninvalid configuration - non-diegetic panning requires mono or ISM1 input\n" );
goto cleanup;
@@ -1063,7 +1077,10 @@ int main(
{
/* sanity check */
- if ( ( args.outConfig.audioConfig != IVAS_AUDIO_CONFIG_BINAURAL ) && ( args.outConfig.audioConfig != IVAS_AUDIO_CONFIG_BINAURAL_ROOM_IR ) && ( args.outConfig.audioConfig != IVAS_AUDIO_CONFIG_BINAURAL_ROOM_REVERB ) && !is_split_pre_rend_mode( &args ) )
+ if ( ( args.outConfig.audioConfig != IVAS_AUDIO_CONFIG_BINAURAL ) &&
+ ( args.outConfig.audioConfig != IVAS_AUDIO_CONFIG_BINAURAL_ROOM_IR ) &&
+ ( args.outConfig.audioConfig != IVAS_AUDIO_CONFIG_BINAURAL_ROOM_REVERB ) &&
+ !is_split_pre_rend_mode( &args ) )
{
fprintf( stderr, "\nExternal Renderer Config is supported only when binaural output configurations is used as output OR when Split pre-rendering mode is enabled. Exiting. \n" );
goto cleanup;
@@ -1081,6 +1098,18 @@ int main(
goto cleanup;
}
+ if ( ( error = RenderConfigReader_getDirectivity( renderConfigReader, args.directivityPatternId, renderConfig.directivity ) ) != IVAS_ERR_OK )
+ {
+ fprintf( stderr, "Failed to get directivity patterns for one or more of IDs: %d %d %d %d\n\n", args.directivityPatternId[0], args.directivityPatternId[1], args.directivityPatternId[2], args.directivityPatternId[3] );
+ goto cleanup;
+ }
+
+ if ( ( error = RenderConfigReader_getDistanceAttenuation( renderConfigReader, renderConfig.distAtt ) ) != IVAS_ERR_OK )
+ {
+ fprintf( stderr, "Failed to get Distance Attenuation \n\n" );
+ goto cleanup;
+ }
+
if ( args.outConfig.audioConfig == IVAS_AUDIO_CONFIG_BINAURAL_ROOM_REVERB )
{
aeID = args.aeSequence.count > 0 ? args.aeSequence.pID[0] : 65535;
@@ -1140,20 +1169,30 @@ int main(
}
}
- /* Set the total number of objects */
if ( args.inConfig.numAudioObjects > 0 )
{
+ /* Set the total number of objects */
if ( ( error = IVAS_REND_SetTotalNumberOfObjects( hIvasRend, args.inConfig.numAudioObjects ) ) != IVAS_ERR_OK )
{
fprintf( stderr, "\nError in IVAS_REND_SetTotalNumberOfObjects(): %s\n", ivas_error_to_string( error ) );
goto cleanup;
}
+ /* Set the metadata delay for objects */
if ( ( error = IVAS_REND_SetIsmMetadataDelay( hIvasRend, args.syncMdDelay ) ) != IVAS_ERR_OK )
{
fprintf( stderr, "\nError in IVAS_REND_SetIsmMetadataDelay(): %s\n", ivas_error_to_string( error ) );
goto cleanup;
}
+
+ /* For OMASA input and BINAURAL output, apply a gain to objects to match the loudness with MASA part */
+ if ( args.inConfig.numMasaBuses > 0 && args.outConfig.audioConfig == IVAS_AUDIO_CONFIG_BINAURAL )
+ {
+ for ( i = 0; i < args.inConfig.numAudioObjects; ++i )
+ {
+ args.inConfig.audioObjects[i].gain_dB += OMASA_TDREND_MATCHING_GAIN_DB;
+ }
+ }
}
IVAS_REND_LfePanMtx lfePanMatrix;
@@ -1189,6 +1228,9 @@ int main(
{
masaIds[i] = 0u;
}
+#ifdef NONBE_1377_REND_DIRATT_CONF
+ IVAS_REND_SetObjectIDs( hIvasRend );
+#endif
for ( i = 0; i < args.inConfig.numMultiChannelBuses; ++i )
{
@@ -1338,7 +1380,7 @@ int main(
}
int16_t numOutChannels;
- if ( ( error = IVAS_REND_NumOutChannels( hIvasRend, &numOutChannels ) ) != IVAS_ERR_OK )
+ if ( ( error = IVAS_REND_GetNumOutChannels( hIvasRend, &numOutChannels ) ) != IVAS_ERR_OK )
{
fprintf( stderr, "\nError in IVAS_REND_NumOutChannels(): %s\n", ivas_error_to_string( error ) );
goto cleanup;
@@ -1353,8 +1395,16 @@ int main(
}
}
- if ( args.outConfig.audioConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_CODED )
+ if ( args.outConfig.audioConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_CODED || args.outConfig.audioConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM )
{
+ char *outFile = args.outMetadataFilePath;
+
+ if ( args.outConfig.audioConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_CODED )
+ {
+ outFile = args.outputFilePath;
+ audioWriter = NULL;
+ }
+
if ( ( error = IVAS_REND_GetSplitRendBitstreamHeader( hIvasRend, &bitsBuffer.config.codec, &bitsBuffer.config.poseCorrection, &bitsBuffer.config.codec_frame_size_ms, &bitsBuffer.config.isar_frame_size_ms ) ) != IVAS_ERR_OK )
{
fprintf( stderr, "\nError in IVAS_REND_GetSplitRendBitstreamHeader()!\n" );
@@ -1367,36 +1417,15 @@ int main(
goto cleanup;
}
- if ( ( error = split_rend_writer_open( &hSplitRendFileReadWrite, args.outputFilePath, delayNumSamples_temp, delayTimeScale_temp, bitsBuffer.config.codec, bitsBuffer.config.poseCorrection, bitsBuffer.config.codec_frame_size_ms, bitsBuffer.config.isar_frame_size_ms, args.sampleRate, bitsBuffer.config.lc3plus_highres ) ) != IVAS_ERR_OK )
+ if ( ( error = split_rend_writer_open( &hSplitRendFileReadWrite, outFile, delayNumSamples_temp, delayTimeScale_temp, bitsBuffer.config.codec, bitsBuffer.config.poseCorrection, bitsBuffer.config.codec_frame_size_ms, bitsBuffer.config.isar_frame_size_ms, args.sampleRate, bitsBuffer.config.lc3plus_highres ) ) != IVAS_ERR_OK )
{
- fprintf( stderr, "\nCould not open split rend metadata file %s\n", args.outputFilePath );
+ fprintf( stderr, "\nCould not open split rend metadata file %s\n", outFile );
goto cleanup;
}
- audioWriter = NULL;
}
- else
- {
- if ( args.outConfig.audioConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM )
- {
- if ( ( error = IVAS_REND_GetSplitRendBitstreamHeader( hIvasRend, &bitsBuffer.config.codec, &bitsBuffer.config.poseCorrection, &bitsBuffer.config.codec_frame_size_ms, &bitsBuffer.config.isar_frame_size_ms ) ) != IVAS_ERR_OK )
- {
- fprintf( stderr, "\nError in IVAS_REND_GetSplitRendBitstreamHeader()!\n" );
- goto cleanup;
- }
-
- if ( IVAS_REND_GetDelay( hIvasRend, &delayNumSamples_temp, &delayTimeScale_temp ) != IVAS_ERR_OK )
- {
- fprintf( stderr, "\nUnable to get delay of renderer!\n" );
- goto cleanup;
- }
-
- if ( ( error = split_rend_writer_open( &hSplitRendFileReadWrite, args.outMetadataFilePath, delayNumSamples_temp, delayTimeScale_temp, bitsBuffer.config.codec, bitsBuffer.config.poseCorrection, bitsBuffer.config.codec_frame_size_ms, bitsBuffer.config.isar_frame_size_ms, args.sampleRate, bitsBuffer.config.lc3plus_highres ) ) != IVAS_ERR_OK )
- {
- fprintf( stderr, "\nCould not open split rend metadata file %s\n", args.outMetadataFilePath );
- goto cleanup;
- }
- }
+ if ( args.outConfig.audioConfig != IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_CODED )
+ {
if ( AudioFileWriter_open( &audioWriter, args.outputFilePath, args.sampleRate, numOutChannels ) != IVAS_ERR_OK )
{
fprintf( stderr, "\nFailed to open file: %s\n", args.outputFilePath );
@@ -1522,16 +1551,23 @@ int main(
if ( numSamplesRead == 0 )
{
/* end of input data */
- break;
+ flushRendererLastFrame = true;
}
/* Convert from int to float and from interleaved to packed */
- convertInputBuffer( inpInt16Buffer, numSamplesRead, inBuffer.config.numSamplesPerChannel, num_in_channels, inFloatBuffer, inBuffer.config.is_cldfb, cldfbAna );
+ if ( !flushRendererLastFrame )
+ {
+ convertInputBuffer( inpInt16Buffer, numSamplesRead, inBuffer.config.numSamplesPerChannel, num_in_channels, inFloatBuffer, inBuffer.config.is_cldfb, cldfbAna );
+ }
+ else
+ {
+ memset( inBuffer.data, 0, inBuffer.config.numChannels * inBuffer.config.numSamplesPerChannel * sizeof( float ) );
+ }
int16_t num_subframes, sf_idx;
num_subframes = (int16_t) args.render_framesize;
- if ( isCurrentFrameMultipleOf20ms )
+ if ( isCurrentFrameMultipleOf20ms && !flushRendererLastFrame )
{
IsmPositionProvider_getNextFrame( positionProvider, &mtdBuffer );
@@ -1643,7 +1679,7 @@ int main(
}
IVAS_REND_ReadOnlyAudioBuffer tmpBuffer = getReadOnlySubBuffer( inBuffer, (int16_t) args.inConfig.multiChannelBuses[i].inputChannelIndex, numChannels );
- if ( ( error = IVAS_REND_FeedInputAudio( hIvasRend, mcIds[i], tmpBuffer ) ) != IVAS_ERR_OK )
+ if ( ( error = IVAS_REND_FeedInputAudio( hIvasRend, mcIds[i], tmpBuffer, flushRendererLastFrame ) ) != IVAS_ERR_OK )
{
fprintf( stderr, "\nIVAS_REND_FeedInputAudio failed: %s\n", ivas_error_to_string( error ) );
goto cleanup;
@@ -1658,7 +1694,7 @@ int main(
{
IVAS_REND_ReadOnlyAudioBuffer tmpBuffer = getReadOnlySubBuffer( inBuffer, (int16_t) args.inConfig.audioObjects[i].inputChannelIndex, args.inConfig.numAudioObjects );
- if ( ( error = IVAS_REND_FeedInputAudio( hIvasRend, ismIds[i], tmpBuffer ) ) != IVAS_ERR_OK )
+ if ( ( error = IVAS_REND_FeedInputAudio( hIvasRend, ismIds[i], tmpBuffer, flushRendererLastFrame ) ) != IVAS_ERR_OK )
{
fprintf( stderr, "\nIVAS_REND_FeedInputAudio failed: %s\n", ivas_error_to_string( error ) );
goto cleanup;
@@ -1675,7 +1711,7 @@ int main(
{
IVAS_REND_ReadOnlyAudioBuffer tmpBuffer = getReadOnlySubBuffer( inBuffer, (int16_t) args.inConfig.audioObjects[i].inputChannelIndex, 1 );
- if ( ( error = IVAS_REND_FeedInputAudio( hIvasRend, ismIds[i], tmpBuffer ) ) != IVAS_ERR_OK )
+ if ( ( error = IVAS_REND_FeedInputAudio( hIvasRend, ismIds[i], tmpBuffer, flushRendererLastFrame ) ) != IVAS_ERR_OK )
{
fprintf( stderr, "\nIVAS_REND_FeedInputAudio failed: %s\n", ivas_error_to_string( error ) );
goto cleanup;
@@ -1698,7 +1734,7 @@ int main(
}
IVAS_REND_ReadOnlyAudioBuffer tmpBuffer = getReadOnlySubBuffer( inBuffer, (int16_t) args.inConfig.ambisonicsBuses[i].inputChannelIndex, numChannels );
- if ( ( error = IVAS_REND_FeedInputAudio( hIvasRend, sbaIds[i], tmpBuffer ) ) != IVAS_ERR_OK )
+ if ( ( error = IVAS_REND_FeedInputAudio( hIvasRend, sbaIds[i], tmpBuffer, flushRendererLastFrame ) ) != IVAS_ERR_OK )
{
fprintf( stderr, "\nIVAS_REND_FeedInputAudio failed: %s\n", ivas_error_to_string( error ) );
goto cleanup;
@@ -1714,13 +1750,13 @@ int main(
}
IVAS_REND_ReadOnlyAudioBuffer tmpBuffer = getReadOnlySubBuffer( inBuffer, (int16_t) args.inConfig.masaBuses[i].inputChannelIndex, numChannels );
- if ( ( error = IVAS_REND_FeedInputAudio( hIvasRend, masaIds[i], tmpBuffer ) ) != IVAS_ERR_OK )
+ if ( ( error = IVAS_REND_FeedInputAudio( hIvasRend, masaIds[i], tmpBuffer, flushRendererLastFrame ) ) != IVAS_ERR_OK )
{
fprintf( stderr, "IVAS_REND_FeedInputAudio failed: %s\n", ivas_error_to_string( error ) );
goto cleanup;
}
- if ( isCurrentFrameMultipleOf20ms )
+ if ( isCurrentFrameMultipleOf20ms && !flushRendererLastFrame )
{
if ( masaReaders[i] != NULL )
{
@@ -1783,7 +1819,7 @@ int main(
zeroPad = delayNumSamples;
}
- if ( is_split_pre_rend_mode( &args ) )
+ if ( is_split_pre_rend_mode( &args ) && !flushRendererLastFrame )
{
if ( split_rend_write_bitstream_to_file( hSplitRendFileReadWrite, bitsBuffer.bits, &bitsBuffer.config.bitsRead,
&bitsBuffer.config.bitsWritten ) != IVAS_ERR_OK )
@@ -1793,7 +1829,7 @@ int main(
}
}
- if ( audioWriter != NULL )
+ if ( audioWriter != NULL && !flushRendererLastFrame )
{
if ( delayNumSamples * num_out_channels < outBufferSize )
{
@@ -1814,7 +1850,7 @@ int main(
bitsBuffer.config.bitsWritten = 0;
/* Write MASA metadata for MASA outputs */
- if ( args.outConfig.audioConfig == IVAS_AUDIO_CONFIG_MASA1 || args.outConfig.audioConfig == IVAS_AUDIO_CONFIG_MASA2 )
+ if ( !flushRendererLastFrame && ( args.outConfig.audioConfig == IVAS_AUDIO_CONFIG_MASA1 || args.outConfig.audioConfig == IVAS_AUDIO_CONFIG_MASA2 ) )
{
IVAS_REND_AudioConfigType inputType1;
IVAS_REND_AudioConfigType inputType2;
@@ -1886,7 +1922,8 @@ int main(
}
}
- if ( ( args.inConfig.numAmbisonicsBuses > 0 || args.inConfig.numMultiChannelBuses > 0 || args.inConfig.numMasaBuses > 0 ) && args.inConfig.numAudioObjects > 0 )
+ if ( ( args.inConfig.numAmbisonicsBuses > 0 || args.inConfig.numMultiChannelBuses > 0 || args.inConfig.numMasaBuses > 0 ) &&
+ args.inConfig.numAudioObjects > 0 )
{
inputType2 = IVAS_REND_AUDIO_CONFIG_TYPE_OBJECT_BASED;
if ( ( error = IVAS_REND_MergeMasaMetadata( hIvasRend, &hMetaOutput, inputType1, inputType2 ) ) != IVAS_ERR_OK )
@@ -1903,6 +1940,13 @@ int main(
}
}
+ /* no new input was actually read, only delay buffers were flushed
+ * therefore this is not a real frame */
+ if ( flushRendererLastFrame )
+ {
+ break;
+ }
+
frame++;
if ( !args.quietModeEnabled )
{
@@ -1915,12 +1959,13 @@ int main(
#endif
}
- /* add zeros at the end to have equal length of synthesized signals */
+ /* add zeros at the end to have equal length of synthesized signals
+ * the output buffer will contain either leftover input samples from delay aligned inputs
+ * or zeros for padding */
if ( audioWriter != NULL )
{
for ( zeroPadToWrite = zeroPad; zeroPadToWrite > frameSize_smpls; zeroPadToWrite -= frameSize_smpls )
{
- memset( outInt16Buffer, 0, outBufferSize * sizeof( int16_t ) );
if ( ( error = AudioFileWriter_write( audioWriter, outInt16Buffer, outBufferSize ) ) != IVAS_ERR_OK )
{
fprintf( stderr, "\nOutput audio file writer error\n" );
@@ -1928,7 +1973,6 @@ int main(
}
}
- memset( outInt16Buffer, 0, zeroPadToWrite * outBuffer.config.numChannels * sizeof( int16_t ) );
if ( ( error = AudioFileWriter_write( audioWriter, outInt16Buffer, zeroPadToWrite * outBuffer.config.numChannels ) ) != IVAS_ERR_OK )
{
fprintf( stderr, "\nOutput audio file writer error\n" );
@@ -1937,9 +1981,10 @@ int main(
zeroPadToWrite = 0;
}
- if ( args.inConfig.numAudioObjects != 0 && ( args.outConfig.audioConfig == IVAS_AUDIO_CONFIG_BINAURAL || args.outConfig.audioConfig == IVAS_AUDIO_CONFIG_BINAURAL_ROOM_REVERB ) )
+ if ( args.inConfig.numAudioObjects != 0 &&
+ ( args.outConfig.audioConfig == IVAS_AUDIO_CONFIG_BINAURAL || args.outConfig.audioConfig == IVAS_AUDIO_CONFIG_BINAURAL_ROOM_REVERB ) )
{
- fprintf( stdout, "\n\nMetadata delayed %d subframes\n\n", (int16_t) round( args.syncMdDelay / ( 1000 / IVAS_NUM_FRAMES_PER_SEC / IVAS_MAX_PARAM_SPATIAL_SUBFRAMES ) ) );
+ fprintf( stdout, "\n\nMetadata delayed %d subframes\n\n", (int16_t) round( args.syncMdDelay / ( 1000.f / IVAS_NUM_FRAMES_PER_SEC / IVAS_MAX_PARAM_SPATIAL_SUBFRAMES ) ) );
}
if ( !args.quietModeEnabled && args.delayCompensationEnabled )
@@ -1965,6 +2010,8 @@ int main(
* Close files and deallocate resources
*------------------------------------------------------------------------------------------*/
+ mainFailed = false; /* This will stay set to true if cleanup is reached via a goto due to an error */
+
cleanup:
free( inpInt16Buffer );
@@ -2021,7 +2068,7 @@ cleanup:
print_mem( NULL );
#endif
- return 0;
+ return mainFailed ? -1 : 0;
}
@@ -2540,6 +2587,7 @@ static CmdlnArgs defaultArgs(
const char *executableName )
{
CmdlnArgs args;
+ int16_t i;
strncpy( args.executableName, executableName, RENDERER_MAX_CLI_ARG_LENGTH );
clearString( args.inputFilePath );
@@ -2558,7 +2606,7 @@ static CmdlnArgs defaultArgs(
args.outConfig.outSetupCustom.num_lfe = 0;
args.inConfig.ambisonicsBuses->audioConfig = IVAS_AUDIO_CONFIG_INVALID;
- for ( int32_t i = 0; i < RENDERER_MAX_ISM_INPUTS; ++i )
+ for ( i = 0; i < RENDERER_MAX_ISM_INPUTS + RENDERER_MAX_MASA_INPUTS; ++i )
{
clearString( args.inMetadataFilePaths[i] );
}
@@ -2595,7 +2643,7 @@ static CmdlnArgs defaultArgs(
args.render_framesize = IVAS_RENDER_FRAMESIZE_20MS;
args.syncMdDelay = 0;
- for ( int32_t i = 0; i < RENDERER_MAX_ISM_INPUTS; ++i )
+ for ( i = 0; i < RENDERER_MAX_ISM_INPUTS; ++i )
{
args.directivityPatternId[i] = 65535;
}
@@ -3267,7 +3315,8 @@ static void parseObjectPosition(
*positionDuration = (uint16_t) strtol( line, &endptr, 10 );
readNextMetadataChunk( line, "\n" );
- read_values = (int16_t) sscanf( line, "%f,%f,%f,%f,%f,%f,%f,%f", &meta_prm[0], &meta_prm[1], &meta_prm[2], &meta_prm[3], &meta_prm[4], &meta_prm[5], &meta_prm[6], &meta_prm[7] );
+ read_values = (int16_t) sscanf( line, "%f,%f,%f,%f,%f,%f,%f,%f",
+ &meta_prm[0], &meta_prm[1], &meta_prm[2], &meta_prm[3], &meta_prm[4], &meta_prm[5], &meta_prm[6], &meta_prm[7] );
if ( read_values < 2 )
{
@@ -3476,14 +3525,8 @@ static void parseCombinedFormatInput(
inConfig->numAmbisonicsBuses = 1;
inConfig->ambisonicsBuses[0].audioConfig = audioConfig;
inConfig->ambisonicsBuses[0].inputChannelIndex = inConfig->numAudioObjects;
- inConfig->ambisonicsBuses[0].gain_dB = -6.f;
+ inConfig->ambisonicsBuses[0].gain_dB = 0.f;
*configString += 4;
-
- /* Modify input gain for objects too */
- for ( int16_t i = 0; i < inConfig->numAudioObjects; ++i )
- {
- inConfig->audioObjects[i].gain_dB = -6.f;
- }
}
else if ( audioConfig == IVAS_AUDIO_CONFIG_MASA1 || audioConfig == IVAS_AUDIO_CONFIG_MASA2 )
{
@@ -3722,6 +3765,7 @@ static void printSupportedAudioConfigs( void )
"BINAURAL_SPLIT_CODED",
"BINAURAL_ROOM_IR (output only)",
"BINAURAL_ROOM_REVERB (output only)",
+ "META (Scene description, input only)",
};
fprintf( stdout, "Supported audio formats:\n" );
@@ -3729,6 +3773,7 @@ static void printSupportedAudioConfigs( void )
{
fprintf( stdout, "%s\n", supportedFormats[i] );
}
+ fprintf( stdout, "\n" );
return;
}
@@ -3739,7 +3784,7 @@ static ivas_error parseLfePanMtxFile(
{
int16_t i, lfe_in, ch_out;
const char *tok;
- char line[200]; /* > (10 chars * IVAS_MAX_OUTPUT_CHANNELS) i.e. "-999, " */
+ char line[200]; /* > (10 chars * RENDERER_MAX_OUTPUT_CHANNELS) i.e. "-999, " */
FILE *mtxFile;
if ( strlen( lfeRoutingMatrixFilePath ) < 1 )
@@ -3758,7 +3803,7 @@ static ivas_error parseLfePanMtxFile(
any subsequent issue in file reading will gracefully exit the function */
for ( lfe_in = 0; lfe_in < RENDERER_MAX_INPUT_LFE_CHANNELS; lfe_in++ )
{
- for ( i = 0; i < IVAS_MAX_OUTPUT_CHANNELS; i++ )
+ for ( i = 0; i < RENDERER_MAX_OUTPUT_CHANNELS; i++ )
{
( *lfePanMtx )[lfe_in][i] = 0.0f;
}
@@ -3786,7 +3831,7 @@ static ivas_error parseLfePanMtxFile(
{
continue;
}
- if ( ch_out > IVAS_MAX_OUTPUT_CHANNELS )
+ if ( ch_out > RENDERER_MAX_OUTPUT_CHANNELS )
{
break;
}
@@ -3827,13 +3872,13 @@ static void convertInputBuffer(
if ( cldfb_in_flag )
{
int16_t slotIdx, numCldfbBands, numFloatPcmSamples;
- float fIn[IVAS_MAX_OUTPUT_CHANNELS][IVAS_MAX_FRAME_SIZE];
+ float fIn[RENDERER_MAX_OUTPUT_CHANNELS][IVAS_MAX_FRAME_SIZE];
numFloatPcmSamples = numFloatSamplesPerChannel >> 1;
numCldfbBands = numFloatPcmSamples / IVAS_CLDFB_NO_COL_MAX;
/* CLDFB Analysis*/
- assert( numIntSamplesPerChannel <= IVAS_MAX_OUTPUT_CHANNELS * IVAS_MAX_FRAME_SIZE );
+ assert( numIntSamplesPerChannel <= RENDERER_MAX_OUTPUT_CHANNELS * IVAS_MAX_FRAME_SIZE );
for ( smpl = 0; smpl < numFloatPcmSamples; ++smpl )
{
for ( chnl = 0; chnl < numChannels; ++chnl )
@@ -3908,9 +3953,9 @@ static void convertOutputBuffer(
if ( cldfb_in_flag )
{
int16_t slotIdx, numCldfbBands, numPcmSamples, b;
- float fIn[IVAS_MAX_OUTPUT_CHANNELS][IVAS_MAX_FRAME_SIZE];
- float re[IVAS_MAX_OUTPUT_CHANNELS][IVAS_CLDFB_NO_COL_MAX][IVAS_CLDFB_NO_CHANNELS_MAX];
- float im[IVAS_MAX_OUTPUT_CHANNELS][IVAS_CLDFB_NO_COL_MAX][IVAS_CLDFB_NO_CHANNELS_MAX];
+ float fIn[RENDERER_MAX_OUTPUT_CHANNELS][IVAS_MAX_FRAME_SIZE];
+ float re[RENDERER_MAX_OUTPUT_CHANNELS][IVAS_CLDFB_NO_COL_MAX][IVAS_CLDFB_NO_CHANNELS_MAX];
+ float im[RENDERER_MAX_OUTPUT_CHANNELS][IVAS_CLDFB_NO_COL_MAX][IVAS_CLDFB_NO_CHANNELS_MAX];
numPcmSamples = numSamplesPerChannel >> 1;
numCldfbBands = numPcmSamples / IVAS_CLDFB_NO_COL_MAX;
diff --git a/ci/basop-pages/basop_index.html b/ci/basop-pages/basop_index.html
index a31f3673a531c53d97092d177d00d24c0ebdf922..4368a15ff23b386fb7d96788849f3efe9a6677d6 100644
--- a/ci/basop-pages/basop_index.html
+++ b/ci/basop-pages/basop_index.html
@@ -5,6 +5,10 @@
Ivas BASOP code Development
+ Regression tracking
+
+ Long term regression
+
Daily long testvector tests
@@ -23,8 +27,7 @@
Test Coverage
diff --git a/ci/process_long_term_logs.py b/ci/process_long_term_logs.py
new file mode 100644
index 0000000000000000000000000000000000000000..baabc7d93a1c28bf0804b9a939a6968810675fb7
--- /dev/null
+++ b/ci/process_long_term_logs.py
@@ -0,0 +1,180 @@
+import os
+import pandas as pd
+import argparse
+import plotly.express as px
+import plotly.graph_objects as go
+from plotly.subplots import make_subplots
+
+
+def read_csv_files(root_dir):
+ """Read csv files as dictionary of panda dataframes."""
+ csv_data = {}
+ for subdir, dirs, files in os.walk(root_dir):
+ for file in files:
+ if file.endswith(".csv"):
+ file_path = os.path.join(subdir, file)
+ try:
+ df = pd.read_csv(file_path)
+ csv_data[file_path] = df
+ except Exception as e:
+ print(f"Failed to read {file_path}: {e}")
+ exit(-1)
+ return csv_data
+
+
+def parse_csv_data(csv_data):
+ """keep 'testcase', 'format', 'MLD', 'MAX_ABS_DIFF' and add
+ 'date' column."""
+ cols_to_keep = ["testcase", "format", "MLD", "MAX_ABS_DIFF"]
+ parsed_data = {}
+ for key, df in csv_data.items():
+ cols = [col for col in cols_to_keep if col in df.columns]
+ date = os.path.basename(os.path.dirname(key))
+ new_df = df[cols].copy()
+ new_df["date"] = date
+ parsed_data[key] = new_df
+
+ # concatenate all dataframe in the dictionary
+ concat_df = pd.concat(parsed_data.values(), ignore_index=True)
+ return concat_df
+
+
+def plot_data(df, output_filename):
+ """plot max values for 'MLD' and 'MAX_ABS_DIFF' data and save
+ to html file."""
+ # Convert 'date' to datetime
+ df["date"] = pd.to_datetime(df["date"], errors="coerce")
+ df["MLD"] = pd.to_numeric(df["MLD"], errors="coerce")
+ df["MAX_ABS_DIFF"] = pd.to_numeric(df["MAX_ABS_DIFF"], errors="coerce")
+
+ # Drop rows with NaT and NaN
+ clean_df = df.dropna(subset=["date", "MLD", "MAX_ABS_DIFF"])
+
+ # Group by 'format' and 'date' to get rows with max 'MLD' per group
+ max_mld = (
+ clean_df.groupby(["format", "date"])
+ .apply(lambda x: x.loc[x["MLD"].idxmax()])
+ .reset_index(drop=True)
+ )
+
+ # Group by 'format' and 'date' to get rows with max 'MAX_ABS_DIFF' per
+ # group
+ max_abs_diff = (
+ clean_df.groupby(["format", "date"])
+ .apply(lambda x: x.loc[x["MAX_ABS_DIFF"].idxmax()])
+ .reset_index(drop=True)
+ )
+
+ formats = sorted(clean_df["format"].unique())
+
+ fig = make_subplots(
+ rows=5,
+ cols=2,
+ specs=[[{"secondary_y": True}] * 2] * 5,
+ subplot_titles=[f"{i}" for i in formats],
+ shared_xaxes="columns",
+ )
+
+ for i, fmt in enumerate(formats):
+ row = i // 2 + 1
+ col = i % 2 + 1
+
+ data_mld = max_mld[max_mld["format"] == fmt].sort_values("date")
+ data_diff = max_abs_diff[max_abs_diff["format"]
+ == fmt].sort_values("date")
+
+ # Add max 'MLD' to primary y-axis
+ fig.add_trace(
+ go.Scatter(
+ x=data_mld["date"],
+ y=data_mld["MLD"],
+ mode="lines+markers",
+ name=f" {fmt} - Max MLD",
+ hovertext=[
+ f"Testcase: {tc}
MLD: {mld:.4f}
MAX_ABS_DIFF:"
+ f"{abs_diff}
Format:"
+ f" {format}
Date: {date.date()}"
+ for tc, mld, abs_diff, format, date in zip(
+ data_mld["testcase"],
+ data_mld["MLD"],
+ data_mld["MAX_ABS_DIFF"],
+ data_mld["format"],
+ data_mld["date"],
+ )
+ ],
+ hoverinfo="text",
+ ),
+ row=row,
+ col=col,
+ secondary_y=False,
+ )
+
+ # Add max 'MAX_ABS_DIFF' to secondary y-axis
+ fig.add_trace(
+ go.Scatter(
+ x=data_diff["date"],
+ y=data_diff["MAX_ABS_DIFF"],
+ mode="lines+markers",
+ name=f"{fmt} - Max MAX_ABS_DIFF",
+ hovertext=[
+ f"Testcase: {tc}
MLD: {mld:.4f}
MAX_ABS_DIFF:"
+ f" {abs_diff:.4f}
Format:"
+ f" {format}
Date: {date.date()}"
+ for tc, mld, abs_diff, format, date in zip(
+ data_diff["testcase"],
+ data_diff["MLD"],
+ data_diff["MAX_ABS_DIFF"],
+ data_diff["format"],
+ data_diff["date"],
+ )
+ ],
+ hoverinfo="text",
+ ),
+ row=row,
+ col=col,
+ secondary_y=True,
+ )
+
+ fig.update_layout(
+ title_text="Long-term regression: max MLD and max MAX_ABS_DIFF",
+ legend=dict(x=1, y=1, orientation="v"),
+ hovermode="x unified",
+ )
+
+ fig.update_xaxes(automargin=True)
+ fig.update_yaxes(automargin=True)
+
+ # Update y-axes titles per subplot
+ for i in range(10):
+ yaxis_num = i * 2 + 1
+ yaxis2_num = yaxis_num + 1
+ fig["layout"][f"yaxis{yaxis_num}"].update(
+ title="Max MLD", titlefont=dict(color="blue"), tickfont=dict(color="blue")
+ )
+ fig["layout"][f"yaxis{yaxis2_num}"].update(
+ title="Max MAX_ABS_DIFF",
+ titlefont=dict(color="green"),
+ tickfont=dict(color="green"),
+ )
+
+ # Save to html
+ fig.write_html(output_filename)
+
+
+if __name__ == "__main__":
+ parser = argparse.ArgumentParser(description="Plot long term logs")
+ parser.add_argument(
+ "root_dir",
+ type=str,
+ help="Root directory containing subdirectories" " with CSV log files",
+ )
+ parser.add_argument(
+ "output_filename",
+ type=str,
+ help="Filename of the generated plot. e.g" ". long_term_regression.html",
+ )
+ args = parser.parse_args()
+
+ csv_data = read_csv_files(args.root_dir)
+ data = parse_csv_data(csv_data)
+ plot_data(data, args.output_filename)
diff --git a/ci/setup_pages.py b/ci/setup_pages.py
index b9d0b8da8871c2065cb45655ce65244c8bbe7f6a..df350d856890d0a1e0b2f4ff69f676e2b7bea442 100755
--- a/ci/setup_pages.py
+++ b/ci/setup_pages.py
@@ -69,6 +69,7 @@ JOBS_BASOP_REPO = {
"complexity-stereo-in-stereo-out": "Stereo in, Stereo out",
# "timeless" jobs (not complexity)
"coverage-test-on-main-scheduled": "Coverage",
+ "ivas-long-term-job-logs-overview": "Long term logs",
}
JOBS_FOR_PROJECT_ID = {
diff --git a/ci/smoke_test.sh b/ci/smoke_test.sh
index 9405197786c9abc8b039944176f31dde0a27eddd..ee14613c152284dd9512bc38852cac7c097fd3c7 100755
--- a/ci/smoke_test.sh
+++ b/ci/smoke_test.sh
@@ -31,28 +31,27 @@
set -euxo pipefail
function usage {
- echo
- echo "Usage:"
- echo " smoke_test.sh [MODE]"
- echo
- echo " MODE - test (default) or coverage"
- exit
+ echo
+ echo "Usage:"
+ echo " smoke_test.sh [MODE]"
+ echo
+ echo " MODE - test (default) or coverage"
+ exit
}
if [ ! -d "lib_com" ]; then
- echo "not in root directory! - please run in IVAS root"
- exit 1
+ echo "not in root directory! - please run in IVAS root"
+ exit 1
fi
if [ -z "${1:-}" ] || [ "${1:-}" == "test" ]; then
- BUILD=1
+ BUILD=1
elif [ "${1:-}" == "coverage" ]; then
- BUILD=0
+ BUILD=0
else
- usage
+ usage
fi
-
cfg=./scripts/config/ci_linux.json
dly_profile=./scripts/dly_error_profiles/dly_error_profile_10_smoke_test.dat
ism_md_cmd="--ism_metadata_files /usr/local/ltv/ltvISM1.csv /usr/local/ltv/ltvISM2.csv /usr/local/ltv/ltvISM3.csv /usr/local/ltv/ltvISM4.csv"
@@ -60,26 +59,22 @@ duration_arg="-U 1:2"
verbosity_cmd="-z console"
timeout_cmd="--timeout 20"
-if [ $BUILD -eq 1 ];then
- # Enable memory macros to find unbalanced memory allocations/deallocations
- # Does not implement full memory analysis
- make clean
-
- # Replace free -> free_, malloc -> malloc_, calloc -> calloc_
- python3 ./scripts/prepare_mem_dryrun.py
+if [ $BUILD -eq 1 ]; then
+ # Enable memory macros to find unbalanced memory allocations/deallocations
+ # Does not implement full memory analysis
+ make clean
- # Enable WMOPS and disable DEBUGGING
- sed -i.bak -e "s/\/\*\s*\(#define\s*WMOPS\)\s*\*\//\1/g" lib_com/options.h
- sed -i.bak -e "s/\/\/\s*\(#define\s*WMOPS\)/\1/g" lib_com/options.h
-# sed -i.bak -e "s/\s*\(#define\s*DEBUGGING\)/\/\*\1*\//g" lib_com/options.h
+ # Replace free -> free_, malloc -> malloc_, calloc -> calloc_
+ python3 ./scripts/prepare_mem_dryrun.py
- make all -j
+ # Enable WMOPS and disable DEBUGGING
+ sed -i.bak -e "s/\/\*\s*\(#define\s*WMOPS\)\s*\*\//\1/g" lib_com/options.h
+ sed -i.bak -e "s/\/\/\s*\(#define\s*WMOPS\)/\1/g" lib_com/options.h
+ # sed -i.bak -e "s/\s*\(#define\s*DEBUGGING\)/\/\*\1*\//g" lib_com/options.h
-fi
+ make all -j
-# prepare combined format test signals
-echo -e "\n======================= 0. preparing combined format test inputs =======================\n\n"
-./scripts/prepare_combined_format_inputs.py
+fi
# run all modes vanilla-fashion
# treat ISM modes separately because passing the metadata files to MASA modes causes crashes
diff --git a/ci/smoke_test_complexity.sh b/ci/smoke_test_complexity.sh
index 54f0f74ad45a92fc85eb90c621c5c7ab445ea55e..119281b70ced10e4371cacc8069f85bee7f01ee6 100755
--- a/ci/smoke_test_complexity.sh
+++ b/ci/smoke_test_complexity.sh
@@ -29,30 +29,30 @@
# the United Nations Convention on Contracts on the International Sales of Goods.
function usage {
- echo
- echo "Usage:"
- echo " smoke_test_complexity.sh [--max_cores nMaxCores]"
- echo
- echo " nMaxCores - the number of CPUs to use (default 42)"
- exit
+ echo
+ echo "Usage:"
+ echo " smoke_test_complexity.sh [--max_cores nMaxCores]"
+ echo
+ echo " nMaxCores - the number of CPUs to use (default 42)"
+ exit
}
if [ ! -d "lib_com" ]; then
- echo "not in root directory! - please run in IVAS root"
- exit 1
+ echo "not in root directory! - please run in IVAS root"
+ exit 1
fi
if [[ -z "$1" ]]; then
- MAX_CORES=42
+ MAX_CORES=42
elif [[ "$1" == "--max_cores" ]]; then
- if [[ -z "$2" ]]; then
- echo "Need maximum number of cores"
- exit 1
- else
- MAX_CORES=$2
- fi
+ if [[ -z "$2" ]]; then
+ echo "Need maximum number of cores"
+ exit 1
+ else
+ MAX_CORES=$2
+ fi
else
- usage
+ usage
fi
cfg=./scripts/config/ci_linux_ltv.json
@@ -61,27 +61,23 @@ duration_arg=""
complexity_cmd="--checks COMPLEXITY --create_complexity_tables"
max_num_workers="--max_workers $MAX_CORES"
-# prepare combined format test signals
-echo "\n======================= 0. preparing combined format test inputs =======================\n\n"
-./scripts/prepare_combined_format_inputs.py
-
# Modes
-mono_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^mono)
-FOA_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^FOA)
-HOA2_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^HOA2)
-HOA3_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^HOA3)
-PlanarFOA_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^PlanarFOA)
-PlanarHOA2_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^PlanarHOA2)
-PlanarHOA3_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^PlanarHOA3)
-MASA_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^MASA)
-MC_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^MC)
-stereo_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^stereo)
-stereoDmx_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^StereoDmx)
-OMASA_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^OMASA)
-OSBA_ISM1_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^OSBA_ISM1)
-OSBA_ISM2_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^OSBA_ISM2)
-OSBA_ISM3_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^OSBA_ISM3)
-OSBA_ISM4_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^OSBA_ISM4)
+mono_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^mono)
+FOA_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^FOA)
+HOA2_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^HOA2)
+HOA3_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^HOA3)
+PlanarFOA_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^PlanarFOA)
+PlanarHOA2_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^PlanarHOA2)
+PlanarHOA3_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^PlanarHOA3)
+MASA_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^MASA)
+MC_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^MC)
+stereo_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^stereo)
+stereoDmx_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^StereoDmx)
+OMASA_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^OMASA)
+OSBA_ISM1_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^OSBA_ISM1)
+OSBA_ISM2_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^OSBA_ISM2)
+OSBA_ISM3_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^OSBA_ISM3)
+OSBA_ISM4_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^OSBA_ISM4)
ISM1_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^ISM1)
ISM2_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^ISM2)
ISM3_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^ISM3)
@@ -91,7 +87,6 @@ ISM_plus2_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^ISM+2)
ISM_plus3_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^ISM+3)
ISM_plus4_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^ISM+4)
-
echo "\n======================= 1. Mono =======================\n\n"
./scripts/IvasBuildAndRunChecks.py $complexity_cmd ltv_complexity_mono_no_fec -m $mono_modes -p $cfg $duration_arg $max_num_workers | tee smoke_test_output_mono.txt
rm -r ./COMPLEXITY/dec/
diff --git a/lib_com/bitstream.c b/lib_com/bitstream.c
index 18bfba0d1840ca366f0864cab41bfc524d0908f1..5309e6735d19f30a7871025d798920974ce0fe21 100644
--- a/lib_com/bitstream.c
+++ b/lib_com/bitstream.c
@@ -50,6 +50,9 @@
#include "ivas_cnst.h"
#include "ivas_rom_com.h"
#include "wmc_auto.h"
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
+#include
+#endif
#ifdef DEBUGGING
@@ -209,6 +212,9 @@ ivas_error ind_list_realloc(
{
new_ind_list[i].id = old_ind_list[i].id;
new_ind_list[i].value = old_ind_list[i].value;
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
+ strncpy( new_ind_list[i].function_name, old_ind_list[i].function_name, 100 );
+#endif
}
new_ind_list[i].nb_bits = old_ind_list[i].nb_bits;
}
@@ -217,6 +223,9 @@ ivas_error ind_list_realloc(
for ( ; i < max_num_indices; i++ )
{
new_ind_list[i].nb_bits = -1;
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
+ sprintf( new_ind_list[i].function_name, "RESET in ind_list_realloc" );
+#endif
}
/* update parameters in all SCE elements */
@@ -802,6 +811,9 @@ void move_indices(
new_ind_list[i].id = old_ind_list[i].id;
new_ind_list[i].value = old_ind_list[i].value;
new_ind_list[i].nb_bits = old_ind_list[i].nb_bits;
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
+ strncpy( new_ind_list[i].function_name, old_ind_list[i].function_name, 100 );
+#endif
old_ind_list[i].nb_bits = -1;
}
@@ -813,8 +825,14 @@ void move_indices(
new_ind_list[i].id = old_ind_list[i].id;
new_ind_list[i].value = old_ind_list[i].value;
new_ind_list[i].nb_bits = old_ind_list[i].nb_bits;
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
+ strncpy( new_ind_list[i].function_name, old_ind_list[i].function_name, 100 );
+#endif
old_ind_list[i].nb_bits = -1;
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
+ sprintf( old_ind_list[i].function_name, "RESET in move_indices" );
+#endif
}
}
@@ -895,6 +913,1880 @@ ivas_error check_ind_list_limits(
return error;
}
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
+const char *named_indices_table[] = {
+ "IND_IVAS_FORMAT",
+ "IND_SMODE_OMASA",
+ "IND_SMODE",
+ "IND_SID_TYPE",
+ "IND_BWIDTH",
+ "IND_CORE",
+ "IND_PPP_NELP_MODE",
+ "IND_ACELP_16KHZ",
+ "IND_ACELP_SIGNALLING",
+ "IND_SHARP_FLAG",
+ "IND_MDCT_CORE",
+ "IND_TCX_CORE",
+ "IND_BWE_FLAG",
+ "IND_HQ_SWITCHING_FLG",
+ "IND_LAST_L_FRAME",
+ "IND_VAD_FLAG",
+ "IND_HQ_BWIDTH",
+ "IND_TC_SUBFR",
+ "IND_TC_SUBFR",
+ "IND_TC_SUBFR",
+ "IND_TC_SUBFR",
+ "IND_GSC_IVAS_SP",
+ "IND_LSF_PREDICTOR_SELECT_BIT",
+ "IND_LSF",
+ "IND_LSF",
+ "IND_LSF",
+ "IND_LSF",
+ "IND_LSF",
+ "IND_LSF",
+ "IND_LSF",
+ "IND_LSF",
+ "IND_LSF",
+ "IND_LSF",
+ "IND_LSF",
+ "IND_LSF",
+ "IND_LSF",
+ "IND_LSF",
+ "IND_LSF",
+ "IND_LSF",
+ "IND_LSF",
+ "IND_MID_FRAME_LSF_INDEX",
+ "IND_ISF_0_0",
+ "IND_ISF_0_1",
+ "IND_ISF_0_2",
+ "IND_ISF_0_3",
+ "IND_ISF_0_4",
+ "IND_ISF_1_0",
+ "IND_ISF_1_1",
+ "IND_ISF_1_2",
+ "IND_ISF_1_3",
+ "IND_ISF_1_4",
+ "IND_IC_LSF_PRED",
+ "IND_GSC_ATTACK",
+ "IND_GSC_SWB_SPEECH",
+ "IND_NOISE_LEVEL",
+ "IND_HF_NOISE",
+ "IND_PIT_CONTR_IDX",
+ "IND_FEC_CLAS",
+ "IND_FEC_ENR",
+ "IND_FEC_POS",
+ "IND_ES_PRED",
+ "IND_HARM_FLAG_ACELP",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "IND_ALG_CDBK_4T64_2_24KBIT",
+ "TAG_ALG_CDBK_4T64_24KBIT_END",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "IND_HF_GAIN_MODIFICATION",
+ "TAG_ACELP_SUBFR_LOOP_END",
+ "IND_MEAN_GAIN2",
+ "IND_MEAN_GAIN2",
+ "IND_MEAN_GAIN2",
+ "IND_MEAN_GAIN2",
+ "IND_MEAN_GAIN2",
+ "IND_MEAN_GAIN2",
+ "IND_MEAN_GAIN2",
+ "IND_MEAN_GAIN2",
+ "IND_MEAN_GAIN2",
+ "IND_MEAN_GAIN2",
+ "IND_MEAN_GAIN2",
+ "IND_MEAN_GAIN2",
+ "IND_MEAN_GAIN2",
+ "IND_MEAN_GAIN2",
+ "IND_MEAN_GAIN2",
+ "IND_MEAN_GAIN2",
+ "IND_MEAN_GAIN2",
+ "IND_MEAN_GAIN2",
+ "IND_MEAN_GAIN2",
+ "IND_MEAN_GAIN2",
+ "IND_MEAN_GAIN2",
+ "IND_MEAN_GAIN2",
+ "IND_MEAN_GAIN2",
+ "IND_MEAN_GAIN2",
+ "IND_MEAN_GAIN2",
+ "IND_MEAN_GAIN2",
+ "IND_MEAN_GAIN2",
+ "IND_MEAN_GAIN2",
+ "IND_MEAN_GAIN2",
+ "IND_MEAN_GAIN2",
+ "IND_MEAN_GAIN2",
+ "IND_MEAN_GAIN2",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_TMP",
+ "IND_Y_GAIN_HF",
+ "IND_HQ_VOICING_FLAG",
+ "IND_HQ_SWB_CLAS",
+ "IND_NF_IDX",
+ "IND_LC_MODE",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_YNRM",
+ "IND_SWB_FENV_HQ",
+ "IND_SWB_FENV_HQ",
+ "IND_SWB_FENV_HQ",
+ "IND_SWB_FENV_HQ",
+ "IND_SWB_FENV_HQ",
+ "IND_FB_FENV_HQ",
+ "IND_FB_FENV_HQ",
+ "IND_FB_FENV_HQ",
+ "IND_FB_FENV_HQ",
+ "IND_FB_FENV_HQ",
+ "IND_DELTA_ENV_HQ",
+ "IND_HVQ_BWE_NL",
+ "IND_HVQ_BWE_NL",
+ "IND_NUM_PEAKS",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_POS_IDX",
+ "IND_FLAGN",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_PG_IDX",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_PEAKS",
+ "IND_HVQ_NF_GAIN",
+ "IND_HVQ_NF_GAIN",
+ "IND_HQ2_SWB_CLAS",
+ "IND_HQ2_DENG_MODE",
+ "IND_HQ2_DENG_8SMODE",
+ "IND_HQ2_DENG_8SMODE_N0",
+ "IND_HQ2_DENG_8SMODE_N1",
+ "IND_HQ2_DENG_8SPOS",
+ "IND_HQ2_DENG_8SDEPTH",
+ "IND_HQ2_DENG_HMODE",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_DIFF_ENERGY",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_P2A_FLAGS",
+ "IND_HQ2_LAST_BA_MAX_BAND",
+ "IND_HQ2_LAST_BA_MAX_BAND",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_START",
+ "IND_RC_END",
+ "IND_HVQ_PVQ_GAIN",
+ "IND_HVQ_PVQ_GAIN",
+ "IND_HVQ_PVQ_GAIN",
+ "IND_HVQ_PVQ_GAIN",
+ "IND_HVQ_PVQ_GAIN",
+ "IND_HVQ_PVQ_GAIN",
+ "IND_HVQ_PVQ_GAIN",
+ "IND_HVQ_PVQ_GAIN",
+ "IND_NOISINESS",
+ "IND_ENERGY",
+ "IND_CNG_HO",
+ "IND_SID_BW",
+ "IND_CNG_ENV1",
+ "IND_WB_FENV",
+ "IND_WB_CLASS",
+ "IND_IG1",
+ "IND_IG2A",
+ "IND_IG2B",
+ "IND_NELP_FID",
+ "IND_DELTALAG",
+ "IND_POWER",
+ "IND_AMP0",
+ "IND_AMP1",
+ "IND_GLOBAL_ALIGNMENT",
+ "IND_PVQ_FINE_GAIN",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_UV_FLAG",
+ "IND_SHB_SUBGAIN",
+ "IND_SHB_FRAMEGAIN",
+ "IND_STEREO_ICBWE_MSFLAG",
+ "IND_SHB_ENER_SF",
+ "IND_SHB_RES_GS",
+ "IND_SHB_RES_GS",
+ "IND_SHB_RES_GS",
+ "IND_SHB_RES_GS",
+ "IND_SHB_RES_GS",
+ "IND_SHB_VF",
+ "IND_SHB_LSF",
+ "IND_SHB_LSF",
+ "IND_SHB_LSF",
+ "IND_SHB_LSF",
+ "IND_SHB_LSF",
+ "IND_SHB_MIRROR",
+ "IND_SHB_GRID",
+ "IND_SWB_CLASS",
+ "IND_SWB_TENV",
+ "IND_SWB_TENV",
+ "IND_SWB_TENV",
+ "IND_SWB_TENV",
+ "IND_SWB_FENV",
+ "IND_SWB_FENV",
+ "IND_SWB_FENV",
+ "IND_SWB_FENV",
+ "IND_SHB_CNG_GAIN",
+ "IND_DITHERING",
+ "IND_FB_SLOPE",
+ "IND_HQ2_SPT_SHORTEN",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_TCQ",
+ "IND_HQ2_SUBBAND_GAIN",
+ "IND_HQ2_SUBBAND_GAIN",
+ "IND_HQ2_SUBBAND_GAIN",
+ "IND_HQ2_SUBBAND_GAIN",
+ "IND_HQ2_SUBBAND_GAIN",
+ "IND_HQ2_SUBBAND_GAIN",
+ "IND_HQ2_SUBBAND_GAIN",
+ "IND_HQ2_SUBBAND_GAIN",
+ "IND_HQ2_SUBBAND_GAIN",
+ "IND_HQ2_SUBBAND_GAIN",
+ "IND_HQ2_SUBBAND_GAIN",
+ "IND_HQ2_SUBBAND_GAIN",
+ "IND_HQ2_SUBBAND_GAIN",
+ "IND_HQ2_SUBBAND_GAIN",
+ "IND_HQ2_SUBBAND_GAIN",
+ "IND_HQ2_SUBBAND_GAIN",
+ "IND_HQ2_SUBBAND_GAIN",
+ "IND_HQ2_SUBBAND_GAIN",
+ "IND_HQ2_SUBBAND_GAIN",
+ "IND_HQ2_SUBBAND_GAIN",
+ "IND_HQ2_DUMMY",
+ "IND_LAGINDICES",
+ "IND_NOISEG",
+ "IND_AUDIO_GAIN",
+ "IND_AUDIO_DELAY",
+ "IND_AUDIO_DELAY",
+ "IND_AUDIO_DELAY",
+ "IND_AUDIO_DELAY",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "IND_NQ2",
+ "TAG_HR_BWE_LOOP_END",
+ "IND_CORE_SWITCHING_CELP_SUBFRAME",
+ "IND_CORE_SWITCHING_CELP_SUBFRAME",
+ "IND_CORE_SWITCHING_CELP_SUBFRAME",
+ "IND_CORE_SWITCHING_CELP_SUBFRAME",
+ "IND_CORE_SWITCHING_CELP_SUBFRAME",
+ "IND_CORE_SWITCHING_CELP_SUBFRAME",
+ "IND_CORE_SWITCHING_CELP_SUBFRAME",
+ "IND_CORE_SWITCHING_CELP_SUBFRAME",
+ "IND_CORE_SWITCHING_CELP_SUBFRAME",
+ "IND_CORE_SWITCHING_CELP_SUBFRAME",
+ "IND_CORE_SWITCHING_CELP_SUBFRAME",
+ "IND_CORE_SWITCHING_CELP_SUBFRAME",
+ "IND_CORE_SWITCHING_CELP_SUBFRAME",
+ "IND_CORE_SWITCHING_CELP_SUBFRAME",
+ "IND_CORE_SWITCHING_CELP_SUBFRAME",
+ "IND_CORE_SWITCHING_CELP_SUBFRAME",
+ "IND_CORE_SWITCHING_CELP_SUBFRAME",
+ "IND_CORE_SWITCHING_CELP_SUBFRAME",
+ "IND_CORE_SWITCHING_CELP_SUBFRAME",
+ "IND_CORE_SWITCHING_CELP_SUBFRAME",
+ "IND_CORE_SWITCHING_AUDIO_DELAY",
+ "IND_CORE_SWITCHING_AUDIO_GAIN",
+ "IND_STEREO_ICBWE_REF",
+ "IND_STEREO_ICBWE_SP",
+ "IND_STEREO_ICBWE_GS",
+ "IND_STEREO_REFCHAN",
+ "IND_STEREO_CORRSTATS",
+ "IND_STEREO_GD",
+ "IND_STEREO_LRTD_FLAG",
+ "IND_STEREO_LPC_REUSE",
+ "IND_STEREO_TD_ALPHA",
+ "IND_STEREO_2ND_CODER_T",
+ "IND_UNUSED"
+};
+#endif
/*-------------------------------------------------------------------*
* push_indice()
@@ -965,6 +2857,9 @@ ivas_error push_indice(
hBstr->ind_list[j].id = hBstr->ind_list[j - 1].id;
hBstr->ind_list[j].nb_bits = hBstr->ind_list[j - 1].nb_bits;
hBstr->ind_list[j].value = hBstr->ind_list[j - 1].value;
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
+ strncpy( hBstr->ind_list[j].function_name, hBstr->ind_list[j - 1].function_name, 100 );
+#endif
}
}
@@ -973,6 +2868,9 @@ ivas_error push_indice(
hBstr->ind_list[i].id = id;
hBstr->ind_list[i].value = value;
hBstr->ind_list[i].nb_bits = nb_bits;
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
+ strncpy( hBstr->ind_list[i].function_name, named_indices_table[id], 100 );
+#endif
/* updates */
hBstr->nb_ind_tot++;
@@ -987,19 +2885,15 @@ ivas_error push_indice(
* Push a new indice into the buffer at the next position
*-------------------------------------------------------------------*/
-#ifdef DEBUG_BS_READ_WRITE
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
ivas_error push_next_indice_(
+ const char *caller,
#else
ivas_error push_next_indice(
#endif
BSTR_ENC_HANDLE hBstr, /* i/o: encoder bitstream handle */
uint16_t value, /* i : value of the quantized indice */
int16_t nb_bits /* i : number of bits used to quantize the indice */
-#ifdef DEBUG_BS_READ_WRITE
- ,
- int16_t line,
- const char *func
-#endif
)
{
int16_t prev_id;
@@ -1007,9 +2901,6 @@ ivas_error push_next_indice(
error = IVAS_ERR_OK;
-#ifdef DEBUG_BS_READ_WRITE
- printf( "%s: %d: %d: %d\n", func, line, nb_bits, value );
-#endif
#ifdef DEBUGGING
if ( nb_bits < ( 32 - 1 ) && ( value >> nb_bits ) > 0 )
{
@@ -1043,6 +2934,9 @@ ivas_error push_next_indice(
hBstr->ind_list[hBstr->nb_ind_tot].id = prev_id;
hBstr->ind_list[hBstr->nb_ind_tot].value = value;
hBstr->ind_list[hBstr->nb_ind_tot].nb_bits = nb_bits;
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
+ strncpy( hBstr->ind_list[hBstr->nb_ind_tot].function_name, caller, 100 );
+#endif
/* updates */
hBstr->nb_ind_tot++;
@@ -1057,19 +2951,15 @@ ivas_error push_next_indice(
* Push a bit buffer into the buffer at the next position
*-------------------------------------------------------------------*/
-#ifdef DEBUG_BS_READ_WRITE
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
ivas_error push_next_bits_(
+ const char *caller,
#else
ivas_error push_next_bits(
#endif
BSTR_ENC_HANDLE hBstr, /* i/o: encoder bitstream handle */
const uint16_t bits[], /* i : bit buffer to pack, sequence of single bits */
const int16_t nb_bits /* i : number of bits to pack */
-#ifdef DEBUG_BS_READ_WRITE
- ,
- int16_t line,
- const char *func
-#endif
)
{
uint16_t code;
@@ -1079,9 +2969,6 @@ ivas_error push_next_bits(
ivas_error error;
error = IVAS_ERR_OK;
-#ifdef DEBUG_BS_READ_WRITE
- printf( "%s: %d: %d\n", func, line, nb_bits );
-#endif
ptr = &hBstr->ind_list[hBstr->nb_ind_tot];
@@ -1112,11 +2999,11 @@ ivas_error push_next_bits(
ptr = &hBstr->ind_list[hBstr->nb_ind_tot];
ptr->value = code;
-#ifdef DEBUG_BS_READ_WRITE
- printf( "code: %d\n", code );
-#endif
ptr->nb_bits = 16;
ptr->id = prev_id;
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
+ strncpy( ptr->function_name, caller, 100 );
+#endif
hBstr->nb_ind_tot++;
++ptr;
}
@@ -1135,11 +3022,11 @@ ivas_error push_next_bits(
ptr = &hBstr->ind_list[hBstr->nb_ind_tot];
ptr->value = bits[i];
-#ifdef DEBUG_BS_READ_WRITE
- printf( "value: %d\n", ptr->value );
-#endif
ptr->nb_bits = 1;
ptr->id = prev_id;
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
+ strncpy( ptr->function_name, caller, 100 );
+#endif
hBstr->nb_ind_tot++;
++ptr;
}
@@ -1209,6 +3096,9 @@ uint16_t delete_indice(
hBstr->ind_list[j].id = hBstr->ind_list[i].id;
hBstr->ind_list[j].value = hBstr->ind_list[i].value;
hBstr->ind_list[j].nb_bits = hBstr->ind_list[i].nb_bits;
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
+ strncpy( hBstr->ind_list[j].function_name, hBstr->ind_list[i].function_name, 100 );
+#endif
}
j++;
@@ -1220,6 +3110,9 @@ uint16_t delete_indice(
{
/* reset the shifted indices at the end of the list */
hBstr->ind_list[j].nb_bits = -1;
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
+ sprintf( hBstr->ind_list[j].function_name, "RESET in delete_indice" );
+#endif
}
return i - j;
@@ -1666,6 +3559,73 @@ static ivas_error write_indices_element(
}
}
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
+ if ( is_SCE ) /* EVS and SCE */
+ {
+ static FILE *f1 = 0;
+
+ if ( f1 == 0 )
+ f1 = fopen( "bitstream_text", "w" );
+
+ for ( int16_t i = 0; i < sts[0]->hBstr->nb_ind_tot; i++ )
+ {
+ Indice *ind_list = sts[0]->hBstr->ind_list;
+ int16_t value = ind_list[i].value;
+ int16_t nb_bits = ind_list[i].nb_bits;
+ char *function_name = ind_list[i].function_name;
+
+ fprintf( f1, "%d %d %d %s %d %d\n", frame, element_id, i, function_name, nb_bits, value );
+ }
+
+ if ( st_ivas->hSCE[element_id]->hMetaData != NULL )
+ {
+ for ( int16_t i = 0; i < st_ivas->hSCE[element_id]->hMetaData->nb_ind_tot; i++ )
+ {
+ Indice *ind_list = st_ivas->hSCE[element_id]->hMetaData->ind_list;
+ int16_t value = ind_list[i].value;
+ int16_t nb_bits = ind_list[i].nb_bits;
+ char *function_name = ind_list[i].function_name;
+
+ fprintf( f1, "%d %d %d %s %d %d\n", frame, element_id, i, function_name, nb_bits, value );
+ }
+ }
+ }
+ else
+ {
+ static FILE *f1 = 0;
+
+ if ( f1 == 0 )
+ f1 = fopen( "bitstream_text", "w" );
+
+
+ for ( n = 0; n < n_channels; n++ )
+ {
+ for ( int16_t i = 0; i < sts[n]->hBstr->nb_ind_tot; i++ )
+ {
+ Indice *ind_list = sts[n]->hBstr->ind_list;
+ int16_t value = ind_list[i].value;
+ int16_t nb_bits = ind_list[i].nb_bits;
+ char *function_name = ind_list[i].function_name;
+
+ fprintf( f1, "%d %d %d %d %s %d %d\n", frame, element_id, n, i, function_name, nb_bits, value );
+ }
+ }
+
+ if ( st_ivas->hCPE[element_id]->hMetaData != NULL )
+ {
+ for ( int16_t i = 0; i < st_ivas->hCPE[element_id]->hMetaData->nb_ind_tot; i++ )
+ {
+ Indice *ind_list = st_ivas->hCPE[element_id]->hMetaData->ind_list;
+ int16_t value = ind_list[i].value;
+ int16_t nb_bits = ind_list[i].nb_bits;
+ char *function_name = ind_list[i].function_name;
+
+ fprintf( f1, "%d %d %d %d %s %d %d\n", frame, element_id, -1, i, function_name, nb_bits, value );
+ }
+ }
+ }
+#endif
+
/*----------------------------------------------------------------*
* Clearing of indices
* Reset index pointers
diff --git a/lib_com/common_api_types.h b/lib_com/common_api_types.h
index 03209f3e26ccb909f23ff165fe9a985c883457e9..ce2982b63bf22b020338188aecb8d230608aced5 100644
--- a/lib_com/common_api_types.h
+++ b/lib_com/common_api_types.h
@@ -50,8 +50,7 @@
#define IVAS_MAX_BITS_PER_FRAME ( 512000 / IVAS_NUM_FRAMES_PER_SEC ) /* maximum bits per frame; corresponds to maximum bitrate of 512 kbps */
#define IVAS_MAX_NUM_OBJECTS 4
-#define IVAS_MAX_INPUT_CHANNELS 16
-#define IVAS_MAX_OUTPUT_CHANNELS 16 /* Note: there is an exception for OSBA and EXT otuput where it can be 20 (HOA3 + 4 ISM channels) */
+#define IVAS_MAX_LS_CHANNELS 16
#define IVAS_CLDFB_NO_COL_MAX 16
#define IVAS_CLDFB_NO_CHANNELS_MAX 60
@@ -190,10 +189,10 @@ typedef struct ivas_LS_setup_custom IVAS_LSSETUP_CUSTOM_STRUCT;
typedef struct _IVAS_LS_CUSTOM_LAYOUT
{
int16_t num_spk;
- float azimuth[IVAS_MAX_OUTPUT_CHANNELS];
- float elevation[IVAS_MAX_OUTPUT_CHANNELS];
+ float azimuth[IVAS_MAX_LS_CHANNELS];
+ float elevation[IVAS_MAX_LS_CHANNELS];
int16_t num_lfe;
- int16_t lfe_idx[IVAS_MAX_OUTPUT_CHANNELS];
+ int16_t lfe_idx[IVAS_MAX_LS_CHANNELS];
} IVAS_CUSTOM_LS_DATA;
diff --git a/lib_com/ivas_cnst.h b/lib_com/ivas_cnst.h
index 155fa08eb26d50163fe4597ad345fff3c49c2a83..61639537644a4c4759ab36713d9610a278688aa0 100755
--- a/lib_com/ivas_cnst.h
+++ b/lib_com/ivas_cnst.h
@@ -128,12 +128,12 @@ typedef enum
* IVAS general constants
*----------------------------------------------------------------------------------*/
-#define MAX_INPUT_CHANNELS 16 /* Maximum number of input channels (HOA 3rd order), == IVAS_MAX_INPUT_CHANNELS */
+#define MAX_INPUT_CHANNELS 16 /* Maximum number of input channels (HOA 3rd order or IVAS_MAX_LS_CHANNELS) without separate objects in combined formats */
#define MAX_TRANSPORT_CHANNELS 12 /* Maximum number of transport channels */
#define MAX_INTERN_CHANNELS 16 /* Maximum number of intern channels (HOA 3rd order) */
#define HEAD_ROTATION_HOA_ORDER 3 /* HOA 3rd order */
-#define MAX_CICP_CHANNELS 16 /* max channels for loudspeaker layouts (16 for custom layouts)*/
-#define MAX_OUTPUT_CHANNELS 16 /* Maximum number of output channels (HOA 3rd order) without separate objects in combined formats */
+#define MAX_LS_CHANNELS 16 /* max channels for loudspeaker layouts (16 for custom layouts), == IVAS_MAX_LS_CHANNELS */
+#define MAX_OUTPUT_CHANNELS 16 /* Maximum number of output channels (HOA 3rd order or IVAS_MAX_LS_CHANNELS) without separate objects in combined formats */
#define MAX_OUTPUT_CHANNELS_IN_DIEGETIC_PAN 2 /* Maximum number of output channels with non diegetic panning */
#define BINAURAL_CHANNELS 2 /* number of channels for binaural output configuration */
@@ -1505,7 +1505,7 @@ typedef enum
* TD Binaural Object renderer
*----------------------------------------------------------------------------------*/
-#define MAX_NUM_TDREND_CHANNELS MAX_CICP_CHANNELS /* max. number of channels in TD renderer (objects or loudspeaker channels) */
+#define MAX_NUM_TDREND_CHANNELS MAX_LS_CHANNELS /* max. number of channels in TD renderer (objects or loudspeaker channels) */
#define SFX_SPAT_BIN_MAX_NO_OF_OUTPUT_SAMPLES 288 /* 288 = 6 msec @ 48 kHz. */
#define HRTF_MODEL_N_SECTIONS 3 /* No. sections used in approximate evaluation of model */
@@ -1608,7 +1608,7 @@ typedef enum
#define IVAS_MAX_FB_MIXER_OUT_CH IVAS_SPAR_MAX_CH
#define IVAS_MAX_SPAR_FB_MIXER_IN_CH IVAS_SPAR_MAX_CH
-#define IVAS_MAX_FB_MIXER_IN_CH MAX_CICP_CHANNELS
+#define IVAS_MAX_FB_MIXER_IN_CH MAX_LS_CHANNELS
#define MAX_NUM_BANDS_DIFF_NON48K 3
diff --git a/lib_com/ivas_error.h b/lib_com/ivas_error.h
index 5a3d3fa787151590e02d40b116382f5bb1a0f063..66fa262d374233912f1e02a36dc98fe8cbf58520 100644
--- a/lib_com/ivas_error.h
+++ b/lib_com/ivas_error.h
@@ -134,6 +134,7 @@ typedef enum
IVAS_ERR_BITSTREAM_READER_INVALID_FORMAT,
IVAS_ERR_NO_FILE_OPEN,
IVAS_ERR_SAMPLING_RATE_UNKNOWN,
+ IVAS_ERR_EXTERNAL_ORIENTATION_INVALID_FORMAT,
/*----------------------------------------*
* renderer (lib_rend only) *
@@ -279,6 +280,8 @@ static inline const char *ivas_error_to_string( ivas_error error_code )
return "Invalid input format";
case IVAS_ERR_INVALID_INDEX:
return "Invalid index";
+ case IVAS_ERR_EXTERNAL_ORIENTATION_INVALID_FORMAT:
+ return "Euler angles were detected in the input but only Quaternions are supported";
default:
break;
}
diff --git a/lib_com/ivas_prot.h b/lib_com/ivas_prot.h
index 262d30ca99f410debd5fe221702f753512d591ff..ad1b34d2e2ccd823dc43a299de8a46c2e0c6fcbb 100755
--- a/lib_com/ivas_prot.h
+++ b/lib_com/ivas_prot.h
@@ -308,8 +308,9 @@ ivas_error ivas_init_decoder(
ivas_error ivas_output_buff_dec(
float *p_output_f[], /* i/o: output audio buffers */
- const int16_t nchan_out_buff_old, /* i : previous frame number of output channels*/
- const int16_t nchan_out_buff /* i : number of output channels */
+ const int16_t nchan_out_buff, /* i : number of output channels */
+ const int16_t Opt_tsm, /* i : TSM option flag */
+ DECODER_TC_BUFFER_HANDLE hTcBuffer /* i : TSM buffer handle */
);
ivas_error stereo_dmx_evs_init_encoder(
@@ -5316,9 +5317,9 @@ void ivas_ls_setup_conversion_process_mdct_param_mc(
void ivas_lssetupconversion_process_param_mc(
Decoder_Struct *st_ivas, /* i/o: LS setup conversion renderer handle */
const int16_t num_timeslots, /* i : number of time slots to process */
- float Cldfb_RealBuffer_InOut[MAX_CICP_CHANNELS][PARAM_MC_MAX_NSLOTS_IN_SUBFRAME][CLDFB_NO_CHANNELS_MAX], /* i/o: LS signals */
- float Cldfb_ImagBuffer_InOut[MAX_CICP_CHANNELS][PARAM_MC_MAX_NSLOTS_IN_SUBFRAME][CLDFB_NO_CHANNELS_MAX], /* i/o: LS signals */
- int16_t channel_active[MAX_CICP_CHANNELS] /* i : bitmap indicating which output channels are active */
+ float Cldfb_RealBuffer_InOut[MAX_LS_CHANNELS][PARAM_MC_MAX_NSLOTS_IN_SUBFRAME][CLDFB_NO_CHANNELS_MAX], /* i/o: LS signals */
+ float Cldfb_ImagBuffer_InOut[MAX_LS_CHANNELS][PARAM_MC_MAX_NSLOTS_IN_SUBFRAME][CLDFB_NO_CHANNELS_MAX], /* i/o: LS signals */
+ int16_t channel_active[MAX_LS_CHANNELS] /* i : bitmap indicating which output channels are active */
);
@@ -5835,8 +5836,7 @@ void ivas_omasa_separate_object_render_jbm(
const uint16_t nSamplesRendered, /* i : number of samples rendered */
float input_f[][L_FRAME48k], /* i : separated object signal */
float *output_f[], /* o : rendered time signal */
- const int16_t subframes_rendered, /* i : number of subframes rendered */
- const int16_t slots_rendered /* i : number of CLDFB slots rendered */
+ const int16_t subframes_rendered /* i : number of subframes rendered */
);
void ivas_omasa_encode_masa_to_total(
diff --git a/lib_com/ivas_rom_com.c b/lib_com/ivas_rom_com.c
index 7d84b0a739b693fa261eb70795f245ac8097c545..237583bb589061e11db0b5fd7d0259ecf8605907 100644
--- a/lib_com/ivas_rom_com.c
+++ b/lib_com/ivas_rom_com.c
@@ -1826,7 +1826,7 @@ const int16_t param_mc_coding_band_mapping_10[10] =
1, 1, 1, 1, 1, 0, 0, 0, 0, 0
};
-const int16_t Param_MC_index[MAX_CICP_CHANNELS] =
+const int16_t Param_MC_index[MAX_LS_CHANNELS] =
{
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11
};
diff --git a/lib_com/ivas_rom_com.h b/lib_com/ivas_rom_com.h
index 3bf30289b6e030df649a25d4c8d91e10ef8bf17c..c68e16ba9af30cb5ae1938ad35098899261479c2 100644
--- a/lib_com/ivas_rom_com.h
+++ b/lib_com/ivas_rom_com.h
@@ -219,7 +219,7 @@ extern const int16_t param_mc_start_bin_per_band_14[14];
extern const int16_t param_mc_active_bins_per_band_14[14];
extern const int16_t param_mc_start_bin_per_band_10[10];
extern const int16_t param_mc_active_bins_per_band_10[10];
-extern const int16_t Param_MC_index[MAX_CICP_CHANNELS];
+extern const int16_t Param_MC_index[MAX_LS_CHANNELS];
extern const PARAM_MC_CONF ivas_param_mc_conf[PARAM_MC_NUM_CONFIGS];
extern const float ivas_param_mc_quant_ild_5d1_48[PARAM_MC_SZ_ILD_QUANTIZER_4BITS];
extern const float ivas_param_mc_quant_icc[PARAM_MC_SZ_ICC_QUANTIZER];
diff --git a/lib_com/ivas_stat_com.h b/lib_com/ivas_stat_com.h
index 80b28d63d63ff614dc63d7d335250d47c37d42db..18697006c2b827a7c6c45c87f306a9a6f0b9de13 100644
--- a/lib_com/ivas_stat_com.h
+++ b/lib_com/ivas_stat_com.h
@@ -561,9 +561,9 @@ typedef struct ivas_param_mc_ild_mapping_struct
{
int16_t ild_map_size_wo_lfe;
int16_t ild_map_size_lfe;
- int16_t ild_index[MAX_CICP_CHANNELS];
- int16_t num_ref_channels[MAX_CICP_CHANNELS];
- int16_t ref_channel_idx[MAX_CICP_CHANNELS][PARAM_MC_MAX_ILD_REF_CHANNELS];
+ int16_t ild_index[MAX_LS_CHANNELS];
+ int16_t num_ref_channels[MAX_LS_CHANNELS];
+ int16_t ref_channel_idx[MAX_LS_CHANNELS][PARAM_MC_MAX_ILD_REF_CHANNELS];
} PARAM_MC_ILD_MAPPING, *HANDLE_PARAM_MC_ILD_MAPPING;
diff --git a/lib_com/ivas_tools.c b/lib_com/ivas_tools.c
index baa98da6b747e44db3de6083e908ad65c5c7f26f..e7ada0a3432364b499f974d3625af3546d294af6 100644
--- a/lib_com/ivas_tools.c
+++ b/lib_com/ivas_tools.c
@@ -198,12 +198,18 @@ void ivas_buffer_deinterleaved_to_interleaved(
)
{
int16_t ch, m;
+ float buffer[MAX_OUTPUT_CHANNELS + MAX_NUM_OBJECTS][L_FRAME48k]; /* temp buffer needed when "*audio[]" and "*audio_out[]" are the same */
+
+ for ( ch = 0; ch < n_channels; ch++ )
+ {
+ mvr2r( audio[ch], buffer[ch], frame_length );
+ }
for ( ch = 0; ch < n_channels; ch++ )
{
for ( m = 0; m < frame_length; m++ )
{
- audio_out[m * n_channels + ch] = audio[ch][m];
+ audio_out[m * n_channels + ch] = buffer[ch][m];
}
}
diff --git a/lib_com/options.h b/lib_com/options.h
index 1f6e49388905026d7d7aa8577315b7392a4a0830..58ca69d57098444617041c3ba987e8c7ae98bca3 100644
--- a/lib_com/options.h
+++ b/lib_com/options.h
@@ -57,6 +57,7 @@
/*#define MEM_COUNT_DETAILS*/ /* Output detailed memory analysis for the worst-case frame (writes to the file "mem_analysis.csv") */
#ifdef DEBUGGING
+/*#define DBG_BITSTREAM_ANALYSIS*/ /* Write bitstream with annotations to a text file */
/*#define DEBUG_MODE_INFO*/ /* output most important parameters to the subdirectory "res/" */
#ifdef DEBUG_MODE_INFO
/*#define DEBUG_MODE_ACELP*/ /* output most important ACELP core parameters to the subdirectory "res/" */
@@ -76,7 +77,8 @@
#endif
#ifdef DEBUG_MODE_MDCT
-/*#define DEBUG_PLOT_BITS*/
+#define DEBUG_PLOT_BITS
+#define DEBUG_OSBA_MD_BITS
#endif
#ifdef DEBUG_MODE_DFT
@@ -134,6 +136,7 @@
/*#define DEBUG_JBM_CMD_OPTION*/ /* ability for telling the decoder the frontend fetch size and to not delay compensate for bad frames at the beginning */
/*#define VARIABLE_SPEED_DECODING*/ /* variable speed decoding employing the JBM functioniality; move to DEBUGGING after build for disabled is fixed */
/*#define DISABLE_LIMITER*/ /* disable the limiter */
+/*#define DEBUG_APA_SILENCE_NON_SCALED*/ /* Switch APA into mode that replaces contents of non-scaled frames with silence. Useful for identifying scaled regions in the audio output of the decoder */
/*Split Rendering Debug switches*/
/*#define DBG_WAV_WRITER*/ /* add debugging function dbgwrite_wav() */
@@ -163,7 +166,8 @@
/*#define FIX_I4_OL_PITCH*/ /* fix open-loop pitch used for EVS core switching */
#define TMP_FIX_1119_SPLIT_RENDERING_VOIP /* FhG: Add error check for unsupported config: split rendering with VoIP mode */
-
+#define FIX_1995_REVERB_INIT /* issue 1995: Fix use-of-uninitialized-value in ivas_binaural_reverb_init() */
+#define FIX_1372_OSBA_OBJECT_EDITING /* VA: issue 1372: Fix OSBA object-editing in BINAURAL_ROOM_IR */
/* #################### End BE switches ################################## */
@@ -174,7 +178,10 @@
#define NONBE_1244_FIX_SWB_BWE_MEMORY /* VA: issue 1244: fix to SWB BWE memory in case of switching from FB coding - pending a review by Huawei */
#define NONBE_1122_KEEP_EVS_MODE_UNCHANGED /* FhG: Disables fix for issue 1122 in EVS mode to keep BE tests green. This switch should be removed once the 1122 fix is added to EVS via a CR. */
-
+#define NONBE_1328_FIX_NON_LINEARITY /* VA: Fix possible issue when computing bwe_exc_extended and previous frame were almost 0 */
+#define NONBE_1321_JBM_ASSERT_BITRATE_SWITCHING /* FhG: Fix assert being hit in JBM code during rate switching */
+#define NONBE_FIX_1376_MDCT_CONCEALMENT /* FhG: fix concealment artifact in MDCT Stereo with DTX, in case transition frame gets lost */
+#define NONBE_1377_REND_DIRATT_CONF /* Eri: Issue 1377: Error in directivity attenuation configuration for both IVAS_dec and IVAS_rend */
/* ##################### End NON-BE switches ########################### */
diff --git a/lib_com/prot.h b/lib_com/prot.h
index 692b99c97c3fdece50f1ddbb44986a419b5b2aed..efb77f0a3f8067eae9f448e8a7c78e2ec5782e92 100644
--- a/lib_com/prot.h
+++ b/lib_com/prot.h
@@ -484,53 +484,40 @@ void delay_signal(
const int16_t delay /* i : delay in samples */
);
-#ifdef DEBUG_BS_READ_WRITE
-#define push_indice( ... ) push_indice_( __VA_ARGS__, __LINE__, __func__ )
-ivas_error push_indice_(
-#else
+
ivas_error push_indice(
-#endif
BSTR_ENC_HANDLE hBstr, /* i/o: encoder bitstream handle */
int16_t id, /* i : ID of the indice */
uint16_t value, /* i : value of the quantized indice */
int16_t nb_bits /* i : number of bits used to quantize the indice */
-#ifdef DEBUG_BS_READ_WRITE
- ,
- int16_t line,
- const char *func
-#endif
);
-#ifdef DEBUG_BS_READ_WRITE
-#define push_next_indice( ... ) push_next_indice_( __VA_ARGS__, __LINE__, __func__ )
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
+#define push_next_indice( ... ) push_next_indice_( __func__, __VA_ARGS__ )
+#define push_next_bits( ... ) push_next_bits_( __func__, __VA_ARGS__ );
+#endif
+
+
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
ivas_error push_next_indice_(
+ const char *caller,
#else
ivas_error push_next_indice(
#endif
BSTR_ENC_HANDLE hBstr,
uint16_t value, /* i : value of the quantized indice */
int16_t nb_bits /* i : number of bits used to quantize the indice */
-#ifdef DEBUG_BS_READ_WRITE
- ,
- int16_t line,
- const char *func
-#endif
);
-#ifdef DEBUG_BS_READ_WRITE
-#define push_next_bits( ... ) push_next_bits_( __VA_ARGS__, __LINE__, __func__ )
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
ivas_error push_next_bits_(
+ const char *caller,
#else
ivas_error push_next_bits(
#endif
BSTR_ENC_HANDLE hBstr, /* i/o: encoder bitstream handle */
const uint16_t bits[], /* i : bit buffer to pack, sequence of single bits */
const int16_t nb_bits /* i : number of bits to pack */
-#ifdef DEBUG_BS_READ_WRITE
- ,
- int16_t line,
- const char *func
-#endif
);
/*! r: maximum number of indices */
@@ -581,19 +568,9 @@ uint16_t delete_indice(
);
/*! r: value of the indice */
-#ifdef DEBUG_BS_READ_WRITE
-#define get_next_indice( ... ) get_next_indice_( __VA_ARGS__, __LINE__, __func__ )
-uint16_t get_next_indice_(
-#else
uint16_t get_next_indice(
-#endif
Decoder_State *st, /* i/o: decoder state structure */
int16_t nb_bits /* i : number of bits that were used to quantize the indice */
-#ifdef DEBUG_BS_READ_WRITE
- ,
- int16_t line,
- const char *func
-#endif
);
/*! r: value of the indice */
@@ -607,20 +584,10 @@ void get_next_indice_tmp(
);
/*! r: value of the indice */
-#ifdef DEBUG_BS_READ_WRITE
-#define get_indice( ... ) get_indice_( __VA_ARGS__, __LINE__, __func__ )
-uint16_t get_indice_(
-#else
uint16_t get_indice(
-#endif
Decoder_State *st, /* i/o: decoder state structure */
int16_t pos, /* i : absolute position in the bitstream */
int16_t nb_bits /* i : number of bits that were used to quantize the indice */
-#ifdef DEBUG_BS_READ_WRITE
- ,
- int16_t line,
- const char *func
-#endif
);
/*! r: value of the indice */
@@ -2686,6 +2653,10 @@ void non_linearity(
const int16_t coder_type, /* i : Coder Type */
const float *voice_factors, /* i : Voice Factors */
const int16_t L_frame /* i : ACELP frame length */
+#ifdef NONBE_1328_FIX_NON_LINEARITY
+ ,
+ const int16_t element_mode /* i : element_mode to differentiate EVS and IVAS */
+#endif
);
void interp_code_5over2(
diff --git a/lib_com/swb_tbe_com.c b/lib_com/swb_tbe_com.c
index a8d88c2b0fb5f5bb0386c946d3d18e2a7f3b5f3c..ed06e57636c1bb4fa0f19df5422c1125585b5edb 100644
--- a/lib_com/swb_tbe_com.c
+++ b/lib_com/swb_tbe_com.c
@@ -1353,6 +1353,10 @@ void non_linearity(
const int16_t coder_type, /* i : Coder Type */
const float *voice_factors, /* i : Voice Factors */
const int16_t L_frame /* i : ACELP frame length */
+#ifdef NONBE_1328_FIX_NON_LINEARITY
+ ,
+ const int16_t element_mode /* i : element_mode to differentiate EVS and IVAS */
+#endif
)
{
int16_t i, j;
@@ -1365,7 +1369,9 @@ void non_linearity(
int16_t en_abs = 0;
float v_fac = 0, ths;
int16_t nframes;
-
+#ifdef NONBE_1328_FIX_NON_LINEARITY
+ float sc_factor;
+#endif
if ( L_frame == L_FRAME16k )
{
nframes = 5;
@@ -1410,8 +1416,17 @@ void non_linearity(
scale = 0.67f;
}
-
+#ifdef NONBE_1328_FIX_NON_LINEARITY
+ sc_factor = 1024.0f;
+ if ( element_mode > EVS_MONO )
+ {
+ sc_factor = (float) ( 1 << max( 13 - norm_s( j + 1 ), 0 ) ); /* Adapt the scaling factor allowed depending of max position */
+ sc_factor = max( sc_factor, 2.0f );
+ }
+ if ( *prev_scale <= 0.0 || *prev_scale > sc_factor * scale )
+#else
if ( *prev_scale <= 0.0 || *prev_scale > 1024.0f * scale )
+#endif
{
scale_step = 1.0;
*prev_scale = scale;
@@ -1468,8 +1483,17 @@ void non_linearity(
scale = 0.67f;
}
-
+#ifdef NONBE_1328_FIX_NON_LINEARITY
+ sc_factor = 1024.0f;
+ if ( element_mode > EVS_MONO )
+ {
+ sc_factor = (float) ( 1 << max( 12 - norm_s( j - length / 2 + 1 ), 0 ) ); /* allowed intra frame jump is smaller */
+ sc_factor = max( sc_factor, 2.0f );
+ }
+ if ( *prev_scale <= 0.0 || *prev_scale > sc_factor * scale )
+#else
if ( *prev_scale <= 0.0 || *prev_scale > 1024.0f * scale )
+#endif
{
scale_step = 1.0;
*prev_scale = scale;
diff --git a/lib_com/tools.c b/lib_com/tools.c
index 024fe71c7a75323e93db2f805cdeaedc9781c0f6..6dca2331ff73320a615f120e5a1cea687704ab9f 100644
--- a/lib_com/tools.c
+++ b/lib_com/tools.c
@@ -1742,19 +1742,11 @@ double anint(
int16_t is_numeric_float(
float x )
{
-#ifndef BASOP_NOGLOB
- union float_int
-#else /* BASOP_NOGLOB */
- union float_int
-#endif /* BASOP_NOGLOB */
- {
- float float_val;
- int32_t int_val;
- } float_int;
-
- float_int.float_val = x;
-
- return ( ( float_int.int_val & 0x7f800000 ) != 0x7f800000 );
+ int16_t retval;
+#define WMC_TOOL_SKIP
+ retval = (int16_t) ( !isnan( x ) && !isinf( x ) );
+#undef WMC_TOOL_SKIP
+ return retval;
}
/*-------------------------------------------------------------------*
diff --git a/lib_debug/debug.c b/lib_debug/debug.c
index 6336e911fc6b8eb867fc68727ab7d1be7c41506d..012183c5ac9e392b1114723e5a698c8df7a87118 100644
--- a/lib_debug/debug.c
+++ b/lib_debug/debug.c
@@ -820,7 +820,7 @@ int16_t make_dirs( const char *const pathname )
if ( sep != 0 )
{
- temp = calloc( 1, strlen( pathname ) + 1 );
+ temp = calloc( strlen( pathname ) + 1, sizeof( char ) );
p = pathname;
while ( ( p = strchr( p, sep ) ) != NULL )
{
diff --git a/lib_dec/acelp_core_dec.c b/lib_dec/acelp_core_dec.c
index 8e3a5cff68807a4b5cf4fd71f44a74d75629f54d..d488d4479efb0225490c17226df1ef6c3e79afa9 100644
--- a/lib_dec/acelp_core_dec.c
+++ b/lib_dec/acelp_core_dec.c
@@ -1414,7 +1414,12 @@ ivas_error acelp_core_dec(
if ( !st->ppp_mode_dec && ( st->idchan == 0 || st->element_mode != IVAS_CPE_TD || ( st->idchan == 1 && st->element_mode == IVAS_CPE_TD && st->tdm_LRTD_flag ) ) )
{
- non_linearity( bwe_exc, bwe_exc_extended, st->hBWE_TD->old_bwe_exc_extended, L_FRAME32k, &st->hBWE_TD->bwe_non_lin_prev_scale, st->coder_type, voice_factors, st->L_frame );
+ non_linearity( bwe_exc, bwe_exc_extended, st->hBWE_TD->old_bwe_exc_extended, L_FRAME32k, &st->hBWE_TD->bwe_non_lin_prev_scale, st->coder_type, voice_factors, st->L_frame
+#ifdef NONBE_1328_FIX_NON_LINEARITY
+ ,
+ st->element_mode
+#endif
+ );
}
if ( st->core_brate == FRAME_NO_DATA || st->core_brate == SID_2k40 )
diff --git a/lib_dec/dec_acelp_tcx_main.c b/lib_dec/dec_acelp_tcx_main.c
index 4689bdb7950e4df3c69452c5a114fc57a5070053..a591157e44e72a87adab547256f7e80b5326acca 100644
--- a/lib_dec/dec_acelp_tcx_main.c
+++ b/lib_dec/dec_acelp_tcx_main.c
@@ -425,7 +425,12 @@ void dec_acelp_tcx_frame(
if ( st->core == ACELP_CORE && st->igf && st->con_tcx == 0 )
{
- non_linearity( ptr_bwe_exc, bwe_exc_extended, st->hBWE_TD->old_bwe_exc_extended, L_FRAME32k, &st->hBWE_TD->bwe_non_lin_prev_scale, st->coder_type, voice_factors, st->L_frame );
+ non_linearity( ptr_bwe_exc, bwe_exc_extended, st->hBWE_TD->old_bwe_exc_extended, L_FRAME32k, &st->hBWE_TD->bwe_non_lin_prev_scale, st->coder_type, voice_factors, st->L_frame
+#ifdef NONBE_1328_FIX_NON_LINEARITY
+ ,
+ st->element_mode
+#endif
+ );
/* update the old BWE exe memory */
mvr2r( &old_bwe_exc[L_FRAME32k], st->hBWE_TD->old_bwe_exc, PIT16k_MAX * 2 );
diff --git a/lib_dec/dec_tcx.c b/lib_dec/dec_tcx.c
index c371d0c9f9000b0cf083ce39370cc7c32f475bfe..23dd28556d66ffad608b8405ffabbd27ca3d4bb3 100644
--- a/lib_dec/dec_tcx.c
+++ b/lib_dec/dec_tcx.c
@@ -1506,7 +1506,7 @@ void decoder_tcx_tns(
hTcxCfg->tcx_last_overlap_mode = hTcxCfg->tcx_curr_overlap_mode;
}
- if ( ( hTcxCfg->fIsTNSAllowed && fUseTns != 0 && bfi != 1 ) || ( L_spec > L_frameTCX ) )
+ if ( ( hTcxCfg->fIsTNSAllowed && fUseTns != 0 && bfi != 1 && whitenedDomain ) || ( L_spec > L_frameTCX ) )
{
L = L_spec;
}
@@ -1548,7 +1548,7 @@ void decoder_tcx_tns(
if ( ( L_frame == st->L_frame >> 1 ) && st->tcxonly && isTCX5 )
{
- if ( st->element_mode == EVS_MONO || L_spec < L_frameTCX ) /* todo: this is temporary to maintain EVS BE, this is a bug and should be fixed also for EVS (see issue 13) */
+ if ( st->element_mode == EVS_MONO || ( L_spec < L_frameTCX && !whitenedDomain ) ) /* todo: this is temporary to maintain EVS BE, this is a bug and should be fixed also for EVS (see issue 13) */
{
tcx5TnsUngrouping( L_frameTCX >> 1, hTcxCfg->tnsConfig[0][0].iFilterBorders[0] >> 1, x, DEC );
}
diff --git a/lib_dec/hq_lr_dec.c b/lib_dec/hq_lr_dec.c
index f9ab923be7a3d6631b70d0af15e719b3bd3e9d5f..e50bd127d78b5e29f92f8cf55952344fd5a3f3a1 100644
--- a/lib_dec/hq_lr_dec.c
+++ b/lib_dec/hq_lr_dec.c
@@ -262,7 +262,11 @@ void hq_lr_dec(
frac1 = L_Extract_lc( L_tmp, &exp ); /* Extract exponent of L_tmp */
L_tmp = Pow2( 30, frac1 );
exp = sub( exp, 30 );
- Ep_fx[i] = L_shl( L_tmp, sub( exp, 6 ) ); /* Q -6 */
+#ifdef BASOP_NOGLOB
+ Ep_fx[i] = L_shl_o( L_tmp, s_max( sub( exp, 6 ), -31 ), &Overflow ); /* Q -6 */
+#else
+ Ep_fx[i] = L_shl( L_tmp, s_max( sub( exp, 6 ), -31 ) ); /* Q -6 */
+#endif
Ep[i] = (float) ( Ep_fx[i] / pow( 2.0, -6 ) );
}
diff --git a/lib_dec/ivas_binRenderer_internal.c b/lib_dec/ivas_binRenderer_internal.c
index 8258a47c20007cfb1a8250799ae18983fc7a7302..426d8e9a4705ee8cb315b5ecdcb49060bdc87d13 100644
--- a/lib_dec/ivas_binRenderer_internal.c
+++ b/lib_dec/ivas_binRenderer_internal.c
@@ -999,6 +999,7 @@ ivas_error ivas_binRenderer_open(
if ( st_ivas->renderer_type == RENDERER_BINAURAL_FASTCONV_ROOM || ( st_ivas->renderer_type == RENDERER_BINAURAL_FASTCONV && st_ivas->hOutSetup.output_config == IVAS_AUDIO_CONFIG_BINAURAL_ROOM_REVERB ) )
{
pRoomAcoustics = ( st_ivas->hOutSetup.output_config == IVAS_AUDIO_CONFIG_BINAURAL_ROOM_REVERB ) ? &( st_ivas->hRenderConfig->roomAcoustics ) : NULL;
+
if ( ( error = ivas_binaural_reverb_init( &( hBinRenderer->hReverb ),
st_ivas->hHrtfStatistics,
hBinRenderer->conv_band,
@@ -1007,7 +1008,8 @@ ivas_error ivas_binRenderer_open(
st_ivas->hDecoderConfig->output_Fs,
st_ivas->hHrtfFastConv->fastconvReverberationTimes,
st_ivas->hHrtfFastConv->fastconvReverberationEneCorrections,
- hBinRenderer->earlyPartEneCorrection ) ) != IVAS_ERR_OK )
+ NULL ) ) != IVAS_ERR_OK )
+
{
return error;
}
diff --git a/lib_dec/ivas_cpe_dec.c b/lib_dec/ivas_cpe_dec.c
index 012be74c7f03d4cfad1892e0a44e6adeedf7e091..8094a09052575ccb1f213b90f9d09bc78d9fd63a 100644
--- a/lib_dec/ivas_cpe_dec.c
+++ b/lib_dec/ivas_cpe_dec.c
@@ -54,7 +54,7 @@ static void read_stereo_mode_and_bwidth( CPE_DEC_HANDLE hCPE, const Decoder_Stru
static void stereo_mode_combined_format_dec( const Decoder_Struct *st_ivas, CPE_DEC_HANDLE hCPE );
-static ivas_error stereo_dft_dec_main( CPE_DEC_HANDLE hCPE, const int32_t ivas_total_brate, const int16_t n_channels, float res_buf[STEREO_DFT_N_8k], float *output[], float outputHB[][L_FRAME48k], const int16_t output_frame );
+static ivas_error stereo_dft_dec_main( CPE_DEC_HANDLE hCPE, const int32_t ivas_total_brate, const int16_t n_channels, float *p_res_buf, float *output[], float outputHB[][L_FRAME48k], const int16_t output_frame );
/*--------------------------------------------------------------------------*
diff --git a/lib_dec/ivas_dirac_dec.c b/lib_dec/ivas_dirac_dec.c
index 25fc4377b771cd4b85f5491594efaeb7a050f632..cdc22f80f6fe6a6146481f2f5c263b8cced64510 100644
--- a/lib_dec/ivas_dirac_dec.c
+++ b/lib_dec/ivas_dirac_dec.c
@@ -2457,7 +2457,10 @@ void ivas_dirac_dec_render_sf(
/* Move the separated and the LFE channels to temporary variables as spatial synthesis may overwrite current channels */
mvr2r( &( output_f[st_ivas->hOutSetup.separateChannelIndex][subframe_start_sample] ), tmp_separated, num_samples_subframe );
- mvr2r( &( output_f[LFE_CHANNEL][subframe_start_sample] ), tmp_lfe, num_samples_subframe );
+ if ( hDirACRend->hOutSetup.num_lfe > 0 )
+ {
+ mvr2r( &( output_f[LFE_CHANNEL][subframe_start_sample] ), tmp_lfe, num_samples_subframe );
+ }
for ( ch = 0; ch < outchannels; ch++ )
{
diff --git a/lib_dec/ivas_dirac_output_synthesis_cov.c b/lib_dec/ivas_dirac_output_synthesis_cov.c
index 68f7f9ed258bd8354744649602e641c0ad1384c7..bfad98855652ac814e84714f048e3b1b64261784 100644
--- a/lib_dec/ivas_dirac_output_synthesis_cov.c
+++ b/lib_dec/ivas_dirac_output_synthesis_cov.c
@@ -380,25 +380,25 @@ void ivas_dirac_dec_output_synthesis_cov_param_mc_synthesise_slot(
)
{
int16_t param_band_idx, band, ch_idx;
- float mixing_matrix_smooth[MAX_CICP_CHANNELS * PARAM_MC_MAX_TRANSPORT_CHANS];
- float mixing_matrix_res_smooth[MAX_CICP_CHANNELS * MAX_CICP_CHANNELS];
- float mixing_matrix_buffer[MAX_CICP_CHANNELS * MAX_CICP_CHANNELS];
+ float mixing_matrix_smooth[MAX_LS_CHANNELS * PARAM_MC_MAX_TRANSPORT_CHANS];
+ float mixing_matrix_res_smooth[MAX_LS_CHANNELS * MAX_LS_CHANNELS];
+ float mixing_matrix_buffer[MAX_LS_CHANNELS * MAX_LS_CHANNELS];
int16_t have_residual;
float input_f_real[PARAM_MC_MAX_TRANSPORT_CHANS];
float input_f_imag[PARAM_MC_MAX_TRANSPORT_CHANS];
- float output_f_real[MAX_CICP_CHANNELS];
- float output_f_imag[MAX_CICP_CHANNELS];
- float diff_f_real[MAX_CICP_CHANNELS];
- float diff_f_imag[MAX_CICP_CHANNELS];
+ float output_f_real[MAX_LS_CHANNELS];
+ float output_f_imag[MAX_LS_CHANNELS];
+ float diff_f_real[MAX_LS_CHANNELS];
+ float diff_f_imag[MAX_LS_CHANNELS];
int16_t brange[2];
DIRAC_OUTPUT_SYNTHESIS_COV_STATE h_synthesis_state = hParamMC->h_output_synthesis_cov_state;
set_zero( input_f_real, PARAM_MC_MAX_TRANSPORT_CHANS );
set_zero( input_f_imag, PARAM_MC_MAX_TRANSPORT_CHANS );
- set_zero( output_f_real, MAX_CICP_CHANNELS );
- set_zero( output_f_imag, MAX_CICP_CHANNELS );
- set_zero( diff_f_real, MAX_CICP_CHANNELS );
- set_zero( diff_f_imag, MAX_CICP_CHANNELS );
+ set_zero( output_f_real, MAX_LS_CHANNELS );
+ set_zero( output_f_imag, MAX_LS_CHANNELS );
+ set_zero( diff_f_real, MAX_LS_CHANNELS );
+ set_zero( diff_f_imag, MAX_LS_CHANNELS );
for ( param_band_idx = 0; param_band_idx < hParamMC->num_param_bands_synth; param_band_idx++ )
{
diff --git a/lib_dec/ivas_init_dec.c b/lib_dec/ivas_init_dec.c
index 3ea233cc90ff83e1f6a56317a9944a88427ac46f..400243e877f6ee7a8025b7cc3eb8ae7ff8c85b6a 100644
--- a/lib_dec/ivas_init_dec.c
+++ b/lib_dec/ivas_init_dec.c
@@ -1252,6 +1252,7 @@ ivas_error ivas_init_decoder(
int16_t sce_id, cpe_id;
int16_t numCldfbAnalyses, numCldfbSyntheses;
int16_t granularity, n_channels_transport_jbm;
+ int16_t nchan_out_buff;
int32_t output_Fs, ivas_total_brate;
int32_t delay_ns;
AUDIO_CONFIG output_config;
@@ -2309,7 +2310,15 @@ ivas_error ivas_init_decoder(
if ( st_ivas->mc_mode == MC_MODE_MCT || st_ivas->mc_mode == MC_MODE_PARAMUPMIX )
{
- delay_ns = st_ivas->binaural_latency_ns;
+ if ( st_ivas->hIntSetup.index_lfe[0] != -1 )
+ {
+ delay_ns = st_ivas->binaural_latency_ns;
+ }
+ else
+ {
+ delay_ns = 0;
+ }
+
if ( st_ivas->hBinRenderer != NULL )
{
if ( st_ivas->hBinRenderer->render_lfe )
@@ -2367,7 +2376,7 @@ ivas_error ivas_init_decoder(
}
}
- if ( ( st_ivas->ivas_format == MASA_FORMAT || st_ivas->ivas_format == MASA_ISM_FORMAT ) && st_ivas->hDecoderConfig->Opt_tsm )
+ if ( ( st_ivas->ivas_format == MASA_FORMAT || st_ivas->ivas_format == MASA_ISM_FORMAT ) && hDecoderConfig->Opt_tsm )
{
if ( st_ivas->hDecoderConfig->output_config == IVAS_AUDIO_CONFIG_EXTERNAL )
{
@@ -2382,23 +2391,13 @@ ivas_error ivas_init_decoder(
* Allocate floating-point output audio buffers
*-----------------------------------------------------------------*/
- k = ivas_get_nchan_buffers_dec( st_ivas, st_ivas->sba_analysis_order, st_ivas->hDecoderConfig->ivas_total_brate );
- for ( n = 0; n < k; n++ )
+ nchan_out_buff = ivas_get_nchan_buffers_dec( st_ivas, st_ivas->sba_analysis_order, ivas_total_brate );
+ if ( ( error = ivas_output_buff_dec( st_ivas->p_output_f, nchan_out_buff, hDecoderConfig->Opt_tsm, st_ivas->hTcBuffer ) ) != IVAS_ERR_OK )
{
- /* note: these are intra-frame heap memories */
- if ( ( st_ivas->p_output_f[n] = (float *) malloc( ( 48000 / FRAMES_PER_SEC ) * sizeof( float ) ) ) == NULL )
- {
- return ( IVAS_ERROR( IVAS_ERR_FAILED_ALLOC, "Can not allocate memory for floating-point output audio buffer!\n" ) );
- }
- }
-
- for ( ; n < MAX_OUTPUT_CHANNELS + MAX_NUM_OBJECTS; n++ )
- {
- st_ivas->p_output_f[n] = NULL;
+ return error;
}
-
- return error;
+ return IVAS_ERR_OK;
}
@@ -2786,7 +2785,7 @@ void ivas_destroy_dec(
ivas_dirac_dec_close_binaural_data( st_ivas->hDiracDecBin );
/* Crend handle */
- ivas_rend_closeCrend( &( st_ivas->hCrendWrapper ), ( st_ivas->hSplitBinRend == NULL ) ? 1 : st_ivas->hSplitBinRend->splitrend.multiBinPoseData.num_poses );
+ ivas_rend_closeCrend( &( st_ivas->hCrendWrapper ) );
/* Reverb handle */
ivas_reverb_close( &st_ivas->hReverb );
@@ -2853,12 +2852,14 @@ void ivas_destroy_dec(
/* Limiter struct */
ivas_limiter_close( &( st_ivas->hLimiter ) );
+ /* Decoder configuration structure */
if ( st_ivas->hDecoderConfig != NULL )
{
free( st_ivas->hDecoderConfig );
st_ivas->hDecoderConfig = NULL;
}
+ /* JBM TC buffer structure */
ivas_jbm_dec_tc_buffer_close( &st_ivas->hTcBuffer );
if ( st_ivas->hJbmMetadata != NULL )
@@ -2867,14 +2868,10 @@ void ivas_destroy_dec(
st_ivas->hJbmMetadata = NULL;
}
- /* floating-point output audio buffers */
+ /* floating-point output audio buffers */
for ( i = 0; i < MAX_OUTPUT_CHANNELS + MAX_NUM_OBJECTS; i++ )
{
- if ( st_ivas->p_output_f[i] != NULL )
- {
- free( st_ivas->p_output_f[i] );
- st_ivas->p_output_f[i] = NULL;
- }
+ st_ivas->p_output_f[i] = NULL;
}
/* main IVAS handle */
diff --git a/lib_dec/ivas_ism_dec.c b/lib_dec/ivas_ism_dec.c
index 7472690650963f06c709a1ae643c6556af5abf18..d89076863af61811128c043d213250c26d8dc4ca 100644
--- a/lib_dec/ivas_ism_dec.c
+++ b/lib_dec/ivas_ism_dec.c
@@ -60,7 +60,7 @@ static ivas_error ivas_ism_bitrate_switching_dec(
int16_t tc_nchan_tc_new;
int16_t tc_nchan_allocate_new;
int16_t tc_granularity_new;
- int16_t nchan_out_buff, nchan_out_buff_old;
+ int16_t nchan_out_buff;
nCPE_old = st_ivas->nCPE;
nSCE_old = st_ivas->nSCE;
@@ -70,7 +70,6 @@ static ivas_error ivas_ism_bitrate_switching_dec(
st_ivas->ism_mode = last_ism_mode;
ivas_init_dec_get_num_cldfb_instances( st_ivas, &numCldfbAnalyses_old, &numCldfbSyntheses_old );
st_ivas->ism_mode = ism_mode;
- nchan_out_buff_old = ivas_get_nchan_buffers_dec( st_ivas, -1, -1 );
if ( ( error = ivas_ism_config( st_ivas->hDecoderConfig->ivas_total_brate, st_ivas->nchan_transport, st_ivas->nchan_ism, NULL, 0, NULL, NULL, element_brate_tmp, NULL, NULL, 0 ) ) != IVAS_ERR_OK )
{
@@ -122,6 +121,25 @@ static ivas_error ivas_ism_bitrate_switching_dec(
mvs2s( st_ivas->hSpatParamRendCom->subframe_nbslots, st_ivas->hTcBuffer->subframe_nbslots, MAX_JBM_SUBFRAMES_5MS );
}
+#ifdef NONBE_1321_JBM_ASSERT_BITRATE_SWITCHING
+ /* JBM: when granularity goes down (e.g. Discrete ISM with TD Obj Renderer -> ParamISM with binaural fastconv
+ render what still fits in the new granularity */
+ tc_granularity_new = ivas_jbm_dec_get_render_granularity( st_ivas->renderer_type, RENDERER_DISABLE, st_ivas->hDecoderConfig->output_Fs );
+
+ if ( tc_granularity_new < st_ivas->hTcBuffer->n_samples_granularity )
+ {
+ /* flush already done in IVAS_DEC_ReadFormat() */
+ }
+ /* JBM: when granularity goes up set samples to discard at the beginning of the frame */
+ else if ( tc_granularity_new > st_ivas->hTcBuffer->n_samples_granularity )
+ {
+ if ( ( error = ivas_jbm_dec_set_discard_samples( st_ivas ) ) != IVAS_ERR_OK )
+ {
+ return error;
+ }
+ }
+
+#endif
if ( st_ivas->ism_mode != last_ism_mode )
{
/* EFAP handle */
@@ -253,7 +271,7 @@ static ivas_error ivas_ism_bitrate_switching_dec(
}
/* close the crend binaural renderer */
- ivas_rend_closeCrend( &( st_ivas->hCrendWrapper ), ( st_ivas->hSplitBinRend == NULL ) ? 1 : st_ivas->hSplitBinRend->splitrend.multiBinPoseData.num_poses );
+ ivas_rend_closeCrend( &( st_ivas->hCrendWrapper ) );
}
}
@@ -266,17 +284,6 @@ static ivas_error ivas_ism_bitrate_switching_dec(
return error;
}
- /*-----------------------------------------------------------------*
- * floating-point output audio buffers
- *-----------------------------------------------------------------*/
-
- nchan_out_buff = ivas_get_nchan_buffers_dec( st_ivas, -1, -1 );
-
- if ( ( error = ivas_output_buff_dec( st_ivas->p_output_f, nchan_out_buff_old, nchan_out_buff ) ) != IVAS_ERR_OK )
- {
- return error;
- }
-
/*-----------------------------------------------------------------*
* JBM TC buffers
*-----------------------------------------------------------------*/
@@ -289,7 +296,9 @@ static ivas_error ivas_ism_bitrate_switching_dec(
tc_nchan_tc_new = ivas_jbm_dec_get_num_tc_channels( st_ivas );
tc_nchan_allocate_new = tc_nchan_tc_new;
tc_nchan_full_new = tc_nchan_tc_new;
+#ifndef NONBE_1321_JBM_ASSERT_BITRATE_SWITCHING
tc_granularity_new = ivas_jbm_dec_get_render_granularity( st_ivas->renderer_type, RENDERER_DISABLE, st_ivas->hDecoderConfig->output_Fs );
+#endif
if ( st_ivas->ism_mode == ISM_MODE_PARAM && ( st_ivas->renderer_type != RENDERER_MONO_DOWNMIX && st_ivas->renderer_type != RENDERER_DISABLE && st_ivas->renderer_type != RENDERER_BINAURAL_PARAMETRIC && st_ivas->renderer_type != RENDERER_BINAURAL_PARAMETRIC_ROOM ) )
{
@@ -317,6 +326,16 @@ static ivas_error ivas_ism_bitrate_switching_dec(
mvs2s( st_ivas->hTcBuffer->subframe_nbslots, st_ivas->hSpatParamRendCom->subframe_nbslots, MAX_JBM_SUBFRAMES_5MS );
}
+ /*-----------------------------------------------------------------*
+ * floating-point output audio buffers
+ *-----------------------------------------------------------------*/
+
+ nchan_out_buff = ivas_get_nchan_buffers_dec( st_ivas, -1, -1 );
+ if ( ( error = ivas_output_buff_dec( st_ivas->p_output_f, nchan_out_buff, st_ivas->hDecoderConfig->Opt_tsm, st_ivas->hTcBuffer ) ) != IVAS_ERR_OK )
+ {
+ return error;
+ }
+
return IVAS_ERR_OK;
}
diff --git a/lib_dec/ivas_ism_renderer.c b/lib_dec/ivas_ism_renderer.c
index 3d18fea93b13f45ab00e930f7abe4e60bde6689c..11d797253aa423b253950e3707bf6404e9e97e93 100644
--- a/lib_dec/ivas_ism_renderer.c
+++ b/lib_dec/ivas_ism_renderer.c
@@ -193,20 +193,10 @@ void ivas_ism_render_sf(
ism_md_subframe_update_jbm = st_ivas->hTcBuffer->nb_subframes - 2;
}
- if ( st_ivas->hDecoderConfig->Opt_tsm )
- {
- for ( i = 0; i < num_objects; i++ )
- {
- p_tc[i] = &st_ivas->hTcBuffer->tc[i][tc_offset];
- }
- }
- else
+ for ( i = 0; i < num_objects; i++ )
{
- for ( i = 0; i < num_objects; i++ )
- {
- mvr2r( &output_f[i][tc_offset], tc_local[i], n_samples_to_render );
- p_tc[i] = tc_local[i];
- }
+ mvr2r( &output_f[i][tc_offset], tc_local[i], n_samples_to_render );
+ p_tc[i] = tc_local[i];
}
for ( i = 0; i < nchan_out_woLFE + st_ivas->hIntSetup.num_lfe; i++ )
@@ -428,12 +418,11 @@ void ivas_omasa_separate_object_renderer_close(
*-------------------------------------------------------------------------*/
void ivas_omasa_separate_object_render_jbm(
- Decoder_Struct *st_ivas, /* i/o: IVAS decoder structure */
- const uint16_t nSamplesRendered, /* i : number of samples rendered */
- float input_f_in[][L_FRAME48k], /* i : separated object signal */
- float *output_f[], /* o : rendered time signal */
- const int16_t subframes_rendered, /* i : number of subframes rendered */
- const int16_t slots_rendered /* i : number of CLDFB slots rendered */
+ Decoder_Struct *st_ivas, /* i/o: IVAS decoder structure */
+ const uint16_t nSamplesRendered, /* i : number of samples rendered */
+ float input_f_in[][L_FRAME48k], /* i : separated object signal */
+ float *output_f[], /* o : rendered time signal */
+ const int16_t subframes_rendered /* i : number of subframes rendered */
)
{
VBAP_HANDLE hVBAPdata;
@@ -474,26 +463,14 @@ void ivas_omasa_separate_object_render_jbm(
num_objects = st_ivas->nchan_ism;
}
- offsetSamples = slots_rendered * hSpatParamRendCom->slot_size;
-
for ( j = 0; j < nchan_out_woLFE + num_lfe; j++ )
{
output_f_local[j] = output_f[j];
}
- if ( st_ivas->hDecoderConfig->Opt_tsm )
- {
- for ( obj = 0; obj < num_objects; obj++ )
- {
- input_f[obj] = &st_ivas->hTcBuffer->tc[obj + 2][offsetSamples];
- }
- }
- else
+ for ( obj = 0; obj < num_objects; obj++ )
{
- for ( obj = 0; obj < num_objects; obj++ )
- {
- input_f[obj] = input_f_in[obj];
- }
+ input_f[obj] = input_f_in[obj];
}
slots_to_render = nSamplesRendered / hSpatParamRendCom->slot_size;
diff --git a/lib_dec/ivas_jbm_dec.c b/lib_dec/ivas_jbm_dec.c
index 1c9870433a9d271f0cf647a5e9a020f1a4783b37..e30f5aebebdd90c9d04b763b2d29e55dd752505f 100644
--- a/lib_dec/ivas_jbm_dec.c
+++ b/lib_dec/ivas_jbm_dec.c
@@ -763,7 +763,7 @@ void ivas_jbm_dec_feed_tc_to_renderer(
float tmp_buf[MAX_JBM_L_FRAME48k];
float *p_data_f[FOA_CHANNELS + MAX_NUM_OBJECTS];
int16_t n, n_render_timeslots, n_ch_cldfb;
- int16_t ch;
+ int16_t ch, offset, len_offset;
DECODER_TC_BUFFER_HANDLE hTcBuffer;
hTcBuffer = st_ivas->hTcBuffer;
@@ -781,6 +781,20 @@ void ivas_jbm_dec_feed_tc_to_renderer(
n_ch_full_copy = min( hTcBuffer->nchan_transport_jbm, hTcBuffer->nchan_buffer_full );
n_ch_res_copy = hTcBuffer->nchan_transport_jbm - hTcBuffer->nchan_buffer_full;
+ /* buffers are shared between 'hTcBuffer->tc[]' and 'p_output_f[]':
+ in case of 'length(hTcBuffer->tc[]) < length(p_output_f[])', reset of TC buffers
+ pointers is needed after ivas_buffer_interleaved_to_deinterleaved() */
+ len_offset = NS2SA( st_ivas->hDecoderConfig->output_Fs, MAX_JBM_L_FRAME_NS );
+ if ( len_offset < L_FRAME48k )
+ {
+ offset = 0;
+ for ( ch = 0; ch < max( hTcBuffer->nchan_transport_jbm, hTcBuffer->nchan_buffer_full ); ch++ )
+ {
+ hTcBuffer->tc[ch] = &hTcBuffer->tc_buffer[offset];
+ offset += len_offset;
+ }
+ }
+
for ( ch = 0; ch < n_ch_full_copy; ch++ )
{
mvr2r( hTcBuffer->tc[ch], tmp_buf, nSamplesForRendering );
@@ -1122,6 +1136,10 @@ ivas_error ivas_jbm_dec_render(
else if ( st_ivas->renderer_type == RENDERER_BINAURAL_PARAMETRIC || st_ivas->renderer_type == RENDERER_BINAURAL_PARAMETRIC_ROOM )
{
ivas_dirac_dec_binaural_render( st_ivas, nSamplesAskedLocal, nSamplesRendered, nSamplesAvailableNext, nchan_remapped, p_output );
+ for ( n = 0; n < st_ivas->hDecoderConfig->nchan_out; n++ )
+ {
+ v_multc( p_output[n], 2.0f, p_output[n], *nSamplesRendered );
+ }
}
else
{
@@ -1144,6 +1162,10 @@ ivas_error ivas_jbm_dec_render(
set_zero( p_output[n], *nSamplesRendered );
}
}
+ for ( n = 0; n < st_ivas->hDecoderConfig->nchan_out; n++ )
+ {
+ v_multc( p_output[n], 2.0f, p_output[n], *nSamplesRendered );
+ }
}
}
else if ( st_ivas->ivas_format == MC_FORMAT )
@@ -1376,7 +1398,7 @@ ivas_error ivas_jbm_dec_flush_renderer(
int16_t n_slots_still_available;
int16_t n_samples_to_render;
DECODER_TC_BUFFER_HANDLE hTcBuffer;
- float *p_output[MAX_CICP_CHANNELS + MAX_NUM_OBJECTS];
+ float *p_output[MAX_LS_CHANNELS + MAX_NUM_OBJECTS];
if ( !st_ivas->hDecoderConfig->Opt_tsm )
{
@@ -1504,17 +1526,45 @@ ivas_error ivas_jbm_dec_flush_renderer(
if ( ism_mode_old == ISM_MASA_MODE_DISC )
{
float *tc_local[MAX_NUM_OBJECTS];
+ int16_t last_dirac_md_idx;
+ uint16_t nSamplesAvailableNext;
+ ISM_MODE ism_mode_orig;
+ RENDERER_TYPE renderer_type_orig;
+ int32_t ivas_total_brate;
+ /* copy from ISM delay buffer to the correct place in TCs */
for ( ch_idx = 0; ch_idx < st_ivas->nchan_ism; ch_idx++ )
{
tc_local[ch_idx] = &st_ivas->hTcBuffer->tc[ch_idx + 2][hTcBuffer->n_samples_rendered];
mvr2r( st_ivas->hMasaIsmData->delayBuffer[ch_idx], tc_local[ch_idx], st_ivas->hMasaIsmData->delayBuffer_size );
}
- if ( ( error = ivas_td_binaural_renderer_sf( st_ivas, p_output, hTcBuffer->n_samples_granularity ) ) != IVAS_ERR_OK )
+ /* to render flushed samples, use configuration from the last received frame */
+ ivas_total_brate = st_ivas->hDecoderConfig->ivas_total_brate;
+ renderer_type_orig = st_ivas->renderer_type;
+ ism_mode_orig = st_ivas->ism_mode;
+ st_ivas->ism_mode = ism_mode_old;
+ st_ivas->renderer_type = renderer_type_old;
+ st_ivas->hDecoderConfig->ivas_total_brate = st_ivas->hDecoderConfig->last_ivas_total_brate;
+ last_dirac_md_idx = st_ivas->hSpatParamRendCom->render_to_md_map[st_ivas->hSpatParamRendCom->slots_rendered - 1];
+
+ /* transfer adapted sf info from hTcBuffer to DirAC */
+ st_ivas->hSpatParamRendCom->nb_subframes = 1;
+ st_ivas->hSpatParamRendCom->subframes_rendered = 0;
+ st_ivas->hSpatParamRendCom->subframe_nbslots[0] = JBM_CLDFB_SLOTS_IN_SUBFRAME;
+ st_ivas->hSpatParamRendCom->slots_rendered = 0;
+ st_ivas->hSpatParamRendCom->num_slots = JBM_CLDFB_SLOTS_IN_SUBFRAME;
+ set_s( st_ivas->hSpatParamRendCom->render_to_md_map, last_dirac_md_idx, n_slots_still_available );
+
+ if ( ( error = ivas_omasa_dirac_td_binaural_jbm( st_ivas, (uint16_t) hTcBuffer->n_samples_granularity, nSamplesRendered, &nSamplesAvailableNext, CPE_CHANNELS, p_output ) ) != IVAS_ERR_OK )
{
return error;
}
+
+ /* restore original configuration */
+ st_ivas->ism_mode = ism_mode_orig;
+ st_ivas->renderer_type = renderer_type_orig;
+ st_ivas->hDecoderConfig->ivas_total_brate = ivas_total_brate;
}
}
else if ( st_ivas->ivas_format == SBA_ISM_FORMAT )
@@ -1529,20 +1579,20 @@ ivas_error ivas_jbm_dec_flush_renderer(
RENDERER_TYPE renderer_type_orig;
int32_t ivas_total_brate;
+ /* to render flushed samples, use configuration from the last received frame */
ivas_total_brate = st_ivas->hDecoderConfig->ivas_total_brate;
renderer_type_orig = st_ivas->renderer_type;
ism_mode_orig = st_ivas->ism_mode;
st_ivas->ism_mode = ism_mode_old;
st_ivas->renderer_type = renderer_type_old;
st_ivas->hDecoderConfig->ivas_total_brate = st_ivas->hDecoderConfig->last_ivas_total_brate;
-
last_spar_md_idx = st_ivas->hSpar->render_to_md_map[st_ivas->hSpar->slots_rendered - 1];
last_dirac_md_idx = st_ivas->hSpatParamRendCom->render_to_md_map[st_ivas->hSpatParamRendCom->slots_rendered - 1];
#ifdef DEBUGGING
assert( st_ivas->renderer_type == RENDERER_BINAURAL_FASTCONV );
#endif
- /* copy from ISM delay buffer to the correct place in tcs */
+ /* copy from ISM delay buffer to the correct place in TCs */
for ( ch_idx = 0; ch_idx < st_ivas->nchan_ism; ch_idx++ )
{
tc_local[ch_idx] = &st_ivas->hTcBuffer->tc[ch_idx][hTcBuffer->n_samples_rendered];
@@ -1571,6 +1621,7 @@ ivas_error ivas_jbm_dec_flush_renderer(
return error;
}
+ /* restore original configuration */
st_ivas->ism_mode = ism_mode_orig;
st_ivas->renderer_type = renderer_type_orig;
st_ivas->hDecoderConfig->ivas_total_brate = ivas_total_brate;
@@ -2049,6 +2100,7 @@ static ivas_error ivas_jbm_dec_tc_audio_allocate(
if ( Opt_tsm )
{
n_samp_full = ( NS2SA( output_Fs, MAX_JBM_L_FRAME_NS ) );
+ n_samp_full = max( n_samp_full, L_FRAME48k ); /* buffers are shared between 'hTcBuffer->tc[]' and 'p_output_f[]': ensure minimal length */
n_samp_residual = hTcBuffer->n_samples_granularity - 1;
}
else
@@ -2108,6 +2160,8 @@ static ivas_error ivas_jbm_dec_tc_audio_allocate(
}
}
+ hTcBuffer->tc_buffer2 = NULL;
+
return IVAS_ERR_OK;
}
@@ -2145,6 +2199,12 @@ static void ivas_jbm_dec_tc_audio_deallocate(
hTcBuffer->tc_buffer_old[ch_idx] = NULL;
}
}
+
+ if ( hTcBuffer->tc_buffer2 != NULL )
+ {
+ free( hTcBuffer->tc_buffer2 );
+ hTcBuffer->tc_buffer2 = NULL;
+ }
}
return;
@@ -2224,11 +2284,31 @@ ivas_error ivas_jbm_dec_tc_buffer_reconfigure(
const int16_t n_samples_granularity /* i : new granularity of the renderer/buffer */
)
{
+ int16_t ch_idx, num_tc_buffer_mem, n_samples_still_available;
+ float tc_buffer_mem[MAX_INTERN_CHANNELS][L_FRAME48k / MAX_PARAM_SPATIAL_SUBFRAMES - 1];
ivas_error error;
DECODER_TC_BUFFER_HANDLE hTcBuffer;
hTcBuffer = st_ivas->hTcBuffer;
+ num_tc_buffer_mem = 0;
+ n_samples_still_available = 0;
+
+ if ( st_ivas->hDecoderConfig->Opt_tsm )
+ {
+ /* save samples of the TC buffer from the previous frame */
+ num_tc_buffer_mem = min( hTcBuffer->nchan_transport_internal, nchan_transport_internal );
+ n_samples_still_available = hTcBuffer->n_samples_buffered - hTcBuffer->n_samples_rendered;
+
+ /* what is remaining from last frame needs always be smaller than the new granularity */
+ assert( n_samples_still_available < n_samples_granularity );
+
+ for ( ch_idx = 0; ch_idx < num_tc_buffer_mem; ch_idx++ )
+ {
+ mvr2r( hTcBuffer->tc_buffer_old[ch_idx] + hTcBuffer->n_samples_flushed, tc_buffer_mem[ch_idx], n_samples_still_available );
+ }
+ }
+
/* if granularity changes, adapt subframe_nb_slots */
if ( n_samples_granularity != hTcBuffer->n_samples_granularity )
{
@@ -2268,11 +2348,6 @@ ivas_error ivas_jbm_dec_tc_buffer_reconfigure(
hTcBuffer->nchan_buffer_full = nchan_full;
hTcBuffer->n_samples_granularity = n_samples_granularity;
-#ifdef DEBUGGING
- /* what is remaining from last frames needs always be smaller than n_samples_granularity */
- assert( ( hTcBuffer->n_samples_buffered - hTcBuffer->n_samples_rendered ) < n_samples_granularity );
-#endif
-
/* reallocate TC audio buffers */
ivas_jbm_dec_tc_audio_deallocate( hTcBuffer );
@@ -2282,6 +2357,12 @@ ivas_error ivas_jbm_dec_tc_buffer_reconfigure(
return error;
}
+ /* propagate samples of the TC buffer from the previous frame */
+ for ( ch_idx = 0; ch_idx < num_tc_buffer_mem; ch_idx++ )
+ {
+ mvr2r( tc_buffer_mem[ch_idx], hTcBuffer->tc_buffer_old[ch_idx], n_samples_still_available );
+ }
+
return IVAS_ERR_OK;
}
@@ -2320,7 +2401,7 @@ static void ivas_jbm_dec_tc_buffer_playout(
for ( ch_idx = 0; ch_idx < st_ivas->hTcBuffer->nchan_transport_jbm; ch_idx++ )
{
- mvr2r( st_ivas->hTcBuffer->tc[ch_idx] + st_ivas->hTcBuffer->n_samples_rendered, output[ch_idx], *nSamplesRendered );
+ output[ch_idx] = st_ivas->hTcBuffer->tc[ch_idx] + st_ivas->hTcBuffer->n_samples_rendered;
}
st_ivas->hTcBuffer->subframes_rendered = last_sf;
diff --git a/lib_dec/ivas_lfe_dec.c b/lib_dec/ivas_lfe_dec.c
index eed016b09f65566a60f4f0e17d3a4d63fbaa1e8f..6dfe76f9652331c0354d052ebe052e20fe4b6b75 100644
--- a/lib_dec/ivas_lfe_dec.c
+++ b/lib_dec/ivas_lfe_dec.c
@@ -380,7 +380,7 @@ ivas_error ivas_create_lfe_dec(
LFE_DEC_HANDLE hLFE;
float lfe_addl_delay_s;
int16_t i, j;
- int16_t add_delay_sa;
+ float lfe_block_delay_s;
low_pass_delay_dec_out = 0;
block_offset_s = 0;
@@ -418,7 +418,7 @@ ivas_error ivas_create_lfe_dec(
hLFE->cum_freq_models[1][3] = &ivas_str_lfe_freq_models.entropy_coder_model_coarse_sg4;
/* delay calculation */
- hLFE->lfe_block_delay_s = ( IVAS_LFE_FADE_NS / 1000000000.f ) + ivas_lfe_lpf_delay[IVAS_FILTER_ORDER_4 - 3];
+ lfe_block_delay_s = ( IVAS_LFE_FADE_NS / 1000000000.f ) + ivas_lfe_lpf_delay[IVAS_FILTER_ORDER_4 - 3];
block_offset_s = BLOCK_OFFSET_MS * 0.001f;
filt_order = 0;
@@ -426,21 +426,21 @@ ivas_error ivas_create_lfe_dec(
if ( ( delay_ns / 1000000000.f ) > ivas_lfe_lpf_delay[IVAS_FILTER_ORDER_4 - 3] )
{
filt_order = 4;
- low_pass_delay_dec_out = ivas_lfe_lpf_delay[IVAS_FILTER_ORDER_4 - 3] * 1000000000.f;
+ low_pass_delay_dec_out = ivas_lfe_lpf_delay[IVAS_FILTER_ORDER_4 - 3];
ivas_create_lfe_lpf_dec( &( hLFE->filter_state ), output_Fs );
}
hLFE->filter_state.order = filt_order;
- hLFE->lfe_block_delay_s = hLFE->lfe_block_delay_s + low_pass_delay_dec_out;
+ lfe_block_delay_s = lfe_block_delay_s + low_pass_delay_dec_out;
hLFE->lfe_prior_buf_len = NS2SA( output_Fs, IVAS_LFE_FADE_NS );
hLFE->bfi_count = 0;
+ block_offset_s += delay_ns / 1000000000.f;
+ lfe_addl_delay_s = block_offset_s - lfe_block_delay_s;
- lfe_addl_delay_s = block_offset_s - hLFE->lfe_block_delay_s;
lfe_addl_delay_s = max( 0.0f, lfe_addl_delay_s );
- add_delay_sa = (int16_t) roundf( (float) delay_ns * output_Fs / 1000000000.f );
- hLFE->lfe_addl_delay = (int16_t) ( lfe_addl_delay_s * output_Fs ) + add_delay_sa;
- hLFE->lfe_block_delay_s += lfe_addl_delay_s + add_delay_sa / output_Fs;
+ hLFE->lfe_addl_delay = (int16_t) ( lfe_addl_delay_s * output_Fs );
+ hLFE->delay_ns = delay_ns;
if ( hLFE->lfe_addl_delay > 0 )
{
diff --git a/lib_dec/ivas_masa_dec.c b/lib_dec/ivas_masa_dec.c
index b698395d75f7b4a5b55d52d6c09e34f86a1f8ad1..f44f872abd1296a83c4987726eac0d78577c7cae 100644
--- a/lib_dec/ivas_masa_dec.c
+++ b/lib_dec/ivas_masa_dec.c
@@ -1320,7 +1320,7 @@ ivas_error ivas_masa_dec_reconfigure(
Decoder_State **sts;
int32_t ivas_total_brate, last_ivas_total_brate;
int16_t numCldfbAnalyses_old, numCldfbSyntheses_old;
- int16_t nchan_out_buff_old, nchan_out_buff;
+ int16_t nchan_out_buff;
ivas_error error;
int16_t pos_idx;
int32_t ism_total_brate;
@@ -1328,8 +1328,6 @@ ivas_error ivas_masa_dec_reconfigure(
ivas_total_brate = st_ivas->hDecoderConfig->ivas_total_brate;
last_ivas_total_brate = st_ivas->hDecoderConfig->last_ivas_total_brate;
- nchan_out_buff_old = ivas_get_nchan_buffers_dec( st_ivas, -1, -1 );
-
/* Copy state to TC buffer if granularity matches and we are not in OMASA EXT rendering mode */
if ( st_ivas->hSpatParamRendCom != NULL && st_ivas->hSpatParamRendCom->slot_size == st_ivas->hTcBuffer->n_samples_granularity && st_ivas->hDecoderConfig->output_config != IVAS_AUDIO_CONFIG_EXTERNAL )
{
@@ -1474,6 +1472,10 @@ ivas_error ivas_masa_dec_reconfigure(
ivas_masa_set_elements( ivas_total_brate, st_ivas->mc_mode, st_ivas->nchan_transport, st_ivas->hQMetaData, &tmp, &tmp, &tmp, st_ivas->ivas_format, st_ivas->ism_mode, ism_total_brate );
+ /*-----------------------------------------------------------------*
+ * JBM TC buffers
+ *-----------------------------------------------------------------*/
+
{
int16_t tc_nchan_to_allocate;
int16_t tc_nchan_transport;
@@ -1499,6 +1501,25 @@ ivas_error ivas_masa_dec_reconfigure(
tc_nchan_to_allocate = 2 * BINAURAL_CHANNELS;
}
}
+#ifdef NONBE_1321_JBM_ASSERT_BITRATE_SWITCHING
+ if ( st_ivas->ivas_format == MASA_ISM_FORMAT && st_ivas->renderer_type == RENDERER_BINAURAL_PARAMETRIC && st_ivas->ism_mode == ISM_MASA_MODE_DISC )
+ {
+ if ( n_samples_granularity > st_ivas->hTcBuffer->n_samples_granularity )
+ {
+ if ( ( error = ivas_jbm_dec_set_discard_samples( st_ivas ) ) != IVAS_ERR_OK )
+ {
+ return error;
+ }
+ }
+ }
+ else if ( st_ivas->renderer_type == RENDERER_BINAURAL_PARAMETRIC && st_ivas->ism_mode != ISM_MASA_MODE_DISC )
+ {
+ if ( n_samples_granularity < st_ivas->hTcBuffer->n_samples_granularity )
+ {
+ /* flush already done in IVAS_DEC_ReadFormat() */
+ }
+ }
+#endif
}
else if ( st_ivas->nchan_transport == 1 && ( st_ivas->renderer_type == RENDERER_DIRAC && st_ivas->hDirACRend->synthesisConf == DIRAC_SYNTHESIS_GAIN_SHD ) )
{
@@ -1544,7 +1565,7 @@ ivas_error ivas_masa_dec_reconfigure(
if ( st_ivas->ivas_format == MASA_FORMAT && st_ivas->last_ivas_format == MASA_FORMAT ) /* note: switching with OMASA is addressed in ivas_omasa_dec_config() */
{
nchan_out_buff = ivas_get_nchan_buffers_dec( st_ivas, -1, -1 );
- if ( ( error = ivas_output_buff_dec( st_ivas->p_output_f, nchan_out_buff_old, nchan_out_buff ) ) != IVAS_ERR_OK )
+ if ( ( error = ivas_output_buff_dec( st_ivas->p_output_f, nchan_out_buff, st_ivas->hDecoderConfig->Opt_tsm, st_ivas->hTcBuffer ) ) != IVAS_ERR_OK )
{
return error;
}
diff --git a/lib_dec/ivas_mc_param_dec.c b/lib_dec/ivas_mc_param_dec.c
index 2fa3ddb451cebc8beacef39c2d8ceca21aaba01f..b43af8b70b43af306af68c27eb5183e841b59b84 100644
--- a/lib_dec/ivas_mc_param_dec.c
+++ b/lib_dec/ivas_mc_param_dec.c
@@ -78,7 +78,7 @@ static void ivas_param_mc_dec_init( PARAM_MC_DEC_HANDLE hParamMC, const int16_t
static void param_mc_protoSignalComputation( float *RealBuffer, float *ImagBuffer, float *proto_frame_f, const PARAM_MC_DIFF_PROTO_INFO *diff_proto_info, const int16_t num_freq_bands );
-static void ivas_param_mc_dec_copy_diffuse_proto( PARAM_MC_DEC_HANDLE hParamMC, float Cldfb_buffer_real[MAX_CICP_CHANNELS][PARAM_MC_MAX_NSLOTS_IN_SUBFRAME][CLDFB_NO_CHANNELS_MAX], float Cldfb_buffer_imag[MAX_CICP_CHANNELS][PARAM_MC_MAX_NSLOTS_IN_SUBFRAME][CLDFB_NO_CHANNELS_MAX], const int16_t nY, const int16_t slot_idx );
+static void ivas_param_mc_dec_copy_diffuse_proto( PARAM_MC_DEC_HANDLE hParamMC, float Cldfb_buffer_real[MAX_LS_CHANNELS][PARAM_MC_MAX_NSLOTS_IN_SUBFRAME][CLDFB_NO_CHANNELS_MAX], float Cldfb_buffer_imag[MAX_LS_CHANNELS][PARAM_MC_MAX_NSLOTS_IN_SUBFRAME][CLDFB_NO_CHANNELS_MAX], const int16_t nY, const int16_t slot_idx );
static int16_t ivas_param_mc_range_decoder_LC( uint16_t *bit_buffer, int16_t *x, int16_t *BER_detect, const int16_t sz_seq, const int16_t sz_alphabet, const uint16_t *cft, const uint16_t *sft, const int16_t tot_shift, const int16_t nbbits );
@@ -114,7 +114,7 @@ ivas_error ivas_param_mc_dec_open(
PARAM_MC_DEC_HANDLE hParamMC;
int16_t nchan_out_transport;
int16_t nchan_out_cov;
- float proto_matrix[MAX_CICP_CHANNELS * PARAM_MC_MAX_TRANSPORT_CHANS];
+ float proto_matrix[MAX_LS_CHANNELS * PARAM_MC_MAX_TRANSPORT_CHANS];
float proto_mtx_norm;
int16_t max_param_band_residual;
uint16_t config_index;
@@ -556,7 +556,7 @@ ivas_error ivas_param_mc_dec_reconfig(
PARAM_MC_DEC_HANDLE hParamMC;
int16_t nchan_out_transport;
int16_t nchan_out_cov;
- float proto_matrix[MAX_CICP_CHANNELS * PARAM_MC_MAX_TRANSPORT_CHANS];
+ float proto_matrix[MAX_LS_CHANNELS * PARAM_MC_MAX_TRANSPORT_CHANS];
float proto_mtx_norm;
int16_t max_param_band_residual;
uint16_t config_index;
@@ -892,9 +892,9 @@ ivas_error ivas_param_mc_dec_reconfig(
{
DIRAC_OUTPUT_SYNTHESIS_COV_STATE cov_state_old = hParamMC->h_output_synthesis_cov_state;
DIRAC_OUTPUT_SYNTHESIS_PARAMS params_old = hParamMC->h_output_synthesis_params;
- float tmp_buf[MAX_CICP_CHANNELS * MAX_CICP_CHANNELS];
+ float tmp_buf[MAX_LS_CHANNELS * MAX_LS_CHANNELS];
- set_zero( tmp_buf, MAX_CICP_CHANNELS * MAX_CICP_CHANNELS );
+ set_zero( tmp_buf, MAX_LS_CHANNELS * MAX_LS_CHANNELS );
/* output synthesis */
if ( ( error = ivas_dirac_dec_output_synthesis_cov_open( &( hParamMC->h_output_synthesis_params ), &( hParamMC->h_output_synthesis_cov_state ), hParamMC->max_band_decorr, PARAM_MC_MAX_NSLOTS,
@@ -1393,7 +1393,7 @@ void ivas_param_mc_dec_prepare_renderer(
push_wmops( "param_mc_dec_digest_tc" );
- set_s( channel_active, 0, MAX_CICP_CHANNELS );
+ set_s( channel_active, 0, MAX_LS_CHANNELS );
nchan_transport = st_ivas->nchan_transport;
nchan_out_transport = st_ivas->hTransSetup.nchan_out_woLFE + st_ivas->hTransSetup.num_lfe;
@@ -1562,7 +1562,7 @@ void ivas_param_mc_dec_render(
float Cldfb_RealBuffer_Binaural[MAX_HEAD_ROT_POSES][BINAURAL_CHANNELS][PARAM_MC_MAX_NSLOTS_IN_SUBFRAME][CLDFB_NO_CHANNELS_MAX];
float Cldfb_ImagBuffer_Binaural[MAX_HEAD_ROT_POSES][BINAURAL_CHANNELS][PARAM_MC_MAX_NSLOTS_IN_SUBFRAME][CLDFB_NO_CHANNELS_MAX];
/*Decorrelator*/
- float onset_filter[MAX_CICP_CHANNELS * CLDFB_NO_CHANNELS_MAX];
+ float onset_filter[MAX_LS_CHANNELS * CLDFB_NO_CHANNELS_MAX];
/* format converter */
int16_t channel_active[MAX_OUTPUT_CHANNELS];
uint16_t nband_synth, nbands_to_zero;
@@ -1574,7 +1574,7 @@ void ivas_param_mc_dec_render(
push_wmops( "param_mc_dec_render" );
- set_s( channel_active, 0, MAX_CICP_CHANNELS );
+ set_s( channel_active, 0, MAX_LS_CHANNELS );
nchan_transport = st_ivas->nchan_transport;
nchan_out_transport = st_ivas->hTransSetup.nchan_out_woLFE + st_ivas->hTransSetup.num_lfe;
nchan_out_init = nchan_out_transport;
@@ -1980,11 +1980,11 @@ static void param_mc_protoSignalComputation(
*------------------------------------------------------------------------*/
static void ivas_param_mc_dec_copy_diffuse_proto(
- PARAM_MC_DEC_HANDLE hParamMC, /* i : Parametric MC handle */
- float Cldfb_buffer_real[MAX_CICP_CHANNELS][PARAM_MC_MAX_NSLOTS_IN_SUBFRAME][CLDFB_NO_CHANNELS_MAX], /* o : CLDFB buffer used in the final synthesis (real part) */
- float Cldfb_buffer_imag[MAX_CICP_CHANNELS][PARAM_MC_MAX_NSLOTS_IN_SUBFRAME][CLDFB_NO_CHANNELS_MAX], /* o : CLDFB buffer used in the final synthesis (imaginary part) */
- const int16_t nY, /* i : number of decorrelated channels */
- const int16_t slot_idx /* i : current time slot index */
+ PARAM_MC_DEC_HANDLE hParamMC, /* i : Parametric MC handle */
+ float Cldfb_buffer_real[MAX_LS_CHANNELS][PARAM_MC_MAX_NSLOTS_IN_SUBFRAME][CLDFB_NO_CHANNELS_MAX], /* o : CLDFB buffer used in the final synthesis (real part) */
+ float Cldfb_buffer_imag[MAX_LS_CHANNELS][PARAM_MC_MAX_NSLOTS_IN_SUBFRAME][CLDFB_NO_CHANNELS_MAX], /* o : CLDFB buffer used in the final synthesis (imaginary part) */
+ const int16_t nY, /* i : number of decorrelated channels */
+ const int16_t slot_idx /* i : current time slot index */
)
{
int16_t k, l;
@@ -2223,18 +2223,18 @@ static void ivas_param_mc_get_mixing_matrices(
)
{
float Cx[PARAM_MC_MAX_TRANSPORT_CHANS * PARAM_MC_MAX_TRANSPORT_CHANS];
- float Cy[MAX_CICP_CHANNELS * MAX_CICP_CHANNELS];
- float Cy_diag[MAX_CICP_CHANNELS];
- float Cr[MAX_CICP_CHANNELS * MAX_CICP_CHANNELS];
- float Cproto_diag[MAX_CICP_CHANNELS];
- float Cproto[MAX_CICP_CHANNELS * MAX_CICP_CHANNELS];
- float mat_mult_buffer1[MAX_CICP_CHANNELS * MAX_CICP_CHANNELS];
+ float Cy[MAX_LS_CHANNELS * MAX_LS_CHANNELS];
+ float Cy_diag[MAX_LS_CHANNELS];
+ float Cr[MAX_LS_CHANNELS * MAX_LS_CHANNELS];
+ float Cproto_diag[MAX_LS_CHANNELS];
+ float Cproto[MAX_LS_CHANNELS * MAX_LS_CHANNELS];
+ float mat_mult_buffer1[MAX_LS_CHANNELS * MAX_LS_CHANNELS];
float *Cx_state;
float *Cx_old_state;
- float Cy_state[MAX_CICP_CHANNELS * MAX_CICP_CHANNELS];
+ float Cy_state[MAX_LS_CHANNELS * MAX_LS_CHANNELS];
float *Cy_old_state;
int16_t nY_band;
- float proto_matrix_noLFE[PARAM_MC_MAX_TRANSPORT_CHANS * MAX_CICP_CHANNELS];
+ float proto_matrix_noLFE[PARAM_MC_MAX_TRANSPORT_CHANS * MAX_LS_CHANNELS];
float *proto_matrix_ptr;
int16_t num_lfe_bands;
int16_t brange[2];
@@ -2242,15 +2242,15 @@ static void ivas_param_mc_get_mixing_matrices(
int16_t ch_idx1, ch_idx2, lfe_idx1, lfe_idx2;
float *ptrMM;
float *ptrMM_out;
- float Cy_full[MAX_CICP_CHANNELS * MAX_CICP_CHANNELS];
- float mixing_matrix_local[MAX_CICP_CHANNELS * PARAM_MC_MAX_TRANSPORT_CHANS];
- float mixing_matrix_res_local[MAX_CICP_CHANNELS * MAX_CICP_CHANNELS];
+ float Cy_full[MAX_LS_CHANNELS * MAX_LS_CHANNELS];
+ float mixing_matrix_local[MAX_LS_CHANNELS * PARAM_MC_MAX_TRANSPORT_CHANS];
+ float mixing_matrix_res_local[MAX_LS_CHANNELS * MAX_LS_CHANNELS];
int16_t remove_lfe;
int16_t lfe_indices[PARAM_MC_LOCAL_SZ_LFE_MAP];
- set_zero( Cproto, MAX_CICP_CHANNELS * MAX_CICP_CHANNELS );
- set_zero( mat_mult_buffer1, MAX_CICP_CHANNELS * MAX_CICP_CHANNELS );
- set_zero( proto_matrix_noLFE, PARAM_MC_MAX_TRANSPORT_CHANS * MAX_CICP_CHANNELS );
+ set_zero( Cproto, MAX_LS_CHANNELS * MAX_LS_CHANNELS );
+ set_zero( mat_mult_buffer1, MAX_LS_CHANNELS * MAX_LS_CHANNELS );
+ set_zero( proto_matrix_noLFE, PARAM_MC_MAX_TRANSPORT_CHANS * MAX_LS_CHANNELS );
nY_band = nY_cov;
num_lfe_bands = 0;
@@ -2270,7 +2270,7 @@ static void ivas_param_mc_get_mixing_matrices(
lfe_indices[hSynthesisOutputSetup->num_lfe + 1] = nY_cov;
proto_matrix_ptr = &proto_matrix_noLFE[0];
proto_matrix_ptr_in = &hParamMC->h_output_synthesis_params.proto_matrix[0];
- set_zero( proto_matrix_noLFE, PARAM_MC_MAX_TRANSPORT_CHANS * MAX_CICP_CHANNELS );
+ set_zero( proto_matrix_noLFE, PARAM_MC_MAX_TRANSPORT_CHANS * MAX_LS_CHANNELS );
for ( ch_idx1 = 0; ch_idx1 < nX; ch_idx1++ )
{
@@ -2593,12 +2593,12 @@ static void ivas_param_mc_dequantize_cov(
if ( synth_conf == PARAM_MC_SYNTH_LS_CONV_COV )
{
/* Cy = dmx*Cy*dmx' */
- float mat_mult_buffer1[MAX_CICP_CHANNELS * MAX_CICP_CHANNELS];
- float target_ch_ener[MAX_CICP_CHANNELS];
- float dmx_ch_ener[MAX_CICP_CHANNELS];
+ float mat_mult_buffer1[MAX_LS_CHANNELS * MAX_LS_CHANNELS];
+ float target_ch_ener[MAX_LS_CHANNELS];
+ float dmx_ch_ener[MAX_LS_CHANNELS];
- set_zero( target_ch_ener, MAX_CICP_CHANNELS );
- set_zero( dmx_ch_ener, MAX_CICP_CHANNELS );
+ set_zero( target_ch_ener, MAX_LS_CHANNELS );
+ set_zero( dmx_ch_ener, MAX_LS_CHANNELS );
matrix_product( hParamMC->ls_conv_dmx_matrix, nY_cov, nY_int, 0,
Cy_state_int, nY_int, nY_int, 0,
@@ -2709,7 +2709,7 @@ static ivas_error param_mc_get_diff_proto_info(
PARAM_MC_DIFF_PROTO_INFO *p_diff_proto_info /* o : generated diffuse prototype info */
)
{
- float proto_fac[MAX_CICP_CHANNELS * PARAM_MC_MAX_TRANSPORT_CHANS];
+ float proto_fac[MAX_LS_CHANNELS * PARAM_MC_MAX_TRANSPORT_CHANS];
uint16_t cur_out_ch;
uint16_t cur_diff_proto;
uint16_t cur_transport_ch;
@@ -2717,7 +2717,7 @@ static ivas_error param_mc_get_diff_proto_info(
/* Initializations */
max_num_src_chan = 0;
- set_zero( proto_fac, MAX_CICP_CHANNELS * PARAM_MC_MAX_TRANSPORT_CHANS );
+ set_zero( proto_fac, MAX_LS_CHANNELS * PARAM_MC_MAX_TRANSPORT_CHANS );
if ( ( p_diff_proto_info->proto_index_diff = (int16_t *) malloc( nchan_out_cov * sizeof( int16_t ) ) ) == NULL )
{
return ( IVAS_ERROR( IVAS_ERR_FAILED_ALLOC, "Can not allocate memory for Parametric MC\n" ) );
diff --git a/lib_dec/ivas_mc_paramupmix_dec.c b/lib_dec/ivas_mc_paramupmix_dec.c
index 756f8d68bdf3f4c6d59ae25af105eefe0f53a8ea..8df57ff8ebe185c88a583d51a9ed1b5a38bf447c 100644
--- a/lib_dec/ivas_mc_paramupmix_dec.c
+++ b/lib_dec/ivas_mc_paramupmix_dec.c
@@ -683,6 +683,7 @@ static void ivas_mc_paramupmix_dec_sf(
cldfbAnalysis_ts( &( pPcm_temp[ch][hMCParamUpmix->num_freq_bands * slot_idx] ), Cldfb_RealBuffer[ch][slot_idx], Cldfb_ImagBuffer[ch][slot_idx], hMCParamUpmix->num_freq_bands, st_ivas->cldfbAnaDec[ch] );
}
}
+
for ( ch = 0; ch < MC_PARAMUPMIX_COMBINATIONS; ch++ )
{
ps_pred_process_sf( hMCParamUpmix,
@@ -841,6 +842,7 @@ static void ivas_mc_paramupmix_dec_sf(
hMCParamUpmix->num_freq_bands, st_ivas->cldfbSynDec[ch] );
}
}
+
/* adjust delay of other channels */
noparamupmix_delay = NS2SA( st_ivas->hDecoderConfig->output_Fs, IVAS_FB_DEC_DELAY_NS );
n_samples_rendered = st_ivas->hTcBuffer->subframe_nbslots[st_ivas->hTcBuffer->subframes_rendered] * hMCParamUpmix->num_freq_bands;
@@ -848,22 +850,29 @@ static void ivas_mc_paramupmix_dec_sf(
{
for ( ch = 0; ch < MC_PARAMUPMIX_COMBINATIONS; ch++ )
{
- float tmp_buf[L_SUBFRAME5MS_48k];
- mvr2r( &output_f[ch][n_samples_rendered - noparamupmix_delay], tmp_buf, noparamupmix_delay );
- mvr2r( output_f[ch], &output_f[ch][noparamupmix_delay], n_samples_rendered - noparamupmix_delay );
- mvr2r( hMCParamUpmix->pcm_delay[ch], output_f[ch], noparamupmix_delay );
- mvr2r( tmp_buf, hMCParamUpmix->pcm_delay[ch], noparamupmix_delay );
+ /*delay is handled within LFE decoder*/
+ if ( st_ivas->hIntSetup.index_lfe[0] != ch )
+ {
+ float tmp_buf[L_SUBFRAME5MS_48k];
+ mvr2r( &output_f[ch][n_samples_rendered - noparamupmix_delay], tmp_buf, noparamupmix_delay );
+ mvr2r( output_f[ch], &output_f[ch][noparamupmix_delay], n_samples_rendered - noparamupmix_delay );
+ mvr2r( hMCParamUpmix->pcm_delay[ch], output_f[ch], noparamupmix_delay );
+ mvr2r( tmp_buf, hMCParamUpmix->pcm_delay[ch], noparamupmix_delay );
+ }
}
}
else
{
for ( ch = 0; ch < MC_PARAMUPMIX_COMBINATIONS; ch++ )
{
- float tmp_buf[L_SUBFRAME5MS_48k];
- mvr2r( &output_f[ch][0], tmp_buf, n_samples_rendered );
- mvr2r( hMCParamUpmix->pcm_delay[ch], output_f[ch], n_samples_rendered );
- mvr2r( &hMCParamUpmix->pcm_delay[ch][n_samples_rendered], &hMCParamUpmix->pcm_delay[ch][0], noparamupmix_delay - n_samples_rendered );
- mvr2r( tmp_buf, &hMCParamUpmix->pcm_delay[ch][noparamupmix_delay - n_samples_rendered], n_samples_rendered );
+ if ( st_ivas->hIntSetup.index_lfe[0] != ch )
+ {
+ float tmp_buf[L_SUBFRAME5MS_48k];
+ mvr2r( &output_f[ch][0], tmp_buf, n_samples_rendered );
+ mvr2r( hMCParamUpmix->pcm_delay[ch], output_f[ch], n_samples_rendered );
+ mvr2r( &hMCParamUpmix->pcm_delay[ch][n_samples_rendered], &hMCParamUpmix->pcm_delay[ch][0], noparamupmix_delay - n_samples_rendered );
+ mvr2r( tmp_buf, &hMCParamUpmix->pcm_delay[ch][noparamupmix_delay - n_samples_rendered], n_samples_rendered );
+ }
}
}
}
diff --git a/lib_dec/ivas_mct_dec.c b/lib_dec/ivas_mct_dec.c
index 53be3f8ec719cccbdcbbd01e3e48f8e21127cfaf..3a0ba42df4a8858beaeca8bcd297b08c7ec89585 100644
--- a/lib_dec/ivas_mct_dec.c
+++ b/lib_dec/ivas_mct_dec.c
@@ -212,7 +212,7 @@ ivas_error ivas_mct_dec(
else if ( st_ivas->renderer_type == RENDERER_MC_PARAMMC && ( st_ivas->hDecoderConfig->output_config == IVAS_AUDIO_CONFIG_MONO || st_ivas->hDecoderConfig->output_config == IVAS_AUDIO_CONFIG_STEREO ) )
{
- float *x_all[MAX_CICP_CHANNELS][NB_DIV];
+ float *x_all[MAX_LS_CHANNELS][NB_DIV];
for ( cpe_id = 0; cpe_id < nCPE; cpe_id++ )
{
@@ -732,11 +732,10 @@ static ivas_error ivas_mc_dec_reconfig(
int16_t tc_nchan_tc_new;
int16_t tc_nchan_allocate_new;
int16_t tc_granularity_new;
- int16_t nchan_out_buff_old, nchan_out_buff;
+ int16_t nchan_out_buff;
ivas_total_brate = st_ivas->hDecoderConfig->ivas_total_brate;
nchan_transport_old = st_ivas->nchan_transport;
- nchan_out_buff_old = ivas_get_nchan_buffers_dec( st_ivas, -1, -1 );
last_mc_mode = ivas_mc_mode_select( ivas_mc_map_output_config_to_mc_ls_setup( st_ivas->transport_config ), st_ivas->hDecoderConfig->last_ivas_total_brate ); /* NB: this assumes that LS config remains the same between frames */
/* temporally set the current mc_mode back to the previous one to make sure the following call to
@@ -789,6 +788,25 @@ static ivas_error ivas_mc_dec_reconfig(
}
}
+#ifdef NONBE_1321_JBM_ASSERT_BITRATE_SWITCHING
+ /* JBM: when granularity goes down (e.g. MCT with CREND -> ParamMC with binaural fastconv
+ render what still fits in the new granularity */
+ tc_granularity_new = ivas_jbm_dec_get_render_granularity( st_ivas->renderer_type, RENDERER_DISABLE, st_ivas->hDecoderConfig->output_Fs );
+
+ if ( tc_granularity_new < st_ivas->hTcBuffer->n_samples_granularity )
+ {
+ /* flush already done in IVAS_DEC_ReadFormat() */
+ }
+ /* JBM: when granularity goes up set samples to discard at the beginning of the frame */
+ else if ( tc_granularity_new > st_ivas->hTcBuffer->n_samples_granularity )
+ {
+ if ( ( error = ivas_jbm_dec_set_discard_samples( st_ivas ) ) != IVAS_ERR_OK )
+ {
+ return error;
+ }
+ }
+
+#endif
if ( st_ivas->mc_mode == MC_MODE_MCT )
{
st_ivas->nchan_transport = ivas_mc_ls_setup_get_num_channels( ivas_mc_map_output_config_to_mc_ls_setup( st_ivas->transport_config ) );
@@ -1077,42 +1095,6 @@ static ivas_error ivas_mc_dec_reconfig(
return error;
}
- /*-----------------------------------------------------------------*
- * Allocate the LFE handle that is coded separately after the allocation of the core coders
- *-----------------------------------------------------------------*/
-
- if ( ( st_ivas->mc_mode == MC_MODE_MCT || st_ivas->mc_mode == MC_MODE_PARAMUPMIX ) && st_ivas->hLFE == NULL )
- {
- int32_t delay_ns = st_ivas->binaural_latency_ns;
- if ( st_ivas->hBinRenderer != NULL )
- {
- if ( st_ivas->hBinRenderer->render_lfe )
- {
- /* Account for filterbank delay */
- delay_ns += IVAS_FB_DEC_DELAY_NS;
- }
- else
- {
- delay_ns = 0;
- }
- }
- else
- {
- if ( ( st_ivas->mc_mode == MC_MODE_PARAMUPMIX ) && ( st_ivas->cldfbSynDec[0] != NULL ) )
- {
- delay_ns += IVAS_FB_DEC_DELAY_NS;
- }
- }
-
- if ( ( error = ivas_create_lfe_dec( &st_ivas->hLFE, st_ivas->hDecoderConfig->output_Fs, delay_ns ) ) != IVAS_ERR_OK )
- {
- return error;
- }
-
- set_zero( st_ivas->hLFE->prevsynth_buf, LFE_PLC_BUFLEN );
- set_zero( st_ivas->hLFE->prior_out_buffer, L_FRAME48k );
- }
-
/*-----------------------------------------------------------------*
* Reconfigure renderers
*-----------------------------------------------------------------*/
@@ -1173,7 +1155,7 @@ static ivas_error ivas_mc_dec_reconfig(
if ( ( st_ivas->hCrendWrapper != NULL ) && ( st_ivas->hCrendWrapper->hCrend[0] != NULL ) && ( st_ivas->renderer_type != RENDERER_BINAURAL_MIXER_CONV && st_ivas->renderer_type != RENDERER_BINAURAL_MIXER_CONV_ROOM && ( st_ivas->renderer_type != RENDERER_BINAURAL_OBJECTS_TD || st_ivas->hIntSetup.output_config != IVAS_AUDIO_CONFIG_BINAURAL_ROOM_REVERB ) ) )
{
- ivas_rend_closeCrend( &( st_ivas->hCrendWrapper ), ( st_ivas->hSplitBinRend == NULL ) ? 1 : st_ivas->hSplitBinRend->splitrend.multiBinPoseData.num_poses );
+ ivas_rend_closeCrend( &( st_ivas->hCrendWrapper ) );
}
if ( st_ivas->hBinRendererTd != NULL && ( st_ivas->renderer_type != RENDERER_BINAURAL_OBJECTS_TD ) )
@@ -1267,6 +1249,63 @@ static ivas_error ivas_mc_dec_reconfig(
return error;
}
+
+ /*-----------------------------------------------------------------*
+ * Allocate the LFE handle that is coded separately after the allocation of the core coders
+ *-----------------------------------------------------------------*/
+
+ if ( ( st_ivas->mc_mode == MC_MODE_MCT || st_ivas->mc_mode == MC_MODE_PARAMUPMIX ) )
+ {
+ int32_t delay_ns;
+ if ( st_ivas->hIntSetup.index_lfe[0] != -1 )
+ {
+ delay_ns = st_ivas->binaural_latency_ns;
+ }
+ else
+ {
+ delay_ns = 0;
+ }
+
+ if ( st_ivas->hBinRenderer != NULL )
+ {
+ if ( st_ivas->hBinRenderer->render_lfe )
+ {
+ /* Account for filterbank delay */
+ delay_ns += IVAS_FB_DEC_DELAY_NS;
+ }
+ else
+ {
+ delay_ns = 0;
+ }
+ }
+ else
+ {
+ if ( ( st_ivas->mc_mode == MC_MODE_PARAMUPMIX ) && ( st_ivas->cldfbSynDec[0] != NULL ) )
+ {
+ delay_ns += IVAS_FB_DEC_DELAY_NS;
+ }
+ }
+
+ if ( st_ivas->hLFE != NULL )
+ {
+ if ( st_ivas->hLFE->delay_ns != delay_ns )
+ {
+ ivas_lfe_dec_close( &( st_ivas->hLFE ) );
+ }
+ }
+
+ if ( st_ivas->hLFE == NULL )
+ {
+ if ( ( error = ivas_create_lfe_dec( &st_ivas->hLFE, st_ivas->hDecoderConfig->output_Fs, delay_ns ) ) != IVAS_ERR_OK )
+ {
+ return error;
+ }
+
+ set_zero( st_ivas->hLFE->prevsynth_buf, LFE_PLC_BUFLEN );
+ set_zero( st_ivas->hLFE->prior_out_buffer, L_FRAME48k );
+ }
+ }
+
/*-----------------------------------------------------------------*
* JBM TC buffers
*-----------------------------------------------------------------*/
@@ -1279,7 +1318,9 @@ static ivas_error ivas_mc_dec_reconfig(
tc_nchan_tc_new = ivas_jbm_dec_get_num_tc_channels( st_ivas );
tc_nchan_allocate_new = tc_nchan_tc_new;
tc_nchan_full_new = tc_nchan_tc_new;
+#ifndef NONBE_1321_JBM_ASSERT_BITRATE_SWITCHING
tc_granularity_new = ivas_jbm_dec_get_render_granularity( st_ivas->renderer_type, RENDERER_DISABLE, st_ivas->hDecoderConfig->output_Fs );
+#endif
if ( st_ivas->renderer_type == RENDERER_BINAURAL_PARAMETRIC || st_ivas->renderer_type == RENDERER_BINAURAL_PARAMETRIC_ROOM || st_ivas->renderer_type == RENDERER_STEREO_PARAMETRIC )
{
@@ -1323,6 +1364,7 @@ static ivas_error ivas_mc_dec_reconfig(
return error;
}
}
+
/* transfer subframe info from central tc buffer to ParamMC or McMASA (DirAC) */
if ( st_ivas->hSpatParamRendCom != NULL )
{
@@ -1347,8 +1389,7 @@ static ivas_error ivas_mc_dec_reconfig(
*-----------------------------------------------------------------*/
nchan_out_buff = ivas_get_nchan_buffers_dec( st_ivas, -1, -1 );
-
- if ( ( error = ivas_output_buff_dec( st_ivas->p_output_f, nchan_out_buff_old, nchan_out_buff ) ) != IVAS_ERR_OK )
+ if ( ( error = ivas_output_buff_dec( st_ivas->p_output_f, nchan_out_buff, st_ivas->hDecoderConfig->Opt_tsm, st_ivas->hTcBuffer ) ) != IVAS_ERR_OK )
{
return error;
}
diff --git a/lib_dec/ivas_mdct_core_dec.c b/lib_dec/ivas_mdct_core_dec.c
index d03cc5afd95948289d2c39a66537d6ae69964a25..426be4d02d602a22681f0b102cff880bd55d7bc4 100644
--- a/lib_dec/ivas_mdct_core_dec.c
+++ b/lib_dec/ivas_mdct_core_dec.c
@@ -943,11 +943,7 @@ void ivas_mdct_core_reconstruct(
/* Postfiltering */
post_decoder( st, synth_buf, pit_gain[ch], pitch[ch], x[ch][0], st->p_bpf_noise_buf );
- if ( signal_outFB[ch] )
- {
- mvr2r( synthFB, signal_outFB[ch], st->hTcxDec->L_frameTCX );
- }
-
+ mvr2r( synthFB, signal_outFB[ch], st->hTcxDec->L_frameTCX );
#ifdef DEBUG_PLC_INFO
{
int16_t i;
@@ -1108,7 +1104,17 @@ void ivas_mdct_core_tns_ns(
decoder_tcx_tns( st, L_frame_global[ch], L_spec[ch], L_frame[ch], L_frameTCX[ch], &x[ch][k][0], fUseTns[ch][k], &tnsData[ch][k], bfi, k, 1 );
sns_shape_spectrum( x[ch][k], st->hTcxCfg->psychParamsCurrent, &sns_int_scf[0], st->hTcxCfg->psychParamsCurrent->nBins );
+#ifdef NONBE_FIX_1376_MDCT_CONCEALMENT
+ /*
+ 2025-09-07, mul:
+ in case of PLC, applying SNS up to L_spec might not be enough: In case the transition frame from DTX after an inactive period is lost, L_spec is assumed to represent a regular TCX frame,
+ however, this frame is nevertheless acting as an transition frame as also visible in L_frameTCX; thus, the safer approach to prevent high frequency artifacts is to apply the SNS up to L_frameTCX;
+ in case this is not necessary, x[] is filled with zeros, and the multiplication is not causing any additional harm
+ */
+ v_multc( x[ch][k] + st->hTcxCfg->psychParamsCurrent->nBins, sns_int_scf[FDNS_NPTS - 1], x[ch][k] + st->hTcxCfg->psychParamsCurrent->nBins, max( L_spec[ch], L_frameTCX[ch] ) - st->hTcxCfg->psychParamsCurrent->nBins );
+#else
v_multc( x[ch][k] + st->hTcxCfg->psychParamsCurrent->nBins, sns_int_scf[FDNS_NPTS - 1], x[ch][k] + st->hTcxCfg->psychParamsCurrent->nBins, L_spec[ch] - st->hTcxCfg->psychParamsCurrent->nBins );
+#endif
decoder_tcx_tns( st, L_frame_global[ch], L_spec[ch], L_frame[ch], L_frameTCX[ch], &x[ch][k][0], fUseTns[ch][k], &tnsData[ch][k], bfi, k, 0 );
}
diff --git a/lib_dec/ivas_omasa_dec.c b/lib_dec/ivas_omasa_dec.c
index beaf645fa0d1bfad365e0136c0f1025bd71ab945..279dfe6931b02269e831481f7b4341d9e3bd8b81 100644
--- a/lib_dec/ivas_omasa_dec.c
+++ b/lib_dec/ivas_omasa_dec.c
@@ -200,7 +200,7 @@ ivas_error ivas_omasa_dec_config(
int32_t ivas_total_brate, ism_total_brate, cpe_brate;
ISM_MODE ism_mode_old;
IVAS_FORMAT ivas_format_orig;
- int16_t nchan_out_buff, nchan_out_buff_old;
+ int16_t nchan_out_buff;
ivas_error error;
RENDERER_TYPE old_renderer_type;
@@ -215,8 +215,6 @@ ivas_error ivas_omasa_dec_config(
ivas_format_orig = st_ivas->ivas_format;
st_ivas->ivas_format = st_ivas->last_ivas_format;
ivas_init_dec_get_num_cldfb_instances( st_ivas, &numCldfbAnalyses_old, &numCldfbSyntheses_old );
- nchan_out_buff_old = ivas_get_nchan_buffers_dec( st_ivas, -1, -1 );
-
st_ivas->ivas_format = ivas_format_orig;
nSCE_old = st_ivas->nSCE;
@@ -470,7 +468,7 @@ ivas_error ivas_omasa_dec_config(
*-----------------------------------------------------------------*/
nchan_out_buff = ivas_get_nchan_buffers_dec( st_ivas, -1, -1 );
- if ( ( error = ivas_output_buff_dec( st_ivas->p_output_f, nchan_out_buff_old, nchan_out_buff ) ) != IVAS_ERR_OK )
+ if ( ( error = ivas_output_buff_dec( st_ivas->p_output_f, nchan_out_buff, st_ivas->hDecoderConfig->Opt_tsm, st_ivas->hTcBuffer ) ) != IVAS_ERR_OK )
{
return error;
}
@@ -673,60 +671,55 @@ void ivas_omasa_dirac_rend_jbm(
)
{
int16_t subframes_rendered;
- int16_t slots_rendered;
int16_t n;
float data_separated_objects[MAX_NUM_OBJECTS][L_FRAME48k];
- if ( !st_ivas->hDecoderConfig->Opt_tsm )
+ *nSamplesRendered = min( nSamplesAsked, st_ivas->hTcBuffer->n_samples_available );
+
+ if ( st_ivas->ism_mode == ISM_MASA_MODE_MASA_ONE_OBJ || st_ivas->ism_mode == ISM_MASA_MODE_PARAM_ONE_OBJ )
{
- *nSamplesRendered = min( nSamplesAsked, st_ivas->hTcBuffer->n_samples_available );
+ mvr2r( &output_f[CPE_CHANNELS][st_ivas->hTcBuffer->n_samples_rendered], data_separated_objects[0], *nSamplesRendered );
- if ( st_ivas->ism_mode == ISM_MASA_MODE_MASA_ONE_OBJ || st_ivas->ism_mode == ISM_MASA_MODE_PARAM_ONE_OBJ )
+ if ( !st_ivas->hDecoderConfig->Opt_tsm && st_ivas->ism_mode == ISM_MASA_MODE_PARAM_ONE_OBJ )
{
- mvr2r( &output_f[CPE_CHANNELS][st_ivas->hTcBuffer->n_samples_rendered], data_separated_objects[0], *nSamplesRendered );
-
- if ( st_ivas->ism_mode == ISM_MASA_MODE_PARAM_ONE_OBJ )
+ /* Gain separated object, if edited */
+ for ( n = 0; n < st_ivas->nchan_ism; n++ )
{
- /* Gain separated object, if edited */
- for ( n = 0; n < st_ivas->nchan_ism; n++ )
+ if ( st_ivas->hMasaIsmData->ism_gain_is_edited[n] && st_ivas->hMasaIsmData->idx_separated_ism == n )
{
- if ( st_ivas->hMasaIsmData->ism_gain_is_edited[n] && st_ivas->hMasaIsmData->idx_separated_ism == n )
- {
- v_multc( data_separated_objects[0], st_ivas->hMasaIsmData->gain_ism_edited[n], data_separated_objects[0], *nSamplesRendered );
- }
+ v_multc( data_separated_objects[0], st_ivas->hMasaIsmData->gain_ism_edited[n], data_separated_objects[0], *nSamplesRendered );
}
}
}
- else
+ }
+ else
+ {
+ for ( n = 0; n < st_ivas->nchan_ism; n++ )
{
- for ( n = 0; n < st_ivas->nchan_ism; n++ )
- {
- mvr2r( &output_f[n + CPE_CHANNELS][st_ivas->hTcBuffer->n_samples_rendered], data_separated_objects[n], *nSamplesRendered );
+ mvr2r( &output_f[n + CPE_CHANNELS][st_ivas->hTcBuffer->n_samples_rendered], data_separated_objects[n], *nSamplesRendered );
- /* Gain discrete objects, if edited */
- if ( st_ivas->hMasaIsmData->ism_gain_is_edited[n] )
- {
- v_multc( data_separated_objects[n], st_ivas->hMasaIsmData->gain_ism_edited[n], data_separated_objects[n], *nSamplesRendered );
- }
+ /* Gain discrete objects, if edited */
+ if ( !st_ivas->hDecoderConfig->Opt_tsm && st_ivas->hMasaIsmData->ism_gain_is_edited[n] )
+ {
+ v_multc( data_separated_objects[n], st_ivas->hMasaIsmData->gain_ism_edited[n], data_separated_objects[n], *nSamplesRendered );
}
+ }
- /* Gain MASA part, if edited */
- if ( st_ivas->hMasaIsmData->masa_gain_is_edited )
+ /* Gain MASA part, if edited */
+ if ( !st_ivas->hDecoderConfig->Opt_tsm && st_ivas->hMasaIsmData->masa_gain_is_edited )
+ {
+ for ( int16_t ch = 0; ch < 2; ch++ )
{
- for ( int16_t ch = 0; ch < 2; ch++ )
- {
- v_multc( output_f[ch], st_ivas->hMasaIsmData->gain_masa_edited, output_f[ch], *nSamplesRendered );
- }
+ v_multc( output_f[ch], st_ivas->hMasaIsmData->gain_masa_edited, output_f[ch], *nSamplesRendered );
}
}
}
subframes_rendered = st_ivas->hSpatParamRendCom->subframes_rendered;
- slots_rendered = st_ivas->hSpatParamRendCom->slots_rendered;
ivas_dirac_dec_render( st_ivas, nchan_transport, nSamplesAsked, nSamplesRendered, nSamplesAvailable, output_f );
- ivas_omasa_separate_object_render_jbm( st_ivas, *nSamplesRendered, data_separated_objects, output_f, subframes_rendered, slots_rendered );
+ ivas_omasa_separate_object_render_jbm( st_ivas, *nSamplesRendered, data_separated_objects, output_f, subframes_rendered );
return;
}
diff --git a/lib_dec/ivas_osba_dec.c b/lib_dec/ivas_osba_dec.c
index afa273fdbbe25ec2021be6237c0233efd30f5d57..8f790bde916f0edd19d915d85d3694905b437287 100644
--- a/lib_dec/ivas_osba_dec.c
+++ b/lib_dec/ivas_osba_dec.c
@@ -183,12 +183,11 @@ ivas_error ivas_osba_dirac_td_binaural_jbm(
for ( b = 0; b < num_cldfb_bands; b++ )
{
st_ivas->hSplitBinRend->hMultiBinCldfbData->Cldfb_RealBuffer_Binaural[n][slot_idx_start + slot_idx][b] =
- ( 0.5f * st_ivas->hSplitBinRend->hMultiBinCldfbData->Cldfb_RealBuffer_Binaural[n][slot_idx_start + slot_idx][b] ) +
- ( 0.5f * Cldfb_RealBuffer[b] );
-
+ st_ivas->hSplitBinRend->hMultiBinCldfbData->Cldfb_RealBuffer_Binaural[n][slot_idx_start + slot_idx][b] +
+ Cldfb_RealBuffer[b];
st_ivas->hSplitBinRend->hMultiBinCldfbData->Cldfb_ImagBuffer_Binaural[n][slot_idx_start + slot_idx][b] =
- ( 0.5f * st_ivas->hSplitBinRend->hMultiBinCldfbData->Cldfb_ImagBuffer_Binaural[n][slot_idx_start + slot_idx][b] ) +
- ( 0.5f * Cldfb_ImagBuffer[b] );
+ st_ivas->hSplitBinRend->hMultiBinCldfbData->Cldfb_ImagBuffer_Binaural[n][slot_idx_start + slot_idx][b] +
+ Cldfb_ImagBuffer[b];
}
}
}
@@ -205,7 +204,7 @@ ivas_error ivas_osba_dirac_td_binaural_jbm(
int16_t i;
for ( i = 0; i < nSamplesAsked; i++ )
{
- output_f[n][i] = 0.5f * output_f[channel_offset + n][i] + 0.5f * p_sepobj[n][i];
+ output_f[n][i] = output_f[channel_offset + n][i] + p_sepobj[n][i];
}
}
}
@@ -259,43 +258,35 @@ ivas_error ivas_osba_render_sf(
)
{
int16_t n;
- float output_ism[MAX_OUTPUT_CHANNELS][L_FRAME48k];
- float *p_output_ism[MAX_OUTPUT_CHANNELS];
+ float output_sba[MAX_OUTPUT_CHANNELS][L_FRAME48k];
+ float *p_output_sba[MAX_OUTPUT_CHANNELS];
ivas_error error;
for ( n = 0; n < MAX_OUTPUT_CHANNELS; n++ )
{
- p_output_ism[n] = &output_ism[n][0];
- }
-
- if ( !st_ivas->hDecoderConfig->Opt_tsm )
- {
- int16_t tc_offset;
- tc_offset = st_ivas->hTcBuffer->n_samples_rendered;
- for ( n = 0; n < st_ivas->nchan_ism; n++ )
- {
- mvr2r( &p_output[n][tc_offset], &output_ism[n][tc_offset], nSamplesAsked );
- }
+ p_output_sba[n] = output_sba[n];
}
- if ( ( error = ivas_sba_dec_render( st_ivas, nSamplesAsked, nSamplesRendered, nSamplesAvailableNext, p_output ) ) != IVAS_ERR_OK )
+ if ( ( error = ivas_sba_dec_render( st_ivas, nSamplesAsked, nSamplesRendered, nSamplesAvailableNext, p_output_sba ) ) != IVAS_ERR_OK )
{
return error;
}
if ( st_ivas->renderer_type != RENDERER_BINAURAL_FASTCONV_ROOM )
{
- ivas_ism_render_sf( st_ivas, st_ivas->renderer_type, p_output_ism, *nSamplesRendered );
+ ivas_ism_render_sf( st_ivas, st_ivas->renderer_type, p_output, *nSamplesRendered );
}
for ( n = 0; n < st_ivas->hDecoderConfig->nchan_out; n++ )
{
if ( st_ivas->renderer_type != RENDERER_BINAURAL_FASTCONV_ROOM )
{
- v_add( p_output[n], p_output_ism[n], p_output[n], *nSamplesRendered );
+ v_add( p_output[n], p_output_sba[n], p_output[n], *nSamplesRendered );
+ }
+ else
+ {
+ mvr2r( p_output_sba[n], p_output[n], *nSamplesRendered );
}
-
- v_multc( p_output[n], 0.5f, p_output[n], *nSamplesRendered );
}
return IVAS_ERR_OK;
@@ -338,10 +329,6 @@ void ivas_osba_stereo_add_channels(
}
}
- for ( n = 0; n < nchan_out; n++ )
- {
- v_multc( output_f[n], 0.5f, output_f[n], n_samples_to_render );
- }
return;
}
diff --git a/lib_dec/ivas_out_setup_conversion.c b/lib_dec/ivas_out_setup_conversion.c
index f897ad87b7a6dc00af7ce8d957f49278053b6c0f..08d9d260543fe5d0894ff6fb3dc19b00b8aa6411 100644
--- a/lib_dec/ivas_out_setup_conversion.c
+++ b/lib_dec/ivas_out_setup_conversion.c
@@ -348,7 +348,7 @@ ivas_error ivas_ls_setup_conversion_open(
set_f( hLsSetUpConversion->targetEnergyPrev[chIdx], 0.0f, hLsSetUpConversion->sfbCnt );
set_f( hLsSetUpConversion->dmxEnergyPrev[chIdx], 0.0f, hLsSetUpConversion->sfbCnt );
}
- for ( ; chIdx < MAX_CICP_CHANNELS; chIdx++ )
+ for ( ; chIdx < MAX_LS_CHANNELS; chIdx++ )
{
hLsSetUpConversion->targetEnergyPrev[chIdx] = NULL;
hLsSetUpConversion->dmxEnergyPrev[chIdx] = NULL;
@@ -383,7 +383,7 @@ ivas_error ivas_ls_setup_conversion_open(
return ( IVAS_ERROR( IVAS_ERR_FAILED_ALLOC, "Can not allocate memory for LS configuration Conversion Handle \n" ) );
}
- for ( chIdx = 1; chIdx < MAX_CICP_CHANNELS; chIdx++ )
+ for ( chIdx = 1; chIdx < MAX_LS_CHANNELS; chIdx++ )
{
hLsSetUpConversion->targetEnergyPrev[chIdx] = NULL;
hLsSetUpConversion->dmxEnergyPrev[chIdx] = NULL;
@@ -404,7 +404,7 @@ ivas_error ivas_ls_setup_conversion_open(
set_zero( hLsSetUpConversion->dmxMtx[chIdx], outChannels );
}
- for ( ; chIdx < MAX_CICP_CHANNELS; chIdx++ )
+ for ( ; chIdx < MAX_LS_CHANNELS; chIdx++ )
{
hLsSetUpConversion->dmxMtx[chIdx] = NULL;
}
@@ -464,7 +464,7 @@ void ivas_ls_setup_conversion_close(
return;
}
- for ( idx = 0; idx < MAX_CICP_CHANNELS; idx++ )
+ for ( idx = 0; idx < MAX_LS_CHANNELS; idx++ )
{
if ( ( *hLsSetUpConversion )->dmxMtx[idx] != NULL )
{
@@ -571,17 +571,17 @@ void ivas_ls_setup_conversion_process_mdct(
/* Declaration of all required variables */
int16_t i, bandIdx, chInIdx, chOutIdx, cpe_idx, subFrameIdx, binIdx, idx;
int16_t inChannels, outChannels, num_CPE;
- int16_t transform_type[MAX_CICP_CHANNELS][2];
+ int16_t transform_type[MAX_LS_CHANNELS][2];
int16_t frameSize;
float targetEnergy[MAX_SFB + 2], dmxEnergy[MAX_SFB + 2];
float dmxCoeff;
float dmxSignalReal[L_FRAME48k], dmxSignalImag[L_FRAME48k];
float eqGain;
- float *sig[NB_DIV], *pTmp[NB_DIV], *x[MAX_CICP_CHANNELS][NB_DIV];
+ float *sig[NB_DIV], *pTmp[NB_DIV], *x[MAX_LS_CHANNELS][NB_DIV];
float mdst[L_FRAME48k];
float convertRes[L_FRAME48k];
int16_t start, stop, start_tcx5, stop_tcx5;
- int16_t mct_chan_mode[MAX_CICP_CHANNELS];
+ int16_t mct_chan_mode[MAX_LS_CHANNELS];
/* Declare all handles */
LSSETUP_CONVERSION_HANDLE hLsSetUpConversion;
@@ -812,20 +812,20 @@ void ivas_ls_setup_conversion_process_mdct_param_mc(
int16_t band, bandIdx, num_bands;
int16_t num_CPE;
- int16_t transform_type[MAX_CICP_CHANNELS][2];
+ int16_t transform_type[MAX_LS_CHANNELS][2];
int16_t frameSize;
float targetEnergy[MAX_SFB + 2], dmxEnergy[MAX_SFB + 2];
float eqGain;
- float *sig[MAX_CICP_CHANNELS][NB_DIV], *pTmp[NB_DIV];
- float mdst[MAX_CICP_CHANNELS][L_FRAME48k];
- float convertRes[MAX_CICP_CHANNELS][L_FRAME48k];
+ float *sig[MAX_LS_CHANNELS][NB_DIV], *pTmp[NB_DIV];
+ float mdst[MAX_LS_CHANNELS][L_FRAME48k];
+ float convertRes[MAX_LS_CHANNELS][L_FRAME48k];
int16_t start, stop, start_tcx5, stop_tcx5;
- int16_t mct_chan_mode[MAX_CICP_CHANNELS];
+ int16_t mct_chan_mode[MAX_LS_CHANNELS];
float cx[PARAM_MC_MAX_PARAMETER_BANDS][PARAM_MC_MAX_TRANSPORT_CHANS * PARAM_MC_MAX_TRANSPORT_CHANS];
float cx_imag[PARAM_MC_MAX_PARAMETER_BANDS][PARAM_MC_MAX_TRANSPORT_CHANS * PARAM_MC_MAX_TRANSPORT_CHANS];
- float cy[MAX_CICP_CHANNELS * MAX_CICP_CHANNELS];
+ float cy[MAX_LS_CHANNELS * MAX_LS_CHANNELS];
float real_in_buffer[PARAM_MC_MAX_BANDS_IN_PARAMETER_BAND * PARAM_MC_BAND_TO_MDCT_BAND_RATIO * MAX_TRANSPORT_CHANNELS];
float imag_in_buffer[PARAM_MC_MAX_BANDS_IN_PARAMETER_BAND * PARAM_MC_BAND_TO_MDCT_BAND_RATIO * MAX_TRANSPORT_CHANNELS];
float real_buffer[PARAM_MC_MAX_TRANSPORT_CHANS * PARAM_MC_MAX_TRANSPORT_CHANS];
@@ -970,7 +970,7 @@ void ivas_ls_setup_conversion_process_mdct_param_mc(
for ( bandIdx = 0; bandIdx < hLsSetUpConversion->sfbCnt; bandIdx++ )
{
DMXEne = 0.0f;
- set_zero( cy, MAX_CICP_CHANNELS * MAX_CICP_CHANNELS );
+ set_zero( cy, MAX_LS_CHANNELS * MAX_LS_CHANNELS );
set_zero( Nrqq, MAX_OUTPUT_CHANNELS );
set_zero( target_ch_ener, MAX_OUTPUT_CHANNELS );
@@ -1135,19 +1135,19 @@ void ivas_ls_setup_conversion_process_mdct_param_mc(
void ivas_lssetupconversion_process_param_mc(
Decoder_Struct *st_ivas, /* i/o: LS setup conversion renderer handle */
const int16_t num_timeslots,
- float Cldfb_RealBuffer_InOut[MAX_CICP_CHANNELS][PARAM_MC_MAX_NSLOTS_IN_SUBFRAME][CLDFB_NO_CHANNELS_MAX], /* i/o: LS signals */
- float Cldfb_ImagBuffer_InOut[MAX_CICP_CHANNELS][PARAM_MC_MAX_NSLOTS_IN_SUBFRAME][CLDFB_NO_CHANNELS_MAX], /* i/o: LS signals */
- int16_t channel_active[MAX_CICP_CHANNELS] /* i : bitmap indicating which output channels are active */
+ float Cldfb_RealBuffer_InOut[MAX_LS_CHANNELS][PARAM_MC_MAX_NSLOTS_IN_SUBFRAME][CLDFB_NO_CHANNELS_MAX], /* i/o: LS signals */
+ float Cldfb_ImagBuffer_InOut[MAX_LS_CHANNELS][PARAM_MC_MAX_NSLOTS_IN_SUBFRAME][CLDFB_NO_CHANNELS_MAX], /* i/o: LS signals */
+ int16_t channel_active[MAX_LS_CHANNELS] /* i : bitmap indicating which output channels are active */
)
{
int16_t slotIdx, chOutIdx, chInIdx, bandIdx;
int16_t inChannels, outChannels;
- float targetEnergy[MAX_CICP_CHANNELS][CLDFB_NO_CHANNELS_MAX];
- float dmxEnergy[MAX_CICP_CHANNELS][CLDFB_NO_CHANNELS_MAX];
+ float targetEnergy[MAX_LS_CHANNELS][CLDFB_NO_CHANNELS_MAX];
+ float dmxEnergy[MAX_LS_CHANNELS][CLDFB_NO_CHANNELS_MAX];
float tmpDMXSig, dmxCoeff, tmpReal, tmpImag;
float EQ;
- float Cldfb_RealBuffer_tmp[MAX_CICP_CHANNELS][CLDFB_NO_CHANNELS_MAX];
- float Cldfb_ImagBuffer_tmp[MAX_CICP_CHANNELS][CLDFB_NO_CHANNELS_MAX];
+ float Cldfb_RealBuffer_tmp[MAX_LS_CHANNELS][CLDFB_NO_CHANNELS_MAX];
+ float Cldfb_ImagBuffer_tmp[MAX_LS_CHANNELS][CLDFB_NO_CHANNELS_MAX];
LSSETUP_CONVERSION_HANDLE hLsSetUpConversion;
push_wmops( "LS_Renderer_Process_Param_MC" );
diff --git a/lib_dec/ivas_sba_dec.c b/lib_dec/ivas_sba_dec.c
index 8ddc7f040616d8de7d70a4e2372ebf531c174cdd..72f42e458c882d9682c9c35d05d6860d2b807344 100644
--- a/lib_dec/ivas_sba_dec.c
+++ b/lib_dec/ivas_sba_dec.c
@@ -111,8 +111,7 @@ ivas_error ivas_sba_dec_reconfigure(
int32_t ivas_total_brate;
int32_t last_ivas_total_brate;
int16_t num_channels, num_md_sub_frames;
- int16_t nchan_out_buff, nchan_out_buff_old;
- int16_t sba_analysis_order_old_flush;
+ int16_t nchan_out_buff;
DECODER_CONFIG_HANDLE hDecoderConfig;
ivas_error error;
ISM_MODE ism_mode_old;
@@ -123,15 +122,12 @@ ivas_error ivas_sba_dec_reconfigure(
hDecoderConfig = st_ivas->hDecoderConfig;
ivas_total_brate = hDecoderConfig->ivas_total_brate;
last_ivas_total_brate = st_ivas->last_active_ivas_total_brate;
- sba_analysis_order_old_flush = st_ivas->sba_analysis_order;
/*-----------------------------------------------------------------*
* Set SBA high-level parameters
* Save old SBA high-level parameters
*-----------------------------------------------------------------*/
- nchan_out_buff_old = ivas_get_nchan_buffers_dec( st_ivas, sba_analysis_order_old_flush, last_ivas_total_brate );
-
ivas_init_dec_get_num_cldfb_instances( st_ivas, &numCldfbAnalyses_old, &numCldfbSyntheses_old );
nchan_hp20_old = getNumChanSynthesis( st_ivas );
@@ -166,6 +162,27 @@ ivas_error ivas_sba_dec_reconfigure(
/* determine new granularity */
granularity_new = ivas_jbm_dec_get_render_granularity( st_ivas->renderer_type, ivas_renderer_secondary_select( st_ivas ), st_ivas->hDecoderConfig->output_Fs );
+#ifdef NONBE_1321_JBM_ASSERT_BITRATE_SWITCHING
+ /* flush renderer on granularity change form 5ms to 1.25ms, again only possible for binaural rendering */
+ if ( granularity_new < st_ivas->hTcBuffer->n_samples_granularity )
+ {
+ /* flush already done in IVAS_DEC_ReadFormat() */
+ }
+ else if ( granularity_new > st_ivas->hTcBuffer->n_samples_granularity )
+ {
+ if ( ( error = ivas_jbm_dec_set_discard_samples( st_ivas ) ) != IVAS_ERR_OK )
+ {
+ return error;
+ }
+
+ /* make sure the changed number of slots in the last subframe is not lost in the following steps */
+ if ( st_ivas->hSpatParamRendCom != NULL )
+ {
+ st_ivas->hSpatParamRendCom->subframe_nbslots[st_ivas->hSpatParamRendCom->nb_subframes - 1] = st_ivas->hTcBuffer->subframe_nbslots[st_ivas->hTcBuffer->nb_subframes - 1];
+ }
+ st_ivas->hSpar->subframe_nbslots[st_ivas->hSpar->nb_subframes - 1] = st_ivas->hTcBuffer->subframe_nbslots[st_ivas->hTcBuffer->nb_subframes - 1];
+ }
+#else
if ( granularity_new > st_ivas->hTcBuffer->n_samples_granularity )
{
/* make sure the changed number of slots in the last subframe is not lost in the following steps */
@@ -175,6 +192,7 @@ ivas_error ivas_sba_dec_reconfigure(
}
st_ivas->hSpar->subframe_nbslots[st_ivas->hSpar->nb_subframes - 1] = st_ivas->hTcBuffer->subframe_nbslots[st_ivas->hTcBuffer->nb_subframes - 1];
}
+#endif
}
/* save old */
@@ -591,8 +609,7 @@ ivas_error ivas_sba_dec_reconfigure(
*-----------------------------------------------------------------*/
nchan_out_buff = ivas_get_nchan_buffers_dec( st_ivas, st_ivas->sba_analysis_order, st_ivas->hDecoderConfig->ivas_total_brate );
-
- if ( ( error = ivas_output_buff_dec( st_ivas->p_output_f, nchan_out_buff_old, nchan_out_buff ) ) != IVAS_ERR_OK )
+ if ( ( error = ivas_output_buff_dec( st_ivas->p_output_f, nchan_out_buff, hDecoderConfig->Opt_tsm, st_ivas->hTcBuffer ) ) != IVAS_ERR_OK )
{
return error;
}
@@ -712,6 +729,12 @@ ivas_error ivas_sba_dec_render(
{
nchan_out = max( nchan_internal, st_ivas->hDecoderConfig->nchan_out - st_ivas->nchan_ism );
}
+#ifdef FIX_1372_OSBA_OBJECT_EDITING
+ else if ( st_ivas->renderer_type == RENDERER_BINAURAL_FASTCONV_ROOM )
+ {
+ nchan_out = BINAURAL_CHANNELS;
+ }
+#endif
}
nchan_out = min( nchan_out, ivas_get_nchan_buffers_dec( st_ivas, st_ivas->sba_analysis_order, st_ivas->hDecoderConfig->ivas_total_brate ) );
diff --git a/lib_dec/ivas_spar_decoder.c b/lib_dec/ivas_spar_decoder.c
index 41319e9fe2c3d4732ec4a5d2008488b58cca7bd1..2a575c6177861e150e2ab390b3f993036a79afe9 100644
--- a/lib_dec/ivas_spar_decoder.c
+++ b/lib_dec/ivas_spar_decoder.c
@@ -1406,7 +1406,11 @@ void ivas_spar_dec_upmixer_sf(
p_tc[i] = st_ivas->hTcBuffer->tc[i + nchan_ism] + slot_idx_start * slot_size;
}
+#ifdef FIX_1372_OSBA_OBJECT_EDITING
+ if ( st_ivas->renderer_type == RENDERER_BINAURAL_FASTCONV_ROOM )
+#else
if ( st_ivas->ivas_format == SBA_ISM_FORMAT && st_ivas->ism_mode == ISM_SBA_MODE_DISC && st_ivas->renderer_type == RENDERER_BINAURAL_FASTCONV_ROOM )
+#endif
{
for ( i = 0; i < nchan_ism; i++ )
{
diff --git a/lib_dec/ivas_stat_dec.h b/lib_dec/ivas_stat_dec.h
index 282d798e4d66fac476e7efd50bf06fd0957a63a9..0f0ad4cedba35a0529c345d40c95669a80fb8a85 100644
--- a/lib_dec/ivas_stat_dec.h
+++ b/lib_dec/ivas_stat_dec.h
@@ -790,7 +790,7 @@ typedef struct ivas_lfe_dec_data_structure
LFE_WINDOW_HANDLE pWindow_state;
const uint16_t *cum_freq_models[IVAS_MAX_NUM_QUANT_STRATS][IVAS_MAX_NUM_DCT_COEF_GROUPS];
int16_t lfe_dec_indices_coeffs_tbl[IVAS_MAX_NUM_QUANT_STRATS][IVAS_MAX_NUM_DCT_COEF_GROUPS];
- float lfe_block_delay_s;
+ int32_t delay_ns;
int16_t lfe_prior_buf_len;
float prior_out_buffer[L_FRAME48k];
@@ -846,6 +846,7 @@ typedef struct
} ISAR_DEC_SPLIT_REND_WRAPPER, *ISAR_DEC_SPLIT_REND_WRAPPER_HANDLE;
+
/*----------------------------------------------------------------------------------*
* MASA decoder structures
*----------------------------------------------------------------------------------*/
@@ -963,6 +964,8 @@ typedef struct decoder_tc_buffer_structure
int16_t num_slots;
int16_t n_samples_discard; /* number of samples to discard from the beginning of the output */
+ float *tc_buffer2; /* non-scaled buffer of output audio - needed only when '*tc_buffer* is not long enough */
+
} DECODER_TC_BUFFER, *DECODER_TC_BUFFER_HANDLE;
typedef struct jbm_metadata_structure
diff --git a/lib_dec/ivas_svd_dec.c b/lib_dec/ivas_svd_dec.c
index 1d6282b39c3c34e982694f5ad349413cc5538246..12a98e87e954da5b1b676f6dab3a23541db55419 100644
--- a/lib_dec/ivas_svd_dec.c
+++ b/lib_dec/ivas_svd_dec.c
@@ -60,9 +60,9 @@
static float GivensRotation( const float x, const float z );
-static void biDiagonalReductionLeft( float singularVectors[][MAX_OUTPUT_CHANNELS], float singularValues[MAX_OUTPUT_CHANNELS], float secDiag[MAX_OUTPUT_CHANNELS], const int16_t nChannelsL, const int16_t nChannelsC, const int16_t currChannel, float *sig_x, float *g );
+static void biDiagonalReductionLeft( float singularVectors[][MAX_OUTPUT_CHANNELS], const int16_t nChannelsL, const int16_t nChannelsC, const int16_t currChannel, float *g );
-static void biDiagonalReductionRight( float singularVectors[][MAX_OUTPUT_CHANNELS], float secDiag[MAX_OUTPUT_CHANNELS], const int16_t nChannelsL, const int16_t nChannelsC, const int16_t currChannel, float *sig_x, float *g );
+static void biDiagonalReductionRight( float singularVectors[][MAX_OUTPUT_CHANNELS], const int16_t nChannelsL, const int16_t nChannelsC, const int16_t currChannel, float *g );
static void singularVectorsAccumulationLeft( float singularVectors_Left[][MAX_OUTPUT_CHANNELS], float singularValues[MAX_OUTPUT_CHANNELS], const int16_t nChannelsL, const int16_t nChannelsC );
@@ -489,13 +489,17 @@ static void HouseholderReduction(
float *eps_x )
{
int16_t nCh;
- float g = 0.0f, sig_x = 0.0f;
+ float g_left = 0.0f;
+ float g_right = 0.0f;
/* Bidiagonal Reduction for every channel */
for ( nCh = 0; nCh < nChannelsC; nCh++ ) /* nChannelsC */
{
- biDiagonalReductionLeft( singularVectors_Left, singularValues, secDiag, nChannelsL, nChannelsC, nCh, &sig_x, &g );
- biDiagonalReductionRight( singularVectors_Left, secDiag, nChannelsL, nChannelsC, nCh, &sig_x, &g );
+ secDiag[nCh] = g_right; /* from the previous channel */
+ biDiagonalReductionLeft( singularVectors_Left, nChannelsL, nChannelsC, nCh, &g_left );
+ singularValues[nCh] = g_left;
+ biDiagonalReductionRight( singularVectors_Left, nChannelsL, nChannelsC, nCh, &g_right );
+
*eps_x = max( *eps_x, ( fabsf( singularValues[nCh] ) + fabsf( secDiag[nCh] ) ) );
}
@@ -515,49 +519,36 @@ static void HouseholderReduction(
static void biDiagonalReductionLeft(
float singularVectors[][MAX_OUTPUT_CHANNELS],
- float singularValues[MAX_OUTPUT_CHANNELS],
- float secDiag[MAX_OUTPUT_CHANNELS],
const int16_t nChannelsL,
const int16_t nChannelsC,
const int16_t currChannel,
- float *sig_x,
float *g )
{
- int16_t iCh, jCh, idx;
+ int16_t iCh, jCh;
float norm_x, f, r;
- secDiag[currChannel] = ( *sig_x ) * ( *g );
-
/* Setting values to 0 */
- ( *sig_x ) = 0.0f;
( *g ) = 0.0f;
if ( currChannel < nChannelsL ) /* i <= m */
{
- idx = currChannel;
+ norm_x = 0.0f;
- for ( jCh = idx; jCh < nChannelsL; jCh++ ) /* nChannelsL */
+ for ( jCh = currChannel; jCh < nChannelsL; jCh++ ) /* nChannelsL */
{
- ( *sig_x ) += fabsf( singularVectors[jCh][currChannel] );
+ norm_x += ( singularVectors[jCh][currChannel] * singularVectors[jCh][currChannel] );
}
- if ( ( *sig_x ) ) /*(fabsf(*sig_x) > EPSILON * fabsf(*sig_x)) { */
+ if ( ( norm_x ) ) /*(fabsf(*sig_x) > EPSILON * fabsf(*sig_x)) { */
{
- norm_x = 0.0f;
-
- for ( jCh = idx; jCh < nChannelsL; jCh++ ) /* nChannelsL */
- {
- singularVectors[jCh][currChannel] = ( singularVectors[jCh][currChannel] / maxWithSign( ( *sig_x ) ) );
- norm_x += ( singularVectors[jCh][currChannel] * singularVectors[jCh][currChannel] );
- }
- ( *g ) = -( singularVectors[currChannel][idx] >= 0 ? 1 : ( -1 ) ) * sqrtf( norm_x );
- r = ( *g ) * singularVectors[currChannel][idx] - norm_x;
- singularVectors[currChannel][idx] = ( singularVectors[currChannel][idx] - ( *g ) );
+ ( *g ) = -( singularVectors[currChannel][currChannel] >= 0 ? 1 : ( -1 ) ) * sqrtf( norm_x );
+ r = ( *g ) * singularVectors[currChannel][currChannel] - norm_x;
+ singularVectors[currChannel][currChannel] = ( singularVectors[currChannel][currChannel] - ( *g ) );
for ( iCh = currChannel + 1; iCh < nChannelsC; iCh++ ) /* nChannelsC */
{
norm_x = 0.0f;
- for ( jCh = idx; jCh < nChannelsL; jCh++ ) /* nChannelsL */
+ for ( jCh = currChannel; jCh < nChannelsL; jCh++ ) /* nChannelsL */
{
norm_x += ( singularVectors[jCh][currChannel] * singularVectors[jCh][iCh] );
}
@@ -565,20 +556,12 @@ static void biDiagonalReductionLeft(
f = norm_x / maxWithSign( r );
- for ( jCh = idx; jCh < nChannelsL; jCh++ ) /* nChannelsL */
+ for ( jCh = currChannel; jCh < nChannelsL; jCh++ ) /* nChannelsL */
{
singularVectors[jCh][iCh] += ( f * singularVectors[jCh][currChannel] );
}
}
-
-
- for ( jCh = idx; jCh < nChannelsL; jCh++ ) /* nChannelsL */
- {
- singularVectors[jCh][currChannel] = ( singularVectors[jCh][currChannel] * ( *sig_x ) );
- }
}
-
- singularValues[currChannel] = ( ( *sig_x ) * ( *g ) );
}
return;
@@ -593,47 +576,34 @@ static void biDiagonalReductionLeft(
static void biDiagonalReductionRight(
float singularVectors[][MAX_OUTPUT_CHANNELS],
- float secDiag[MAX_OUTPUT_CHANNELS],
const int16_t nChannelsL,
const int16_t nChannelsC,
const int16_t currChannel,
- float *sig_x,
float *g )
{
int16_t iCh, jCh, idx;
float norm_x, r;
/* Setting values to 0 */
- ( *sig_x ) = 0.0f;
( *g ) = 0.0f;
if ( currChannel < nChannelsL && currChannel != ( nChannelsC - 1 ) ) /* i <=m && i !=n */
{
idx = currChannel + 1;
- for ( jCh = idx; jCh < nChannelsC; jCh++ ) /* nChannelsC */
+ norm_x = 0.0f;
+
+ for ( jCh = idx; jCh < nChannelsC; jCh++ ) /*nChannelsC */
{
- ( *sig_x ) += fabsf( singularVectors[currChannel][jCh] );
+ norm_x += ( singularVectors[currChannel][jCh] * singularVectors[currChannel][jCh] );
}
- if ( ( *sig_x ) ) /*(fabsf(*sig_x) > EPSILON * fabsf(*sig_x)) { */
+ if ( norm_x ) /*(fabsf(*sig_x) > EPSILON * fabsf(*sig_x)) { */
{
- norm_x = 0.0f;
-
- for ( jCh = idx; jCh < nChannelsC; jCh++ ) /*nChannelsC */
- {
- singularVectors[currChannel][jCh] = ( singularVectors[currChannel][jCh] / maxWithSign( ( *sig_x ) ) );
- norm_x += ( singularVectors[currChannel][jCh] * singularVectors[currChannel][jCh] );
- }
( *g ) = -( singularVectors[currChannel][idx] >= 0 ? 1 : ( -1 ) ) * sqrtf( norm_x );
r = ( *g ) * singularVectors[currChannel][idx] - norm_x;
singularVectors[currChannel][idx] = ( singularVectors[currChannel][idx] - ( *g ) );
- for ( jCh = idx; jCh < nChannelsC; jCh++ ) /* nChannelsC */
- {
- secDiag[jCh] = singularVectors[currChannel][jCh] / maxWithSign( r );
- }
-
for ( iCh = currChannel + 1; iCh < nChannelsL; iCh++ ) /* nChannelsL */
{
norm_x = 0.0f;
@@ -641,17 +611,12 @@ static void biDiagonalReductionRight(
{
norm_x += ( singularVectors[iCh][jCh] * singularVectors[currChannel][jCh] );
}
-
+ norm_x /= r;
for ( jCh = idx; jCh < nChannelsC; jCh++ ) /* nChannelsC */
{
- singularVectors[iCh][jCh] += ( norm_x * secDiag[jCh] );
+ singularVectors[iCh][jCh] += ( norm_x * singularVectors[currChannel][jCh] );
}
}
-
- for ( jCh = idx; jCh < nChannelsC; jCh++ ) /* nChannelsC */
- {
- singularVectors[currChannel][jCh] = ( singularVectors[currChannel][jCh] * ( *sig_x ) );
- }
}
}
diff --git a/lib_dec/jbm_pcmdsp_apa.c b/lib_dec/jbm_pcmdsp_apa.c
index 0c0b478a1b4f5fc58bc090a19611b978931cc36e..84dd867403bf40dd1df5e19528dc5276d0cb6cbe 100644
--- a/lib_dec/jbm_pcmdsp_apa.c
+++ b/lib_dec/jbm_pcmdsp_apa.c
@@ -725,6 +725,17 @@ uint8_t apa_exec(
ps->nFramesSinceSetScale >>= statsResetShift;
}
+#ifdef DEBUG_APA_SILENCE_NON_SCALED
+ if ( l_in == *l_out )
+ {
+ set_zero( a_out, *l_out );
+ }
+ else
+ {
+ set_f( a_out, (float) INT16_MAX, *l_out );
+ }
+#endif
+
return 0;
}
diff --git a/lib_dec/lib_dec.c b/lib_dec/lib_dec.c
index 11e208218aff7322415e8e953bfd9073864e579e..4d27cb168ed20aeda3d0108269b961615f0d59f5 100644
--- a/lib_dec/lib_dec.c
+++ b/lib_dec/lib_dec.c
@@ -1079,6 +1079,7 @@ ivas_error IVAS_DEC_ReadFormat(
return error;
}
}
+#ifndef NONBE_1321_JBM_ASSERT_BITRATE_SWITCHING
/* when granularity goes up, discard samples at the beginning of the frame */
else if ( tc_granularity_new > st_ivas->hTcBuffer->n_samples_granularity )
{
@@ -1087,6 +1088,7 @@ ivas_error IVAS_DEC_ReadFormat(
return error;
}
}
+#endif
}
}
@@ -2212,7 +2214,7 @@ static int16_t getOutputBufferSize(
if ( st_ivas->hDecoderConfig->output_config == IVAS_AUDIO_CONFIG_EXTERNAL )
{
- return (int16_t) ( st_ivas->hDecoderConfig->output_Fs * ( IVAS_MAX_OUTPUT_CHANNELS + IVAS_MAX_NUM_OBJECTS ) / FRAMES_PER_SEC );
+ return (int16_t) ( st_ivas->hDecoderConfig->output_Fs * ( MAX_OUTPUT_CHANNELS + MAX_NUM_OBJECTS ) / FRAMES_PER_SEC );
}
else if ( st_ivas->hDecoderConfig->output_config == IVAS_AUDIO_CONFIG_LS_CUSTOM )
{
diff --git a/lib_enc/acelp_core_enc.c b/lib_enc/acelp_core_enc.c
index 535a52430ebcf3d24c780fe89e8dd6ca8f2ea651..33bef3e67a26bc212898ab133ba1c5a5ad420f4a 100644
--- a/lib_enc/acelp_core_enc.c
+++ b/lib_enc/acelp_core_enc.c
@@ -695,7 +695,12 @@ ivas_error acelp_core_enc(
if ( !st->Opt_SC_VBR && ( st->idchan == 0 || st->element_mode != IVAS_CPE_TD || ( st->idchan == 1 && st->element_mode == IVAS_CPE_TD && st->tdm_LRTD_flag ) ) )
{
/* Apply a non linearity to the SHB excitation */
- non_linearity( bwe_exc, bwe_exc_extended, st->hBWE_TD->old_bwe_exc_extended, L_FRAME32k, &st->hBWE_TD->bwe_non_lin_prev_scale, st->coder_type, voice_factors, st->L_frame );
+ non_linearity( bwe_exc, bwe_exc_extended, st->hBWE_TD->old_bwe_exc_extended, L_FRAME32k, &st->hBWE_TD->bwe_non_lin_prev_scale, st->coder_type, voice_factors, st->L_frame
+#ifdef NONBE_1328_FIX_NON_LINEARITY
+ ,
+ st->element_mode
+#endif
+ );
}
if ( st->core_brate == SID_2k40 || st->core_brate == FRAME_NO_DATA )
diff --git a/lib_enc/enc_acelp_tcx_main.c b/lib_enc/enc_acelp_tcx_main.c
index 6ede9b9bf18b75a00fcb10e70c379746b0da5e6a..8851d9be5e0c358e9470583a923ad7836d14c09b 100644
--- a/lib_enc/enc_acelp_tcx_main.c
+++ b/lib_enc/enc_acelp_tcx_main.c
@@ -99,7 +99,12 @@ void enc_acelp_tcx_main(
/* Apply non linearity to the SHB excitation */
if ( st->core == ACELP_CORE && st->igf )
{
- non_linearity( ptr_bwe_exc, bwe_exc_extended, st->hBWE_TD->old_bwe_exc_extended, L_FRAME32k, &st->hBWE_TD->bwe_non_lin_prev_scale, st->coder_type, voice_factors, st->L_frame );
+ non_linearity( ptr_bwe_exc, bwe_exc_extended, st->hBWE_TD->old_bwe_exc_extended, L_FRAME32k, &st->hBWE_TD->bwe_non_lin_prev_scale, st->coder_type, voice_factors, st->L_frame
+#ifdef NONBE_1328_FIX_NON_LINEARITY
+ ,
+ st->element_mode
+#endif
+ );
/* update the old_BWE_exc memory */
mvr2r( &old_bwe_exc[L_FRAME32k], st->hBWE_TD->old_bwe_exc, PIT16k_MAX * 2 );
diff --git a/lib_enc/enc_prm.c b/lib_enc/enc_prm.c
index fb1a338ee6b9e86dc0cd728e9f0e59f42624e6b1..951ae35b70ddaf5b2c5937ed790f0ee92ca14330 100644
--- a/lib_enc/enc_prm.c
+++ b/lib_enc/enc_prm.c
@@ -565,6 +565,12 @@ void writeTCXparam(
nbits_tcx, NPRM_RESQ * st->hTcxCfg->resq, flag_ctx_hm ? &hm_cfg[k] : NULL );
}
}
+#ifdef DEBUG_PLOT_BITS
+ if ( core == TCX_10_CORE )
+ {
+ dbgwrite( &nbits_tcx, sizeof( int16_t ), 1, 1, "./res/bits_RC" );
+ }
+#endif
}
}
#ifdef DEBUG_PLOT_BITS
@@ -576,6 +582,15 @@ void writeTCXparam(
dbgwrite( &tmp, sizeof( int16_t ), 1, 1, "./res/bits_TNS" );
}
}
+ else
+ {
+ if ( nSubframes == 1 )
+ {
+ tmp = 0;
+ dbgwrite( &nbits_tcx, sizeof( int16_t ), 1, 1, "./res/bits_RC" );
+ dbgwrite( &tmp, sizeof( int16_t ), 1, 1, "./res/bits_RC" );
+ }
+ }
#endif
return;
diff --git a/lib_enc/hq_lr_enc.c b/lib_enc/hq_lr_enc.c
index 65b5dd4ef5b3a37deeae00c7a6a382ad2ae8f416..13637fdbd2873f7c1c7b4a7ccc854ee4d6b2511b 100644
--- a/lib_enc/hq_lr_enc.c
+++ b/lib_enc/hq_lr_enc.c
@@ -336,7 +336,11 @@ void hq_lr_enc(
frac1 = L_Extract_lc( L_tmp, &exp ); /* Extract exponent of L_tmp */
L_tmp = Pow2( 30, frac1 );
exp = sub( exp, 30 );
- Ep_fx[i] = L_shl( L_tmp, sub( exp, 6 ) ); /* Q -6 */
+#ifdef BASOP_NOGLOB
+ Ep_fx[i] = L_shl_o( L_tmp, s_max( sub( exp, 6 ), -31 ), &Overflow ); /* Q -6 */
+#else
+ Ep_fx[i] = L_shl( L_tmp, s_max( sub( exp, 6 ), -31 ) ); /* Q -6 */
+#endif
Ep[i] = (float) ( Ep_fx[i] / pow( 2.0, -6 ) );
}
diff --git a/lib_enc/ivas_corecoder_enc_reconfig.c b/lib_enc/ivas_corecoder_enc_reconfig.c
index 1171c5f846ca5cc3e139477e5418f698805f67ec..08cac66ffb30f1cd233974dcc5b3d34bd0c42fc2 100644
--- a/lib_enc/ivas_corecoder_enc_reconfig.c
+++ b/lib_enc/ivas_corecoder_enc_reconfig.c
@@ -40,6 +40,9 @@
#include
#endif
#include "wmc_auto.h"
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
+#include
+#endif
/*-------------------------------------------------------------------*
* ivas_corecoder_enc_reconfig()
@@ -167,6 +170,10 @@ ivas_error ivas_corecoder_enc_reconfig(
temp_ind_list[i].id = hBstr->ind_list[i].id;
temp_ind_list[i].value = hBstr->ind_list[i].value;
temp_ind_list[i].nb_bits = hBstr->ind_list[i].nb_bits;
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
+ strncpy( temp_ind_list[i].function_name, hBstr->ind_list[i].function_name, 100 );
+#endif
+
hBstr->ind_list[i].nb_bits = -1;
}
@@ -370,6 +377,9 @@ ivas_error ivas_corecoder_enc_reconfig(
st_ivas->hSCE[0]->hCoreCoder[0]->hBstr->ind_list[i].id = temp_ind_list[i].id;
st_ivas->hSCE[0]->hCoreCoder[0]->hBstr->ind_list[i].value = temp_ind_list[i].value;
st_ivas->hSCE[0]->hCoreCoder[0]->hBstr->ind_list[i].nb_bits = temp_ind_list[i].nb_bits;
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
+ strncpy( st_ivas->hSCE[0]->hCoreCoder[0]->hBstr->ind_list[i].function_name, temp_ind_list[i].function_name, 100 );
+#endif
}
nb_bits += temp_ind_list[i].nb_bits;
@@ -387,6 +397,9 @@ ivas_error ivas_corecoder_enc_reconfig(
st_ivas->hCPE[0]->hCoreCoder[0]->hBstr->ind_list[i].id = temp_ind_list[i].id;
st_ivas->hCPE[0]->hCoreCoder[0]->hBstr->ind_list[i].value = temp_ind_list[i].value;
st_ivas->hCPE[0]->hCoreCoder[0]->hBstr->ind_list[i].nb_bits = temp_ind_list[i].nb_bits;
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
+ strncpy( st_ivas->hCPE[0]->hCoreCoder[0]->hBstr->ind_list[i].function_name, temp_ind_list[i].function_name, 100 );
+#endif
}
nb_bits += temp_ind_list[i].nb_bits;
diff --git a/lib_enc/ivas_enc.c b/lib_enc/ivas_enc.c
index db2e60fada703ae07198684798ebe0859e058598..8f6eb68b96a4efa2f43c9f3e87361b48b2a11ff0 100644
--- a/lib_enc/ivas_enc.c
+++ b/lib_enc/ivas_enc.c
@@ -412,6 +412,11 @@ ivas_error ivas_enc(
/* get SBA TCs */
ivas_sba_getTCs( &data_f[n], st_ivas, input_frame );
}
+#ifdef DEBUG_OSBA_MD_BITS
+ {
+ dbgwrite( &nb_bits_metadata[0], sizeof( int16_t ), hEncoderConfig->nchan_ism + 1, 1, "./res/osba_md_bits" );
+ }
+#endif
/* core-coding of transport channels */
if ( st_ivas->nSCE == 1 )
diff --git a/lib_enc/ivas_init_enc.c b/lib_enc/ivas_init_enc.c
index 9e42dd8bea5f4f2a2ab9da18cb2750860c9390e7..54e0a8c7e5cda49456c97f85bf217b811b0742e8 100644
--- a/lib_enc/ivas_init_enc.c
+++ b/lib_enc/ivas_init_enc.c
@@ -42,6 +42,9 @@
#include "debug.h"
#endif
#include "wmc_auto.h"
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
+#include
+#endif
/*-------------------------------------------------------------------*
@@ -463,6 +466,13 @@ ivas_error ivas_init_encoder(
st_ivas->ind_list[i].nb_bits = -1;
}
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
+ for ( i = 0; i < st_ivas->ivas_max_num_indices; i++ )
+ {
+ memset( st_ivas->ind_list[i].function_name, 'A', 100 * sizeof( char ) );
+ }
+#endif
+
/* set the maximum allowed number of metadata indices in the list */
st_ivas->ivas_max_num_indices_metadata = get_ivas_max_num_indices_metadata( st_ivas->hEncoderConfig->ivas_format, st_ivas->hEncoderConfig->ivas_total_brate );
diff --git a/lib_enc/ivas_mc_param_enc.c b/lib_enc/ivas_mc_param_enc.c
index 4edc948b6d38b47dbf85440e05eb6550da0ac87f..25314cd89e0e7b1f7ceea01620ff1e4c10869f19 100644
--- a/lib_enc/ivas_mc_param_enc.c
+++ b/lib_enc/ivas_mc_param_enc.c
@@ -56,15 +56,15 @@
static void ivas_param_mc_dmx( PARAM_MC_ENC_HANDLE hParamMC, float *data_f[], float data_dmx[][L_FRAME48k], const int16_t input_frame, const int16_t nchan_input, const int16_t nchan_transport );
-static void ivas_param_mc_param_est_enc( PARAM_MC_ENC_HANDLE hParamMC, float *data_f[], float Cy_sum[][MAX_CICP_CHANNELS][MAX_CICP_CHANNELS], float Cx_sum[][PARAM_MC_MAX_TRANSPORT_CHANS][PARAM_MC_MAX_TRANSPORT_CHANS], const int16_t input_frame, const int16_t nchan_input, const int16_t nchan_transport );
+static void ivas_param_mc_param_est_enc( PARAM_MC_ENC_HANDLE hParamMC, float *data_f[], float Cy_sum[][MAX_LS_CHANNELS][MAX_LS_CHANNELS], float Cx_sum[][PARAM_MC_MAX_TRANSPORT_CHANS][PARAM_MC_MAX_TRANSPORT_CHANS], const int16_t input_frame, const int16_t nchan_input, const int16_t nchan_transport );
static void ivas_param_mc_parameter_quantizer( const float *x, const int16_t L, const int16_t sz_quantizer, const float *quantizer, int16_t *quant_idx, float *y );
static void ivas_param_mc_transient_detection( PARAM_MC_ENC_HANDLE hParamMC, TRAN_DET_HANDLE hTranDet, int16_t *bAttackPresent, int16_t *attackIdx );
-static void ivas_param_mc_quantize_iccs( PARAM_MC_ENC_HANDLE hParamMC, float Cy[MAX_CICP_CHANNELS][MAX_CICP_CHANNELS], const int16_t freq_idx, const int16_t nchan_input, int16_t *ICC_idx_out );
+static void ivas_param_mc_quantize_iccs( PARAM_MC_ENC_HANDLE hParamMC, float Cy[MAX_LS_CHANNELS][MAX_LS_CHANNELS], const int16_t freq_idx, const int16_t nchan_input, int16_t *ICC_idx_out );
-static void ivas_param_mc_quantize_ilds( PARAM_MC_ENC_HANDLE hParamMC, float Cy[MAX_CICP_CHANNELS][MAX_CICP_CHANNELS], float Cx[PARAM_MC_MAX_TRANSPORT_CHANS][PARAM_MC_MAX_TRANSPORT_CHANS], const int16_t freq_idx, const int16_t nchan_input, const int16_t nchan_transport, int16_t *ILD_idx_out, float ILD_q[PARAM_MC_SZ_ILD_MAP] );
+static void ivas_param_mc_quantize_ilds( PARAM_MC_ENC_HANDLE hParamMC, float Cy[MAX_LS_CHANNELS][MAX_LS_CHANNELS], float Cx[PARAM_MC_MAX_TRANSPORT_CHANS][PARAM_MC_MAX_TRANSPORT_CHANS], const int16_t freq_idx, const int16_t nchan_input, const int16_t nchan_transport, int16_t *ILD_idx_out, float ILD_q[PARAM_MC_SZ_ILD_MAP] );
static void ivas_param_mc_write_bs( const PARAM_MC_ENC_HANDLE hParamMC, int16_t *ILD_idx, int16_t *ICC_idx, uint16_t bit_buffer[PARAM_MC_MAX_BITS], int16_t *bit_pos );
@@ -349,7 +349,7 @@ void ivas_param_mc_enc(
)
{
int16_t k;
- float Cy_sum[PARAM_MC_MAX_PARAMETER_BANDS][MAX_CICP_CHANNELS][MAX_CICP_CHANNELS];
+ float Cy_sum[PARAM_MC_MAX_PARAMETER_BANDS][MAX_LS_CHANNELS][MAX_LS_CHANNELS];
float Cx_sum[PARAM_MC_MAX_PARAMETER_BANDS][PARAM_MC_MAX_TRANSPORT_CHANS][PARAM_MC_MAX_TRANSPORT_CHANS];
float ILD_q[PARAM_MC_MAX_PARAMETER_BANDS][PARAM_MC_SZ_ILD_MAP];
int16_t ILD_idx[PARAM_MC_MAX_PARAMETER_BANDS * PARAM_MC_SZ_ILD_MAP];
@@ -373,9 +373,9 @@ void ivas_param_mc_enc(
for ( band = 0; band < PARAM_MC_MAX_PARAMETER_BANDS; band++ )
{
- for ( ch = 0; ch < MAX_CICP_CHANNELS; ch++ )
+ for ( ch = 0; ch < MAX_LS_CHANNELS; ch++ )
{
- set_zero( Cy_sum[band][ch], MAX_CICP_CHANNELS );
+ set_zero( Cy_sum[band][ch], MAX_LS_CHANNELS );
}
for ( ch = 0; ch < PARAM_MC_MAX_TRANSPORT_CHANS; ch++ )
{
@@ -555,7 +555,7 @@ static void ivas_param_mc_dmx(
static void ivas_param_mc_param_est_enc(
PARAM_MC_ENC_HANDLE hParamMC, /* i/o: Parametric MC encoder handle */
float *data_f[], /* i : Input frame in the time domain */
- float Cy_sum[][MAX_CICP_CHANNELS][MAX_CICP_CHANNELS], /* o : Covariance matrix for the original frame */
+ float Cy_sum[][MAX_LS_CHANNELS][MAX_LS_CHANNELS], /* o : Covariance matrix for the original frame */
float Cx_sum[][PARAM_MC_MAX_TRANSPORT_CHANS][PARAM_MC_MAX_TRANSPORT_CHANS], /* o : Covariance matrix for the downmixed frame */
const int16_t input_frame, /* i : Input frame length */
const int16_t nchan_input, /* i : number of input channels */
@@ -571,16 +571,16 @@ static void ivas_param_mc_param_est_enc(
int16_t band_step;
const int16_t *map_ls = Param_MC_index; /* Loudspeakers mapping */
int16_t idx_ls;
- float *pcm_in[MAX_CICP_CHANNELS];
- float slot_frame_f_real[MAX_CICP_CHANNELS][DIRAC_NO_FB_BANDS_MAX]; /* Output of the MDFT FB - real part */
- float slot_frame_f_imag[MAX_CICP_CHANNELS][DIRAC_NO_FB_BANDS_MAX]; /* Output of the MDFT FB - imag part */
- float *p_slot_frame_f_real[MAX_CICP_CHANNELS]; /* Output of the MDFT FB - real part */
- float *p_slot_frame_f_imag[MAX_CICP_CHANNELS]; /* Output of the MDFT FB - imag part */
+ float *pcm_in[MAX_LS_CHANNELS];
+ float slot_frame_f_real[MAX_LS_CHANNELS][DIRAC_NO_FB_BANDS_MAX]; /* Output of the MDFT FB - real part */
+ float slot_frame_f_imag[MAX_LS_CHANNELS][DIRAC_NO_FB_BANDS_MAX]; /* Output of the MDFT FB - imag part */
+ float *p_slot_frame_f_real[MAX_LS_CHANNELS]; /* Output of the MDFT FB - real part */
+ float *p_slot_frame_f_imag[MAX_LS_CHANNELS]; /* Output of the MDFT FB - imag part */
float dmx_real[PARAM_MC_MAX_TRANSPORT_CHANS]; /* Downmix channel - Real Part */
float dmx_imag[PARAM_MC_MAX_TRANSPORT_CHANS]; /* Downmix channel - Imag Part */
float a, b, c, d; /* Tmp complex values */
- float Cy_sum_imag[PARAM_MC_MAX_PARAM_BAND_ABS_COV_ENC][MAX_CICP_CHANNELS][MAX_CICP_CHANNELS];
+ float Cy_sum_imag[PARAM_MC_MAX_PARAM_BAND_ABS_COV_ENC][MAX_LS_CHANNELS][MAX_LS_CHANNELS];
float Cx_sum_imag[PARAM_MC_MAX_PARAM_BAND_ABS_COV_ENC][PARAM_MC_MAX_TRANSPORT_CHANS][PARAM_MC_MAX_TRANSPORT_CHANS];
float real_part, imag_part;
int16_t start_ts;
@@ -597,9 +597,9 @@ static void ivas_param_mc_param_est_enc(
for ( cur_param_band = 0; cur_param_band < PARAM_MC_MAX_PARAM_BAND_ABS_COV_ENC; cur_param_band++ )
{
- for ( ch_idx1 = 0; ch_idx1 < MAX_CICP_CHANNELS; ch_idx1++ )
+ for ( ch_idx1 = 0; ch_idx1 < MAX_LS_CHANNELS; ch_idx1++ )
{
- set_zero( Cy_sum_imag[cur_param_band][ch_idx1], MAX_CICP_CHANNELS );
+ set_zero( Cy_sum_imag[cur_param_band][ch_idx1], MAX_LS_CHANNELS );
}
for ( ch_idx1 = 0; ch_idx1 < PARAM_MC_MAX_TRANSPORT_CHANS; ch_idx1++ )
@@ -799,7 +799,7 @@ static void ivas_param_mc_param_est_enc(
}
if ( hParamMC->hMetadataPMC.param_frame_idx != hParamMC->hMetadataPMC.coding_band_mapping[cur_param_band] )
{
- float Nrg[MAX_CICP_CHANNELS];
+ float Nrg[MAX_LS_CHANNELS];
/* get ICLDs */
for ( k = 0; k < nchan_input; ++k )
@@ -934,12 +934,12 @@ static void ivas_param_mc_param_est_enc(
static void ivas_param_mc_quantize_ilds(
PARAM_MC_ENC_HANDLE hParamMC, /* i/o: Parametric MC encoder handle */
- float Cy[MAX_CICP_CHANNELS][MAX_CICP_CHANNELS], /* i : Covariance matrix of the input */
+ float Cy[MAX_LS_CHANNELS][MAX_LS_CHANNELS], /* i : Covariance matrix of the input */
float Cx[PARAM_MC_MAX_TRANSPORT_CHANS][PARAM_MC_MAX_TRANSPORT_CHANS], /* i : Covariance matrix of the dmx */
const int16_t freq_idx, /* i : frequency index being processed */
const int16_t nchan_input, /* i : number of input channels */
const int16_t nchan_transport, /* i : number of transport channels */
- int16_t *ILD_idx_out, /* o : ILD indices */
+ int16_t *ILD_idx_out, /* o : ILD indices */
float ILD_q[PARAM_MC_SZ_ILD_MAP] /* o : Quanzited ILD matrix */
)
{
@@ -947,7 +947,7 @@ static void ivas_param_mc_quantize_ilds(
int16_t Ny;
int16_t num_ilds_to_code;
int16_t ild_map_size;
- float Nrg[MAX_CICP_CHANNELS];
+ float Nrg[MAX_LS_CHANNELS];
float ILD[PARAM_MC_SZ_ILD_MAP];
const PARAM_MC_ILD_MAPPING *h_ild_mapping;
float tot_ener, dmx_ener, ener_fac, delta_fac;
@@ -956,7 +956,7 @@ static void ivas_param_mc_quantize_ilds(
push_wmops( "param_mc_prm_q" );
/* Initialization */
- set_zero( Nrg, MAX_CICP_CHANNELS );
+ set_zero( Nrg, MAX_LS_CHANNELS );
set_zero( ILD, PARAM_MC_SZ_ILD_MAP );
Ny = nchan_input;
@@ -1086,11 +1086,11 @@ static void ivas_param_mc_quantize_ilds(
*------------------------------------------------------------------------*/
static void ivas_param_mc_quantize_iccs(
- PARAM_MC_ENC_HANDLE hParamMC, /* i/o: Parametric MC encoder handle */
- float Cy[MAX_CICP_CHANNELS][MAX_CICP_CHANNELS], /* i : Covariance matrix of the input */
- const int16_t freq_idx, /* i : frequency index being processed */
- const int16_t nchan_input, /* i : number of input channels */
- int16_t *ICC_idx_out /* o : quantizer indices */
+ PARAM_MC_ENC_HANDLE hParamMC, /* i/o: Parametric MC encoder handle */
+ float Cy[MAX_LS_CHANNELS][MAX_LS_CHANNELS], /* i : Covariance matrix of the input */
+ const int16_t freq_idx, /* i : frequency index being processed */
+ const int16_t nchan_input, /* i : number of input channels */
+ int16_t *ICC_idx_out /* o : quantizer indices */
)
{
int16_t i, k;
@@ -1099,13 +1099,13 @@ static void ivas_param_mc_quantize_iccs(
int16_t icc_map_size;
float a;
int16_t tmp_map[2];
- float Nrg[MAX_CICP_CHANNELS];
+ float Nrg[MAX_LS_CHANNELS];
float ICC_vect[PARAM_MC_SZ_ICC_MAP];
float ICC_vect_q[PARAM_MC_SZ_ICC_MAP];
int16_t ICC_idx[PARAM_MC_SZ_ICC_MAP];
/* Initialization */
- set_zero( Nrg, MAX_CICP_CHANNELS );
+ set_zero( Nrg, MAX_LS_CHANNELS );
set_zero( ICC_vect, PARAM_MC_SZ_ICC_MAP );
set_zero( ICC_vect_q, PARAM_MC_SZ_ICC_MAP );
diff --git a/lib_enc/ivas_mct_core_enc.c b/lib_enc/ivas_mct_core_enc.c
index 27f1a0ad3ce7f4ca30c6d4861bd4e261ad1b0bed..4a46bd7b2f7045b8568f50b98bf97c8e550a9707 100644
--- a/lib_enc/ivas_mct_core_enc.c
+++ b/lib_enc/ivas_mct_core_enc.c
@@ -471,6 +471,10 @@ void ivas_mct_core_enc(
/*write IGF data to bitstream*/
for ( ch = 0; ch < nChannels; ch++ )
{
+#ifdef DEBUG_PLOT_BITS
+ int16_t tmp = hBstr->nb_bits_tot;
+#endif
+
st = sts[ch];
if (
sts[ch]->mct_chan_mode == MCT_CHAN_MODE_IGNORE )
@@ -478,6 +482,10 @@ void ivas_mct_core_enc(
continue;
}
enc_prm_igf_mdct( st, hBstr );
+#ifdef DEBUG_PLOT_BITS
+ tmp = hBstr->nb_bits_tot - tmp;
+ dbgwrite( &tmp, sizeof( int16_t ), 1, 1, "./res/bits_IGF" );
+#endif
}
}
diff --git a/lib_enc/ivas_mdct_core_enc.c b/lib_enc/ivas_mdct_core_enc.c
index 8085fea23142b6919af287743b44bb40d653b2aa..0c669b581a4010aa9552aa087aee536e14ea5723 100644
--- a/lib_enc/ivas_mdct_core_enc.c
+++ b/lib_enc/ivas_mdct_core_enc.c
@@ -1146,6 +1146,9 @@ void ivas_mdct_core_whitening_enc(
skipped_first_channel = 0;
for ( ch = 0; ch < CPE_CHANNELS; ch++ )
{
+#ifdef DEBUG_PLOT_BITS
+ int16_t tmp = hBstr->nb_bits_tot;
+#endif
st = sts[ch];
if ( st->mct_chan_mode == MCT_CHAN_MODE_IGNORE )
@@ -1170,6 +1173,11 @@ void ivas_mdct_core_whitening_enc(
}
encode_lpc_avq( hBstr, num_sns, param_lpc[ch], st->core, st->element_mode );
+#ifdef DEBUG_PLOT_BITS
+ tmp = hBstr->nb_bits_tot - tmp;
+ dbgwrite( &tmp, sizeof( int16_t ), 1, 1, "./res/bits_SNS" );
+#endif
+
st->side_bits_frame_channel += hBstr->nb_bits_tot - nbits_start_sns;
}
}
diff --git a/lib_enc/ivas_qmetadata_enc.c b/lib_enc/ivas_qmetadata_enc.c
index 7d0b44f5996134c1b2da080085b36b5e040ea635..6f436f8add78229639989b812d2736b3e6eb6fac 100644
--- a/lib_enc/ivas_qmetadata_enc.c
+++ b/lib_enc/ivas_qmetadata_enc.c
@@ -42,6 +42,10 @@
#include "wmc_auto.h"
#include "prot.h"
#include "basop_settings.h"
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
+#include
+#endif
+
/*-----------------------------------------------------------------------*
* Local function prototypes
@@ -1276,14 +1280,23 @@ void reset_metadata_spatial(
for ( i = 0; i < next_ind_sid; i++ )
{
hMetaData->ind_list[i].nb_bits = -1;
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
+ sprintf( hMetaData->ind_list[i].function_name, "RESET in reset_metadata_spatial" );
+#endif
}
for ( j = 0, i = next_ind_sid; i < last_ind_sid; i++, j++ )
{
hMetaData->ind_list[j].value = hMetaData->ind_list[i].value;
hMetaData->ind_list[j].nb_bits = hMetaData->ind_list[i].nb_bits;
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
+ strncpy( hMetaData->ind_list[j].function_name, hMetaData->ind_list[i].function_name, 100 );
+#endif
hMetaData->nb_bits_tot += hMetaData->ind_list[j].nb_bits;
hMetaData->ind_list[i].nb_bits = -1;
+#ifdef DBG_BISTREAM_ANALYSIS
+ sprintf( hMetaData->ind_list[i].function_name, "RESET in reset_metadata_spatial" );
+#endif
}
hMetaData->nb_ind_tot = j;
@@ -1308,6 +1321,9 @@ void reset_metadata_spatial(
hMetaData->nb_ind_tot--;
hMetaData->nb_bits_tot -= hMetaData->ind_list[hMetaData->nb_ind_tot].nb_bits;
hMetaData->ind_list[hMetaData->nb_ind_tot].nb_bits = -1;
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
+ sprintf( hMetaData->ind_list[hMetaData->nb_ind_tot].function_name, "RESET in reset_metadata_spatial" );
+#endif
}
#ifdef DEBUGGING
assert( hMetaData->nb_bits_tot == nb_bits_metadata && "Problem in metadata for SCE" );
@@ -1963,6 +1979,9 @@ void restore_metadata_buffer(
for ( i = next_ind_start; i < hMetaData->nb_ind_tot; i++ )
{
hMetaData->ind_list[i].nb_bits = -1;
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
+ sprintf( hMetaData->ind_list[i].function_name, "RESET in restore_metadata_buffer" );
+#endif
}
hMetaData->nb_bits_tot = bit_pos_start;
hMetaData->nb_ind_tot = next_ind_start;
diff --git a/lib_enc/ivas_spar_md_enc.c b/lib_enc/ivas_spar_md_enc.c
index 2ab53a790a85d21a022a83bc148225ad46180586..55902edde63c5337b0081b031e7357c66c8615fe 100644
--- a/lib_enc/ivas_spar_md_enc.c
+++ b/lib_enc/ivas_spar_md_enc.c
@@ -449,7 +449,11 @@ static void write_metadata_buffer(
for ( i = 0; i < hMetaData_tmp->nb_ind_tot; i++ )
{
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
+ push_next_indice_( hMetaData_tmp->ind_list[i].function_name, hMetaData, hMetaData_tmp->ind_list[i].value, hMetaData_tmp->ind_list[i].nb_bits );
+#else
push_next_indice( hMetaData, hMetaData_tmp->ind_list[i].value, hMetaData_tmp->ind_list[i].nb_bits );
+#endif
}
return;
diff --git a/lib_enc/ivas_stereo_mdct_stereo_enc.c b/lib_enc/ivas_stereo_mdct_stereo_enc.c
index fa97984539101d7e80145469c21457c2f5532687..d97697434da3ff65ea66c67691ab0226cd639a84 100755
--- a/lib_enc/ivas_stereo_mdct_stereo_enc.c
+++ b/lib_enc/ivas_stereo_mdct_stereo_enc.c
@@ -411,16 +411,25 @@ void stereo_coder_tcx(
nAvailBitsMS[k] = ( ( mct_on ? 2 * sts[0]->bits_frame_channel : sts[0]->bits_frame_nominal ) - sts[0]->side_bits_frame_channel - sts[1]->side_bits_frame_channel - ( nSubframes == 2 ? OFFSET_BITS_TCX10 : OFFSET_BITS_TCX20 ) ) / nSubframes;
- MsStereoDecision( sfbConf, sts[0]->hTcxEnc->spectrum[k], sts[1]->hTcxEnc->spectrum[k], inv_spectrum[0][k], inv_spectrum[1][k], &hStereoMdct->mdct_stereo_mode[k], &ms_mask[k][0], nAvailBitsMS[k] );
-
- if ( sts[0]->igf )
+ if ( mct_on && nAvailBitsMS[k] <= 0 ) /*Force M/S when bit-budget is low for MCT*/
{
- IGFEncStereoEncoder( sfbConf, sts[0]->hIGFEnc, sts[0]->hTcxEnc->spectrum[k], sts[1]->hTcxEnc->spectrum[k], &ms_mask[k][0],
- &hStereoMdct->IGFStereoMode[k], hStereoMdct->mdct_stereo_mode[k], sts[0]->core == TCX_20_CORE, sts[0]->last_core == ACELP_CORE );
+ hStereoMdct->mdct_stereo_mode[k] = 1;
+ hStereoMdct->IGFStereoMode[k] = 1;
+ set_s( ms_mask[k], 1, sfbConf->sfbCnt );
}
else
{
- hStereoMdct->IGFStereoMode[k] = hStereoMdct->mdct_stereo_mode[k];
+ MsStereoDecision( sfbConf, sts[0]->hTcxEnc->spectrum[k], sts[1]->hTcxEnc->spectrum[k], inv_spectrum[0][k], inv_spectrum[1][k], &hStereoMdct->mdct_stereo_mode[k], &ms_mask[k][0], nAvailBitsMS[k] );
+
+ if ( sts[0]->igf )
+ {
+ IGFEncStereoEncoder( sfbConf, sts[0]->hIGFEnc, sts[0]->hTcxEnc->spectrum[k], sts[1]->hTcxEnc->spectrum[k], &ms_mask[k][0],
+ &hStereoMdct->IGFStereoMode[k], hStereoMdct->mdct_stereo_mode[k], sts[0]->core == TCX_20_CORE, sts[0]->last_core == ACELP_CORE );
+ }
+ else
+ {
+ hStereoMdct->IGFStereoMode[k] = hStereoMdct->mdct_stereo_mode[k];
+ }
}
if ( hStereoMdct->mdct_stereo_mode[k] != SMDCT_DUAL_MONO || hStereoMdct->IGFStereoMode[k] != SMDCT_DUAL_MONO )
diff --git a/lib_enc/lib_enc.c b/lib_enc/lib_enc.c
index 705f3364e4788a153df3b81ed809d0e433ed714e..7088abc5111e84e926f3ddde35e588a6aff336d1 100644
--- a/lib_enc/lib_enc.c
+++ b/lib_enc/lib_enc.c
@@ -1241,6 +1241,13 @@ ivas_error IVAS_ENC_EncodeFrameToSerial(
st_ivas->ind_list[i].nb_bits = -1;
}
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
+ for ( i = 0; i < st_ivas->ivas_max_num_indices; i++ )
+ {
+ memset( st_ivas->ind_list[i].function_name, 'A', 100 * sizeof( char ) );
+ }
+#endif
+
/* de-allocate old buffer of metadata indices */
if ( st_ivas->ind_list_metadata != NULL )
{
diff --git a/lib_enc/stat_enc.h b/lib_enc/stat_enc.h
index 3e09037ba7f9a36eeaf65ad5331ac77249546624..19a87b6a1ddcf3c1fad3c3f444a0efe7eb8c82fd 100755
--- a/lib_enc/stat_enc.h
+++ b/lib_enc/stat_enc.h
@@ -55,6 +55,9 @@ typedef struct
int16_t id; /* id of the indice */
uint16_t value; /* value of the quantized indice */
int16_t nb_bits; /* number of bits used for the quantization of the indice */
+#if defined( DEBUGGING ) && defined( DBG_BITSTREAM_ANALYSIS )
+ char function_name[100];
+#endif
} Indice, *INDICE_HANDLE;
/*----------------------------------------------------------------------------------*
diff --git a/lib_isar/isar_lc3plus_common.c b/lib_isar/isar_lc3plus_common.c
index 4236c9ced7cc64a4615b798d79b0ab1a0ac14300..a186908990ca5366ef81bb6e5a5b53c8726eb6fc 100644
--- a/lib_isar/isar_lc3plus_common.c
+++ b/lib_isar/isar_lc3plus_common.c
@@ -33,7 +33,7 @@
#include "options.h"
#include "isar_lc3plus_common.h"
#include "ivas_error.h"
-#include "lc3.h"
+#include "lc3plus.h"
/*-----------------------------------------------------------------------------------------*
* Function ISAR_LC3PLUS_LC3plusErrToIvasErr()
diff --git a/lib_isar/isar_lc3plus_common.h b/lib_isar/isar_lc3plus_common.h
index b99348e0ed33b2269ce7e5b9e41d2715c8102712..eb3e7b0ad2d7d245c046cd7fc7699d7a178b8b78 100644
--- a/lib_isar/isar_lc3plus_common.h
+++ b/lib_isar/isar_lc3plus_common.h
@@ -37,7 +37,7 @@
#include
#include "options.h"
#include "ivas_error.h"
-#include "lc3.h"
+#include "lc3plus.h"
#include "isar_lc3plus_payload.h"
/*! common configuration parameters between encoder and decoder */
diff --git a/lib_isar/isar_lc3plus_dec.c b/lib_isar/isar_lc3plus_dec.c
index 560f34f1c46077a88416829e3c748c11caf75e2b..c5d78f444684b1433894114ea9f1377ee9a49e4b 100644
--- a/lib_isar/isar_lc3plus_dec.c
+++ b/lib_isar/isar_lc3plus_dec.c
@@ -36,7 +36,7 @@
#include "ivas_prot.h"
#include "isar_lc3plus_dec.h"
#include "isar_lc3plus_common.h"
-#include "lc3.h"
+#include "lc3plus.h"
#include "ivas_error_utils.h"
#include "wmc_auto.h"
diff --git a/lib_isar/isar_lc3plus_dec.h b/lib_isar/isar_lc3plus_dec.h
index 82b9e51e1948a81bed58b6e63dbb49b88a5033d0..d5cb37aaa917dfc2dc004a1ca7b64a6ad6eb3d20 100644
--- a/lib_isar/isar_lc3plus_dec.h
+++ b/lib_isar/isar_lc3plus_dec.h
@@ -35,7 +35,7 @@
#include
#include "options.h"
-#include "lc3.h"
+#include "lc3plus.h"
#include "ivas_error.h"
#include "ivas_cnst.h"
#include "isar_lc3plus_common.h"
diff --git a/lib_isar/isar_lc3plus_enc.c b/lib_isar/isar_lc3plus_enc.c
index 62a803f38fc4c72e08084c22905c7d6f00561cbc..c6e2d31334271169367f7f0695806256a7f4c049 100644
--- a/lib_isar/isar_lc3plus_enc.c
+++ b/lib_isar/isar_lc3plus_enc.c
@@ -32,7 +32,7 @@
#include "isar_lc3plus_enc.h"
#include "isar_lc3plus_common.h"
-#include "lc3.h"
+#include "lc3plus.h"
#include "ivas_error_utils.h"
#include "prot.h"
#include "wmc_auto.h"
diff --git a/lib_isar/isar_lc3plus_enc.h b/lib_isar/isar_lc3plus_enc.h
index 9c80033fd36a9d7fea205bd63bb9497611131167..ed6c526011d7a4861dd040ae4d6b3696437aa578 100644
--- a/lib_isar/isar_lc3plus_enc.h
+++ b/lib_isar/isar_lc3plus_enc.h
@@ -35,7 +35,7 @@
#include
#include "ivas_error.h"
-#include "lc3.h"
+#include "lc3plus.h"
#include "isar_lc3plus_common.h"
#include "isar_lc3plus_payload.h"
diff --git a/lib_isar/isar_lc3plus_payload.h b/lib_isar/isar_lc3plus_payload.h
index e95128578493f5561fdcb2292aef37f0c202e428..580a58ca651defe96eeb84229b8f07b3407a756c 100644
--- a/lib_isar/isar_lc3plus_payload.h
+++ b/lib_isar/isar_lc3plus_payload.h
@@ -35,7 +35,7 @@
#include
#include
-#include "lc3.h"
+#include "lc3plus.h"
#include "options.h"
diff --git a/lib_isar/lib_isar_pre_rend.c b/lib_isar/lib_isar_pre_rend.c
index 09323f6eedf08d3900bde17cb70a27a71e8be582..d24bc94de7411889db57dd0757fbd50945d41dcf 100644
--- a/lib_isar/lib_isar_pre_rend.c
+++ b/lib_isar/lib_isar_pre_rend.c
@@ -53,8 +53,8 @@
*------------------------------------------------------------------------*/
ivas_error ISAR_PRE_REND_open(
- SPLIT_REND_WRAPPER *hSplitBinRend, /* i/o: Split renderer pre-renerer handle */
- ISAR_SPLIT_REND_CONFIG_DATA *pSplitRendConfig, /* i/o: Split renderer pre-renerer config */
+ SPLIT_REND_WRAPPER *hSplitBinRend, /* i/o: Split renderer pre-renderer handle */
+ ISAR_SPLIT_REND_CONFIG_DATA *pSplitRendConfig, /* i/o: Split renderer pre-renderer config */
const int32_t output_Fs, /* i : output sampling rate */
const int16_t cldfb_in_flag, /* i : Flag to indicate CLDFB or time doamin input */
const int16_t pcm_out_flag, /* i : Flag to indicate PCM output */
@@ -94,9 +94,7 @@ ivas_error ISAR_PRE_REND_open(
isCldfbNeeded = 1;
}
- hSplitBinRend->hCldfbHandles = NULL;
-
- if ( isCldfbNeeded )
+ if ( isCldfbNeeded && hSplitBinRend->hCldfbHandles == NULL )
{
if ( ( hSplitBinRend->hCldfbHandles = (CLDFB_HANDLES_WRAPPER_HANDLE) malloc( sizeof( CLDFB_HANDLES_WRAPPER ) ) ) == NULL )
{
@@ -286,7 +284,7 @@ ivas_error ISAR_PRE_REND_MultiBinToSplitBinaural(
const int16_t max_bands, /* i : CLDFB bands */
float *output[], /* i/o: PCM in/out buffer */
const int16_t low_res_pre_rend_rot, /* i : low time resolution pre-renderer flag */
- const int16_t cldfb_in_flag, /* i : Flag to indicate CLDFB or time doamin input */
+ const int16_t cldfb_in_flag, /* i : Flag to indicate CLDFB or time domain input */
const int16_t pcm_out_flag, /* i : Flag to indicate PCM output */
const int16_t ro_md_flag /* i : Flag to indicate real only metadata for yaw */
)
diff --git a/lib_lc3plus/ari_codec.c b/lib_lc3plus/ari_codec.c
index 5ba87a32bc3b07eeeb825fe2cb6c6271ec9db0a3..2a76ecac8338b848957fd73b96f480d930038317 100644
--- a/lib_lc3plus/ari_codec.c
+++ b/lib_lc3plus/ari_codec.c
@@ -705,7 +705,7 @@ void ac_shift_fl(Encoder_State_fl* st)
st->carry_count = st->carry_count + 1;
}
- st->low = st->low << 8;
+ st->low = (LC3_INT)((LC3_UINT32)st->low << 8);
st->low = (st->low) & (16777215); /* 2^24 - 1 */
}
diff --git a/lib_lc3plus/functions.h b/lib_lc3plus/functions.h
index 46daa64bf3f3757f8f546a4c2d5c878a7924eb2b..a2f4857b2ae4a3d10511b5e08249d95a73634be4 100644
--- a/lib_lc3plus/functions.h
+++ b/lib_lc3plus/functions.h
@@ -15,9 +15,9 @@
#include "clib.h"
#include "defines.h"
#include "float.h"
-#include "lc3.h"
-#include "setup_dec_lc3.h"
-#include "setup_enc_lc3.h"
+#include "lc3plus.h"
+#include "setup_dec_lc3plus.h"
+#include "setup_enc_lc3plus.h"
#include "structs.h"
#include "util.h"
diff --git a/lib_lc3plus/lc3.c b/lib_lc3plus/lc3plus.c
similarity index 98%
rename from lib_lc3plus/lc3.c
rename to lib_lc3plus/lc3plus.c
index 56a39286f84a23ee09d244e0bc5fd057ba248b08..d208cfb1512bfd8a028e01bca5b8db1bfa0efbfa 100644
--- a/lib_lc3plus/lc3.c
+++ b/lib_lc3plus/lc3plus.c
@@ -9,13 +9,13 @@
#include "options.h"
#include "wmc_auto.h"
-#include "lc3.h"
+#include "lc3plus.h"
#include "defines.h"
#include "functions.h"
#include
-#include "setup_dec_lc3.h"
-#include "setup_enc_lc3.h"
+#include "setup_dec_lc3plus.h"
+#include "setup_enc_lc3plus.h"
#define RETURN_IF(cond, error) \
if (cond) \
@@ -88,9 +88,9 @@ static int null_in_list(void **list, int n)
/* return pointer to aligned base + base_size, *base_size += size + 4 bytes align */
void *balloc(void *base, size_t *base_size, size_t size)
{
- uintptr_t ptr = ((uintptr_t)base + *base_size + 3) & ~3;
+ uintptr_t ptr = ((uintptr_t)base + *base_size + 3) & (uintptr_t)(~3);
assert((uintptr_t)base % 4 == 0); /* base must be 4-byte aligned */
- *base_size = (*base_size + size + 3) & ~3;
+ *base_size = (*base_size + size + 3) & (uintptr_t)(~3);
return (void *)ptr;
}
diff --git a/lib_lc3plus/lc3.h b/lib_lc3plus/lc3plus.h
similarity index 99%
rename from lib_lc3plus/lc3.h
rename to lib_lc3plus/lc3plus.h
index b5f8809e7e167302c30da51e2989743d09fd21fe..063714467da07d43f63d214cbfcec5eb13ff507c 100644
--- a/lib_lc3plus/lc3.h
+++ b/lib_lc3plus/lc3plus.h
@@ -7,7 +7,7 @@
* estoppel or otherwise. *
******************************************************************************/
-/*! \file lc3.h
+/*! \file lc3plus.h
* This header provides the API for LC3plus.
*
* This library is targeting devices with extreme memory limitations, so memory management
diff --git a/lib_lc3plus/setup_com_lc3.c b/lib_lc3plus/setup_com_lc3plus.c
similarity index 100%
rename from lib_lc3plus/setup_com_lc3.c
rename to lib_lc3plus/setup_com_lc3plus.c
diff --git a/lib_lc3plus/setup_dec_lc3.c b/lib_lc3plus/setup_dec_lc3plus.c
similarity index 99%
rename from lib_lc3plus/setup_dec_lc3.c
rename to lib_lc3plus/setup_dec_lc3plus.c
index 7bdbf0523da2e9867aa93f84029a261739b6384c..9e9a5ea64e021c3669e4b439ac19bd22f9f1c43c 100644
--- a/lib_lc3plus/setup_dec_lc3.c
+++ b/lib_lc3plus/setup_dec_lc3plus.c
@@ -9,7 +9,7 @@
#include "options.h"
#include "wmc_auto.h"
-#include "setup_dec_lc3.h"
+#include "setup_dec_lc3plus.h"
#include "functions.h"
#include
#include
diff --git a/lib_lc3plus/setup_dec_lc3.h b/lib_lc3plus/setup_dec_lc3plus.h
similarity index 100%
rename from lib_lc3plus/setup_dec_lc3.h
rename to lib_lc3plus/setup_dec_lc3plus.h
diff --git a/lib_lc3plus/setup_enc_lc3.c b/lib_lc3plus/setup_enc_lc3plus.c
similarity index 99%
rename from lib_lc3plus/setup_enc_lc3.c
rename to lib_lc3plus/setup_enc_lc3plus.c
index 750a97bb043fb78f7c3f3f0f6149c470dd8e233d..80bd909ab3268179e74cc61bf9c09e5223c570dc 100644
--- a/lib_lc3plus/setup_enc_lc3.c
+++ b/lib_lc3plus/setup_enc_lc3plus.c
@@ -9,7 +9,7 @@
#include "options.h"
#include "wmc_auto.h"
-#include "setup_enc_lc3.h"
+#include "setup_enc_lc3plus.h"
#include "functions.h"
#include
diff --git a/lib_lc3plus/setup_enc_lc3.h b/lib_lc3plus/setup_enc_lc3plus.h
similarity index 100%
rename from lib_lc3plus/setup_enc_lc3.h
rename to lib_lc3plus/setup_enc_lc3plus.h
diff --git a/lib_rend/ivas_crend.c b/lib_rend/ivas_crend.c
index 8455901f4d0d9642ba1a05221c19ca14e40640ef..b120fd6c6ac24a56830faed20d530b387a29c4cb 100644
--- a/lib_rend/ivas_crend.c
+++ b/lib_rend/ivas_crend.c
@@ -1076,6 +1076,11 @@ ivas_error ivas_rend_initCrendWrapper(
( *pCrend )->binaural_latency_ns = 0;
( *pCrend )->hHrtfCrend = NULL;
+ for ( pos_idx = 0; pos_idx < MAX_HEAD_ROT_POSES; pos_idx++ )
+ {
+ ( *pCrend )->hCrend[pos_idx] = NULL;
+ }
+
for ( pos_idx = 0; pos_idx < num_poses; pos_idx++ )
{
hCrend = NULL;
@@ -1340,8 +1345,7 @@ ivas_error ivas_rend_openCrend(
*------------------------------------------------------------------------*/
void ivas_rend_closeCrend(
- CREND_WRAPPER_HANDLE *pCrend,
- const int16_t num_poses )
+ CREND_WRAPPER_HANDLE *pCrend )
{
int16_t i;
int16_t pos_idx;
@@ -1357,7 +1361,7 @@ void ivas_rend_closeCrend(
ivas_hrtf_close( &( *pCrend )->hHrtfCrend );
}
- for ( pos_idx = 0; pos_idx < num_poses; pos_idx++ )
+ for ( pos_idx = 0; pos_idx < MAX_HEAD_ROT_POSES; pos_idx++ )
{
hCrend = ( *pCrend )->hCrend[pos_idx];
if ( hCrend != NULL )
diff --git a/lib_rend/ivas_objectRenderer.c b/lib_rend/ivas_objectRenderer.c
index ed4fb71c423b538609cc173125c6ff82fdf56933..f0fb90fe4e1df019fd8337662615bd92f3424093 100644
--- a/lib_rend/ivas_objectRenderer.c
+++ b/lib_rend/ivas_objectRenderer.c
@@ -534,13 +534,16 @@ ivas_error TDREND_Update_object_positions(
const ISM_METADATA_HANDLE *hIsmMetaData /* i : Input metadata for ISM objects */
)
{
+#ifndef NONBE_1377_REND_DIRATT_CONF
TDREND_DirAtten_t *DirAtten_p;
+#endif
int16_t nS;
float Pos[3];
float Dir[3];
ivas_error error;
-
+#ifndef NONBE_1377_REND_DIRATT_CONF
DirAtten_p = hBinRendererTd->DirAtten_p;
+#endif
/* For each source, write the frame data to the source object*/
for ( nS = 0; nS < num_src; nS++ )
@@ -557,11 +560,12 @@ ivas_error TDREND_Update_object_positions(
return error;
}
+#ifndef NONBE_1377_REND_DIRATT_CONF
if ( ( error = TDREND_MIX_SRC_SetDirAtten( hBinRendererTd, nS, DirAtten_p ) ) != IVAS_ERR_OK )
{
return error;
}
-
+#endif
if ( ( error = TDREND_MIX_SRC_SetGain( hBinRendererTd, nS, hIsmMetaData[nS]->gain ) ) != IVAS_ERR_OK )
{
return error;
@@ -675,7 +679,13 @@ ivas_error ivas_td_binaural_open_ext(
AUDIO_CONFIG inConfig,
RENDER_CONFIG_DATA *hRendCfg, /* i : Renderer configuration */
LSSETUP_CUSTOM_STRUCT *customLsInput,
+#ifdef NONBE_1377_REND_DIRATT_CONF
+ const int32_t outFs, /* i: output sampling rate */
+ const int16_t object_id /* i: Object ID */
+)
+#else
const int32_t outFs )
+#endif
{
int16_t nchan_transport;
AUDIO_CONFIG transport_config;
@@ -712,7 +722,11 @@ ivas_error ivas_td_binaural_open_ext(
if ( NULL != hRendCfg )
{
+#ifdef NONBE_1377_REND_DIRATT_CONF
+ directivity = hRendCfg->directivity + 3 * object_id;
+#else
directivity = hRendCfg->directivity;
+#endif
distAtt = hRendCfg->distAtt;
}
diff --git a/lib_rend/ivas_omasa_ana.c b/lib_rend/ivas_omasa_ana.c
index 95d67ee4fe130c0b5bd45d9068f77f1c5f723328..e7f58262edb660d75478f5e9c25733bb752f9487 100644
--- a/lib_rend/ivas_omasa_ana.c
+++ b/lib_rend/ivas_omasa_ana.c
@@ -482,7 +482,6 @@ static void ivas_omasa_dmx(
float g1, g2;
float data_out_f[MASA_MAX_TRANSPORT_CHANNELS][L_FRAME48k];
-
for ( i = 0; i < nchan_transport; i++ )
{
set_zero( data_out_f[i], input_frame );
@@ -490,24 +489,31 @@ static void ivas_omasa_dmx(
for ( i = 0; i < nchan_ism; i++ )
{
- azimuth = ism_azimuth[i];
- elevation = ism_elevation[i];
+ if ( nchan_transport == 1 )
+ {
+ v_add( data_out_f[0], data_in_f[i], data_out_f[0], input_frame );
+ }
+ else
+ {
+ azimuth = ism_azimuth[i];
+ elevation = ism_elevation[i];
- ivas_ism_get_stereo_gains( azimuth, elevation, &gains[0], &gains[1] );
+ ivas_ism_get_stereo_gains( azimuth, elevation, &gains[0], &gains[1] );
- /* Downmix using the panning gains */
- for ( j = 0; j < nchan_transport; j++ )
- {
- if ( fabsf( gains[j] ) > 0.0 || fabsf( prev_gains[i][j] ) > 0.0f )
+ /* Downmix using the panning gains */
+ for ( j = 0; j < nchan_transport; j++ )
{
- for ( k = 0; k < input_frame; k++ )
+ if ( fabsf( gains[j] ) > 0.0 || fabsf( prev_gains[i][j] ) > 0.0f )
{
- g1 = interpolator[k];
- g2 = 1.0f - g1;
- data_out_f[j][k] += ( g1 * gains[j] + g2 * prev_gains[i][j] ) * data_in_f[i][k];
+ for ( k = 0; k < input_frame; k++ )
+ {
+ g1 = interpolator[k];
+ g2 = 1.0f - g1;
+ data_out_f[j][k] += ( g1 * gains[j] + g2 * prev_gains[i][j] ) * data_in_f[i][k];
+ }
}
+ prev_gains[i][j] = gains[j];
}
- prev_gains[i][j] = gains[j];
}
}
diff --git a/lib_rend/ivas_output_init.c b/lib_rend/ivas_output_init.c
index 560f9f66618709e0f7b59a0d53d04a7a495582dd..01e1d77231ff06fc84f35a4ca20448a53e8b2729 100644
--- a/lib_rend/ivas_output_init.c
+++ b/lib_rend/ivas_output_init.c
@@ -368,36 +368,67 @@ int16_t ivas_get_nchan_buffers_dec(
*-------------------------------------------------------------------*/
ivas_error ivas_output_buff_dec(
- float *p_output_f[], /* i/o: output audio buffers */
- const int16_t nchan_out_buff_old, /* i : previous frame number of output channels */
- const int16_t nchan_out_buff /* i : number of output channels */
+ float *p_output_f[], /* i/o: output audio buffers */
+ const int16_t nchan_out_buff, /* i : number of output channels */
+ const int16_t Opt_tsm, /* i : TSM option flag */
+ DECODER_TC_BUFFER_HANDLE hTcBuffer /* i : TSM buffer handle */
)
{
- int16_t ch;
+ int16_t ch, nchan_tc_jbm, nsamp_to_allocate, n_samp_full, offset;
- if ( nchan_out_buff > nchan_out_buff_old )
+ for ( ch = 0; ch < MAX_OUTPUT_CHANNELS + MAX_NUM_OBJECTS; ch++ )
{
- for ( ch = nchan_out_buff_old; ch < nchan_out_buff; ch++ )
+ p_output_f[ch] = NULL;
+ }
+
+ if ( hTcBuffer->tc_buffer2 != NULL )
+ {
+ free( hTcBuffer->tc_buffer2 );
+ hTcBuffer->tc_buffer2 = NULL;
+ }
+
+ nchan_tc_jbm = 0;
+ if ( Opt_tsm )
+ {
+ /* JBM decoding: output audio buffers are shared with audio buffers from 'hTcBuffer->tc[]' */
+ nchan_tc_jbm = max( hTcBuffer->nchan_transport_jbm, hTcBuffer->nchan_buffer_full );
+ }
+
+ if ( nchan_out_buff <= nchan_tc_jbm && !Opt_tsm )
+ {
+ for ( ch = 0; ch < nchan_out_buff; ch++ )
+ {
+ p_output_f[ch] = hTcBuffer->tc[ch];
+ }
+ }
+ else
+ {
+ for ( ch = 0; ch < nchan_tc_jbm; ch++ )
+ {
+ p_output_f[ch] = hTcBuffer->tc[ch];
+ }
+
+ /* non-JBM decoding: allocate output audio buffers */
+ /* JBM decoding: when not enough audio buffers 'hTcBuffer->tc[]', allocate additional buffers */
+ n_samp_full = ( 48000 / FRAMES_PER_SEC );
+ nsamp_to_allocate = ( nchan_out_buff - nchan_tc_jbm ) * n_samp_full;
+
+ if ( nsamp_to_allocate > 0 )
{
-#ifdef DEBUGGING
- if ( p_output_f[ch] != NULL )
- {
- return ( IVAS_ERROR( IVAS_ERR_FAILED_ALLOC, "Memory for floating-point output audio buffer is already allocated!\n" ) );
- }
-#endif
/* note: these are intra-frame heap memories */
- if ( ( p_output_f[ch] = (float *) malloc( ( 48000 / FRAMES_PER_SEC ) * sizeof( float ) ) ) == NULL )
+ if ( ( hTcBuffer->tc_buffer2 = (float *) malloc( nsamp_to_allocate * sizeof( float ) ) ) == NULL )
{
return ( IVAS_ERROR( IVAS_ERR_FAILED_ALLOC, "Can not allocate memory for floating-point output audio buffer!\n" ) );
}
+
+ set_zero( hTcBuffer->tc_buffer2, nsamp_to_allocate );
}
- }
- else
- {
- for ( ch = nchan_out_buff; ch < nchan_out_buff_old; ch++ )
+
+ offset = 0;
+ for ( ; ch < nchan_out_buff; ch++ )
{
- free( p_output_f[ch] );
- p_output_f[ch] = NULL;
+ p_output_f[ch] = &hTcBuffer->tc_buffer2[offset];
+ offset += n_samp_full;
}
}
diff --git a/lib_rend/ivas_prot_rend.h b/lib_rend/ivas_prot_rend.h
index f20b7681f23e0826ccd8be5702b4fa0e6b687e45..937923c3386d8e44e806692a29920d1a15b1dc18 100644
--- a/lib_rend/ivas_prot_rend.h
+++ b/lib_rend/ivas_prot_rend.h
@@ -661,7 +661,12 @@ ivas_error ivas_td_binaural_open_ext(
const AUDIO_CONFIG inConfig,
RENDER_CONFIG_DATA *hRendCfg, /* i : Renderer configuration */
LSSETUP_CUSTOM_STRUCT *customLsInput,
+#ifdef NONBE_1377_REND_DIRATT_CONF
+ const int32_t output_Fs, /* i: output sampling rate */
+ const int16_t object_id /* i: Object ID */
+#else
const int32_t output_Fs
+#endif
);
void ivas_td_binaural_close(
@@ -903,9 +908,8 @@ ivas_error ivas_rend_openCrend(
const int16_t num_poses
);
-void ivas_rend_closeCrend(
- CREND_WRAPPER_HANDLE *pCrend,
- const int16_t num_poses
+void ivas_rend_closeCrend(
+ CREND_WRAPPER_HANDLE *pCrend
);
ivas_error ivas_Crend_hrtf_init(
@@ -946,8 +950,7 @@ ivas_error ivas_binaural_reverb_init(
const IVAS_ROOM_ACOUSTICS_CONFIG_DATA *roomAcoustics, /* i/o: room acoustics parameters */
const int32_t sampling_rate, /* i : sampling rate */
const float *defaultTimes, /* i : default reverberation times */
- const float *defaultEne /* i : default reverberation energies */
- ,
+ const float *defaultEne, /* i : default reverberation energies */
float *earlyEne /* i/o: Early part energies to be modified */
);
@@ -1591,6 +1594,40 @@ void ivas_rend_closeCldfbRend(
CLDFB_REND_WRAPPER *pCldfbRend
);
+/*----------------------------------------------------------------------------------*
+ * Time domain ring buffer prototypes
+ *----------------------------------------------------------------------------------*/
+
+ivas_error ivas_TD_RINGBUF_Open(
+ TD_RINGBUF_HANDLE *ph, /* i/o: Ring buffer handle */
+ const uint32_t capacity_per_channel, /* i : Number of samples stored per channel */
+ const uint16_t num_channels /* i : Number of channels */
+);
+
+void ivas_TD_RINGBUF_Close(
+ TD_RINGBUF_HANDLE *ph /* i/o: Ring buffer handle */
+);
+
+void ivas_TD_RINGBUF_Push(
+ TD_RINGBUF_HANDLE h, /* i/o: Ring buffer handle */
+ const float *data, /* i : Input data */
+ const uint32_t num_samples_per_channel /* i : Number of samples per channel to store */
+);
+
+void ivas_TD_RINGBUF_PushZeros(
+ TD_RINGBUF_HANDLE h, /* i/o: Ring buffer handle */
+ const uint32_t num_samples_per_channel /* i : Number of zeros per channel to store */
+);
+
+void ivas_TD_RINGBUF_Pop(
+ TD_RINGBUF_HANDLE h, /* i/o: Ring buffer handle */
+ float *data, /* i : Output data */
+ const uint32_t num_samples_per_channel /* i : Number of samples per channel to retrieve*/
+);
+
+uint32_t ivas_TD_RINGBUF_Size(
+ const TD_RINGBUF_HANDLE h /* i : Ring buffer handle */
+);
/* clang-format on */
diff --git a/lib_rend/ivas_reverb.c b/lib_rend/ivas_reverb.c
index 2811a3c4d03ec644555e7daa56eca3dd233f1638..b4adf013fb5c0386553b76a7001425770d34ab62 100644
--- a/lib_rend/ivas_reverb.c
+++ b/lib_rend/ivas_reverb.c
@@ -79,10 +79,10 @@
#define MAX_NR_OUTPUTS ( 2 )
-const int16_t init_loop_delay[IVAS_REV_MAX_NR_BRANCHES] = { 37, 31, 29, 23, 19, 17, 13, 11 };
-const int16_t default_loop_delay_48k[IVAS_REV_MAX_NR_BRANCHES] = { 2309, 1861, 1523, 1259, 1069, 919, 809, 719 };
-const int16_t default_loop_delay_32k[IVAS_REV_MAX_NR_BRANCHES] = { 1531, 1237, 1013, 839, 709, 613, 541, 479 };
-const int16_t default_loop_delay_16k[IVAS_REV_MAX_NR_BRANCHES] = { 769, 619, 509, 421, 353, 307, 269, 239 };
+static const int16_t init_loop_delay[IVAS_REV_MAX_NR_BRANCHES] = { 37, 31, 29, 23, 19, 17, 13, 11 };
+static const int16_t default_loop_delay_48k[IVAS_REV_MAX_NR_BRANCHES] = { 2309, 1861, 1523, 1259, 1069, 919, 809, 719 };
+static const int16_t default_loop_delay_32k[IVAS_REV_MAX_NR_BRANCHES] = { 1531, 1237, 1013, 839, 709, 613, 541, 479 };
+static const int16_t default_loop_delay_16k[IVAS_REV_MAX_NR_BRANCHES] = { 769, 619, 509, 421, 353, 307, 269, 239 };
/*------------------------------------------------------------------------------------------*
* Local Struct definition
@@ -682,8 +682,6 @@ static ivas_error initialize_reverb_filters(
{
ivas_error error;
- error = IVAS_ERR_OK;
-
/* init correlation and coloration filters */
if ( ( error = ivas_reverb_t2f_f2t_init( &hReverb->fft_filter_ols, hReverb->fft_size, hReverb->fft_subblock_size ) ) != IVAS_ERR_OK )
{
@@ -710,7 +708,7 @@ static ivas_error initialize_reverb_filters(
return error;
}
- return error;
+ return IVAS_ERR_OK;
}
@@ -1060,7 +1058,6 @@ ivas_error ivas_reverb_open(
int16_t fft_hist_size, transition_start, transition_length;
int16_t nr_fc_input, nr_fc_fft_filter;
- error = IVAS_ERR_OK;
output_frame = (int16_t) ( output_Fs / FRAMES_PER_SEC );
subframe_len = output_frame / MAX_PARAM_SPATIAL_SUBFRAMES;
predelay_bf_len = output_frame;
@@ -1240,7 +1237,7 @@ ivas_error ivas_reverb_open(
*hReverb = pState;
- return error;
+ return IVAS_ERR_OK;
}
@@ -1859,12 +1856,13 @@ static ivas_error ivas_binaural_reverb_open(
return IVAS_ERR_OK;
}
+
/*-------------------------------------------------------------------------
* ivas_binaural_reverb_init()
*
- * Allocate and initialize binaural room reverberator handle
- * for CLDFB renderers
+ * Initialize binaural room reverberator handle for FastConv renderer
*------------------------------------------------------------------------*/
+
ivas_error ivas_binaural_reverb_init(
REVERB_STRUCT_HANDLE *hReverbPr, /* i/o: binaural reverb handle */
const HRTFS_STATISTICS_HANDLE hHrtfStatistics, /* i : HRTF statistics handle */
@@ -1873,9 +1871,8 @@ ivas_error ivas_binaural_reverb_init(
const IVAS_ROOM_ACOUSTICS_CONFIG_DATA *roomAcoustics, /* i/o: room acoustics parameters */
const int32_t sampling_rate, /* i : sampling rate */
const float *defaultTimes, /* i : default reverberation times */
- const float *defaultEne /* i : default reverberation energies */
- ,
- float *earlyEne /* i/o: Early part energies to be modified */
+ const float *defaultEne, /* i : default reverberation energies */
+ float *earlyEne /* i/o: Early part energies to be modified */
)
{
ivas_error error;
@@ -1883,24 +1880,23 @@ ivas_error ivas_binaural_reverb_init(
float revTimes[CLDFB_NO_CHANNELS_MAX];
float revEne[CLDFB_NO_CHANNELS_MAX];
- error = IVAS_ERR_OK;
-
if ( roomAcoustics != NULL )
{
-
- if ( ( error = ivas_reverb_prepare_cldfb_params( roomAcoustics,
- hHrtfStatistics,
- sampling_rate,
- revTimes,
- revEne ) ) != IVAS_ERR_OK )
+ if ( ( error = ivas_reverb_prepare_cldfb_params( roomAcoustics, hHrtfStatistics, sampling_rate, revTimes, revEne ) ) != IVAS_ERR_OK )
{
return error;
}
- preDelay = (int16_t) roundf( 48000.0f * roomAcoustics->acousticPreDelay / CLDFB_NO_CHANNELS_MAX );
+
+ /* Convert preDelay from seconds to CLDFB slots as needed by binaural reverb */
+ preDelay = (int16_t) roundf( roomAcoustics->acousticPreDelay * CLDFB_SLOTS_PER_SECOND );
}
else
{
+#ifdef FIX_1995_REVERB_INIT
+ for ( bin = 0; bin < numBins; bin++ )
+#else
for ( bin = 0; bin < CLDFB_NO_CHANNELS_MAX; bin++ )
+#endif
{
revTimes[bin] = defaultTimes[bin];
revEne[bin] = defaultEne[bin];
@@ -1908,7 +1904,11 @@ ivas_error ivas_binaural_reverb_init(
preDelay = 10;
}
+#ifdef FIX_1995_REVERB_INIT
+ for ( bin = 0; bin < numBins; bin++ )
+#else
for ( bin = 0; bin < CLDFB_NO_CHANNELS_MAX; bin++ )
+#endif
{
/* Adjust the room effect parameters when the reverberation time is less than a threshold value, to avoid
spectral artefacts with the synthetic reverberator. */
@@ -1924,13 +1924,17 @@ ivas_error ivas_binaural_reverb_init(
energyModifier = ( adjustedRevTime - revTimes[bin] ) / adjustedRevTime;
/* Adjust early and late energies, by moving late energy to early energy */
- adjustedEarlyEne = earlyEne[bin] + revEne[bin] * energyModifier;
+ if ( earlyEne != NULL )
+ {
+ adjustedEarlyEne = earlyEne[bin] + revEne[bin] * energyModifier;
+ earlyEne[bin] = adjustedEarlyEne; /* Store already here */
+ }
+
adjustedLateEne = revEne[bin] * ( 1.0f - energyModifier );
/* Store adjusted room effect parameters to be used in reverb processing */
revTimes[bin] = adjustedRevTime;
revEne[bin] = adjustedLateEne;
- earlyEne[bin] = adjustedEarlyEne;
}
}
@@ -1939,6 +1943,7 @@ ivas_error ivas_binaural_reverb_init(
return error;
}
+
/*-------------------------------------------------------------------------
* ivas_binaural_reverb_close()
*
diff --git a/lib_rend/ivas_rom_rend.c b/lib_rend/ivas_rom_rend.c
index bf6776ab043ac11929235199df66ef07f6fd9e43..3f4b906bd6fdaa8159f22abe9ed3fb2686c3fd6e 100644
--- a/lib_rend/ivas_rom_rend.c
+++ b/lib_rend/ivas_rom_rend.c
@@ -163,9 +163,9 @@ const float ap_lattice_coeffs_3[DIRAC_DECORR_FILTER_LEN_3*DIRAC_MAX_NUM_DECORR_F
const float * const ap_lattice_coeffs[DIRAC_DECORR_NUM_SPLIT_BANDS] =
{
- &ap_lattice_coeffs_1[0],
- &ap_lattice_coeffs_2[0],
- &ap_lattice_coeffs_3[0],
+ ap_lattice_coeffs_1,
+ ap_lattice_coeffs_2,
+ ap_lattice_coeffs_3,
};
const float ap_split_frequencies[DIRAC_DECORR_NUM_SPLIT_BANDS + 1] =
@@ -177,11 +177,13 @@ const int16_t sba_map_tc[11] =
{
0, 1, 2, 3, 4, 8, 9, 15, 5, 6, 7
};
+
const int16_t sba_map_tc_512[11] =
{
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 15
};
+
/*----------------------------------------------------------------------------------*
* FASTCONV and PARAMETRIC binaural renderer ROM tables
*----------------------------------------------------------------------------------*/
@@ -380,6 +382,7 @@ const float ivas_reverb_default_DSR[IVAS_REVERB_DEFAULT_N_BANDS] =
6.2001e-08f, 2.8483e-08f, 2.6267e-08f
};
+
/*----------------------------------------------------------------------------------*
* Renderer SBA & MC enc/dec matrices
*----------------------------------------------------------------------------------*/
@@ -388,6 +391,7 @@ const float ivas_reverb_default_DSR[IVAS_REVERB_DEFAULT_N_BANDS] =
const float ls_azimuth_CICP1[1] = { 0.0f };
const float ls_elevation_CICP1[1] = { 0.0f };
+
/*----------------------------------------------------------------------------------*
* EFAP ROM tables
*----------------------------------------------------------------------------------*/
diff --git a/lib_rend/ivas_rotation.c b/lib_rend/ivas_rotation.c
index 378736e65047a7d5e0c49ac45bc863d1759bb4f2..9a1d74581da922928edefa6bb34ff03f69a6dea7 100644
--- a/lib_rend/ivas_rotation.c
+++ b/lib_rend/ivas_rotation.c
@@ -366,10 +366,10 @@ void rotateFrame_sd(
int16_t azimuth, elevation;
float tmp;
- float tmp_gains[MAX_CICP_CHANNELS - 1];
- float gains[MAX_CICP_CHANNELS][MAX_CICP_CHANNELS];
- float gains_prev[MAX_CICP_CHANNELS][MAX_CICP_CHANNELS];
- float output_tmp[MAX_CICP_CHANNELS][L_FRAME48k];
+ float tmp_gains[MAX_LS_CHANNELS - 1];
+ float gains[MAX_LS_CHANNELS][MAX_LS_CHANNELS];
+ float gains_prev[MAX_LS_CHANNELS][MAX_LS_CHANNELS];
+ float output_tmp[MAX_LS_CHANNELS][L_FRAME48k];
float cross_fade[L_FRAME48k / MAX_PARAM_SPATIAL_SUBFRAMES];
push_wmops( "rotateFrame_sd" );
@@ -591,11 +591,11 @@ void rotateFrame_sd_cldfb(
)
{
int16_t iBlock, iBand, m, n;
- float gains[MAX_CICP_CHANNELS - 1][MAX_CICP_CHANNELS - 1];
+ float gains[MAX_LS_CHANNELS - 1][MAX_LS_CHANNELS - 1];
int16_t azimuth, elevation;
float g1;
- float realRot[MAX_CICP_CHANNELS - 1][MAX_PARAM_SPATIAL_SUBFRAMES * CLDFB_NO_CHANNELS_MAX];
- float imagRot[MAX_CICP_CHANNELS - 1][MAX_PARAM_SPATIAL_SUBFRAMES * CLDFB_NO_CHANNELS_MAX];
+ float realRot[MAX_LS_CHANNELS - 1][MAX_PARAM_SPATIAL_SUBFRAMES * CLDFB_NO_CHANNELS_MAX];
+ float imagRot[MAX_LS_CHANNELS - 1][MAX_PARAM_SPATIAL_SUBFRAMES * CLDFB_NO_CHANNELS_MAX];
float *p_realRot, *p_imagRot;
float *p_real, *p_imag;
int16_t nInChannels;
diff --git a/lib_rend/ivas_stat_rend.h b/lib_rend/ivas_stat_rend.h
index e990c336f69e0d8c2e45520c92754ff21f3a992d..69fcb30fb803f590f19fb50517892a98ecc97f9c 100644
--- a/lib_rend/ivas_stat_rend.h
+++ b/lib_rend/ivas_stat_rend.h
@@ -1371,6 +1371,22 @@ typedef struct
} CLDFB_REND_WRAPPER;
+/*----------------------------------------------------------------------------------*
+ * Time domain ring buffer structure
+ *----------------------------------------------------------------------------------*/
+
+typedef struct
+{
+ float *data; /* samples in interleaved layout */
+ uint32_t capacity;
+ uint16_t num_channels;
+ uint32_t write_pos;
+ uint32_t read_pos;
+ int16_t is_full;
+
+} TD_RINGBUF_DATA, *TD_RINGBUF_HANDLE;
+
+
/*----------------------------------------------------------------------------------*
* MASA external renderer structure
*----------------------------------------------------------------------------------*/
diff --git a/lib_rend/ivas_td_ring_buffer.c b/lib_rend/ivas_td_ring_buffer.c
new file mode 100644
index 0000000000000000000000000000000000000000..5c9c6089bbc41150c6469cd8240a1df3741b38ce
--- /dev/null
+++ b/lib_rend/ivas_td_ring_buffer.c
@@ -0,0 +1,288 @@
+/******************************************************************************************************
+
+ (C) 2022-2025 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB,
+ Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD.,
+ Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange,
+ Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other
+ contributors to this repository. All Rights Reserved.
+
+ This software is protected by copyright law and by international treaties.
+ The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB,
+ Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD.,
+ Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange,
+ Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other
+ contributors to this repository retain full ownership rights in their respective contributions in
+ the software. This notice grants no license of any kind, including but not limited to patent
+ license, nor is any license granted by implication, estoppel or otherwise.
+
+ Contributors are required to enter into the IVAS codec Public Collaboration agreement before making
+ contributions.
+
+ This software is provided "AS IS", without any express or implied warranties. The software is in the
+ development stage. It is intended exclusively for experts who have experience with such software and
+ solely for the purpose of inspection. All implied warranties of non-infringement, merchantability
+ and fitness for a particular purpose are hereby disclaimed and excluded.
+
+ Any dispute, controversy or claim arising under or in relation to providing this software shall be
+ submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in
+ accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and
+ the United Nations Convention on Contracts on the International Sales of Goods.
+
+*******************************************************************************************************/
+
+#include
+#include
+#include "ivas_error_utils.h"
+#include "ivas_prot_rend.h"
+#include "options.h"
+#include "wmc_auto.h"
+
+
+/*-----------------------------------------------------------------------*
+ * Local function prototypes
+ *-----------------------------------------------------------------------*/
+
+static uint32_t ivas_td_ringbuf_total_size(
+ TD_RINGBUF_HANDLE h )
+{
+ if ( h->is_full )
+ {
+ return h->capacity;
+ }
+
+ if ( h->read_pos <= h->write_pos )
+ {
+ return h->write_pos - h->read_pos;
+ }
+ /* else wrap around */
+ return h->write_pos + h->capacity - h->read_pos;
+}
+
+
+static int16_t ivas_td_ringbuf_has_space_for_num_samples(
+ TD_RINGBUF_HANDLE h,
+ const uint32_t num_samples )
+{
+ return (int16_t) ( ivas_td_ringbuf_total_size( h ) + num_samples <= h->capacity );
+}
+
+
+/*-----------------------------------------------------------------------*
+ * Global function definitions
+ *-----------------------------------------------------------------------*/
+
+/*---------------------------------------------------------------------*
+ * ivas_TD_RINGBUF_Open()
+ *
+ * Allocate a ring buffer for TD data with the given capacity of TD samples per channel.
+ *
+ * May return IVAS_ERR_FAILED_ALLOC on failed allocation, or IVAS_ERR_OK otherwise.
+ *---------------------------------------------------------------------*/
+
+ivas_error ivas_TD_RINGBUF_Open(
+ TD_RINGBUF_HANDLE *ph, /* i/o: Ring buffer handle */
+ const uint32_t capacity_per_channel, /* i : Number of samples stored per channel */
+ const uint16_t num_channels /* i : Number of channels */
+)
+{
+ TD_RINGBUF_HANDLE h;
+ uint32_t capacity;
+
+ capacity = capacity_per_channel * num_channels;
+
+ h = malloc( sizeof( TD_RINGBUF_DATA ) );
+ if ( h == NULL )
+ {
+ return IVAS_ERROR( IVAS_ERR_FAILED_ALLOC, "Failed to allocate memory for TD ring buffer\n" );
+ }
+ h->data = NULL;
+ h->capacity = 0;
+ h->num_channels = num_channels;
+ h->write_pos = 0;
+ h->read_pos = 0;
+ h->is_full = 0;
+ *ph = h;
+
+ h->data = malloc( capacity * sizeof( float ) );
+ if ( h->data == NULL )
+ {
+ return IVAS_ERROR( IVAS_ERR_FAILED_ALLOC, "Failed to allocate memory for TD ring buffer\n" );
+ }
+ h->capacity = capacity;
+
+ return IVAS_ERR_OK;
+}
+
+
+/*---------------------------------------------------------------------*
+ * ivas_TD_RINGBUF_Close()
+ *
+ * Dellocate TD ring buffer. The given handle will be set to NULL.
+
+ *---------------------------------------------------------------------*/
+
+void ivas_TD_RINGBUF_Close(
+ TD_RINGBUF_HANDLE *ph /* i/o: Ring buffer handle */
+)
+{
+ TD_RINGBUF_HANDLE h;
+
+ if ( ph == NULL )
+ {
+ return;
+ }
+ h = *ph;
+
+ if ( h == NULL )
+ {
+ return;
+ }
+
+ if ( h->data != NULL )
+ {
+ free( h->data );
+ }
+
+ free( h );
+ *ph = NULL;
+
+ return;
+}
+
+
+/*---------------------------------------------------------------------*
+ * ivas_TD_RINGBUF_Push()
+ *
+ * Push samples onto the back of the TD ring buffer.
+ * Returns total number of buffered samples (includes number of channels)
+ *---------------------------------------------------------------------*/
+
+void ivas_TD_RINGBUF_Push(
+ TD_RINGBUF_HANDLE h, /* i/o: Ring buffer handle */
+ const float *data, /* i : Input data */
+ const uint32_t num_samples_per_channel /* i : Number of samples per channel to store */
+)
+{
+ uint32_t s;
+ uint16_t c;
+
+ assert( ivas_td_ringbuf_has_space_for_num_samples( h, num_samples_per_channel * h->num_channels ) );
+
+ for ( s = 0; s < num_samples_per_channel; ++s )
+ {
+ for ( c = 0; c < h->num_channels; ++c )
+ {
+ h->data[h->write_pos] = *( data + c * num_samples_per_channel + s );
+ ++h->write_pos;
+
+ if ( h->write_pos == h->capacity )
+ {
+ h->write_pos = 0;
+ }
+ }
+ }
+
+ if ( h->read_pos == h->write_pos )
+ {
+ h->is_full = 1;
+ }
+
+ return;
+}
+
+
+/*---------------------------------------------------------------------*
+ * ivas_TD_RINGBUF_PushZeros()
+ *
+ * Push zero samples onto the back of the TD ring buffer.
+ *---------------------------------------------------------------------*/
+
+void ivas_TD_RINGBUF_PushZeros(
+ TD_RINGBUF_HANDLE h, /* i/o: Ring buffer handle */
+ const uint32_t num_samples_per_channel /* i : Number of zeros per channel to store */
+)
+{
+ uint32_t s;
+ uint16_t c;
+
+ assert( ivas_td_ringbuf_has_space_for_num_samples( h, num_samples_per_channel * h->num_channels ) );
+ if ( !num_samples_per_channel )
+ {
+ return;
+ }
+
+ for ( s = 0; s < num_samples_per_channel; ++s )
+ {
+ for ( c = 0; c < h->num_channels; ++c )
+ {
+ h->data[h->write_pos] = 0.f;
+ ++h->write_pos;
+
+ if ( h->write_pos == h->capacity )
+ {
+ h->write_pos = 0;
+ }
+ }
+ }
+
+ if ( h->read_pos == h->write_pos )
+ {
+ h->is_full = 1;
+ }
+
+ return;
+}
+
+
+/*---------------------------------------------------------------------*
+ * ivas_TD_RINGBUF_Pop()
+ *
+ * Pop samples from the front of the TD ring buffer.
+ *---------------------------------------------------------------------*/
+
+void ivas_TD_RINGBUF_Pop(
+ TD_RINGBUF_HANDLE h, /* i/o: Ring buffer handle */
+ float *data, /* i : Output data */
+ const uint32_t num_samples_per_channel /* i : Number of samples per channel to retrieve */
+)
+{
+ uint32_t s;
+ uint16_t c;
+
+ assert( ivas_td_ringbuf_total_size( h ) >= num_samples_per_channel * h->num_channels );
+
+ for ( s = 0; s < num_samples_per_channel; ++s )
+ {
+ for ( c = 0; c < h->num_channels; ++c )
+ {
+ *( data + c * num_samples_per_channel + s ) = h->data[h->read_pos];
+ ++h->read_pos;
+
+ if ( h->read_pos == h->capacity )
+ {
+ h->read_pos = 0;
+ }
+ }
+ }
+
+ if ( h->is_full )
+ {
+ h->is_full = 0;
+ }
+
+ return;
+}
+
+
+/*---------------------------------------------------------------------*
+ * ivas_TD_RINGBUF_Size()
+ *
+ * Returns number of buffered samples per channel.
+ *---------------------------------------------------------------------*/
+
+uint32_t ivas_TD_RINGBUF_Size(
+ const TD_RINGBUF_HANDLE h /* i : Ring buffer handle */
+)
+{
+ return ivas_td_ringbuf_total_size( h ) / (uint32_t) h->num_channels;
+}
diff --git a/lib_rend/lib_rend.c b/lib_rend/lib_rend.c
index ec4f99cd69d2a551771b0f855a802b018db145bb..645a23f2c827b7e056035e4c64ae2bbc21251eda 100644
--- a/lib_rend/lib_rend.c
+++ b/lib_rend/lib_rend.c
@@ -81,6 +81,7 @@ typedef struct
typedef struct
{
const int32_t *pOutSampleRate;
+ const int32_t *pMaxGlobalDelayNs;
const AUDIO_CONFIG *pOutConfig;
const LSSETUP_CUSTOM_STRUCT *pCustomLsOut;
const EFAP_WRAPPER *pEfapOutWrapper;
@@ -97,9 +98,11 @@ typedef struct
AUDIO_CONFIG inConfig;
IVAS_REND_InputId id;
IVAS_REND_AudioBuffer inputBuffer;
+ TD_RINGBUF_HANDLE delayBuffer;
float gain; /* Linear, not in dB */
rendering_context ctx;
int32_t numNewSamplesPerChannel; /* Used to keep track how much new audio was fed before rendering current frame */
+ int32_t delayNumSamples;
} input_base;
typedef struct
@@ -119,6 +122,9 @@ typedef struct
float nonDiegeticPanGain;
OMASA_ANA_HANDLE hOMasa;
uint16_t total_num_objects;
+#ifdef NONBE_1377_REND_DIRATT_CONF
+ int16_t object_id;
+#endif
float ism_metadata_delay_ms;
} input_ism;
@@ -189,6 +195,7 @@ typedef struct hrtf_handles
struct IVAS_REND
{
int32_t sampleRateOut;
+ int32_t maxGlobalDelayNs;
IVAS_LIMITER_HANDLE hLimiter;
#ifdef DEBUGGING
@@ -204,11 +211,12 @@ struct IVAS_REND
AUDIO_CONFIG outputConfig;
EFAP_WRAPPER efapOutWrapper;
IVAS_LSSETUP_CUSTOM_STRUCT customLsOut;
+
+ int16_t splitRendBFI;
SPLIT_REND_WRAPPER *splitRendWrapper;
IVAS_REND_AudioBuffer splitRendEncBuffer;
IVAS_REND_HeadRotData headRotData;
- int16_t splitRendBFI;
EXTERNAL_ORIENTATION_HANDLE hExternalOrientationData;
COMBINED_ORIENTATION_HANDLE hCombinedOrientationData;
@@ -262,6 +270,13 @@ static void freeInputBaseBufferData(
return;
}
+static int16_t latencyNsToSamples(
+ int32_t sampleRate,
+ int32_t latency_ns )
+{
+ return (int16_t) roundf( (float) ( latency_ns ) * ( sampleRate / 1000000000.f ) );
+}
+
static ivas_error allocateMcLfeDelayBuffer(
float **lfeDelayBuffer,
const int16_t data_size )
@@ -369,7 +384,7 @@ static void copyBufferToCLDFBarray(
static void accumulateCLDFBArrayToBuffer(
float re[][CLDFB_NO_COL_MAX][CLDFB_NO_CHANNELS_MAX],
float im[][CLDFB_NO_COL_MAX][CLDFB_NO_CHANNELS_MAX],
- IVAS_REND_AudioBuffer *buffer )
+ const IVAS_REND_AudioBuffer *buffer )
{
uint32_t smplIdx, slotIdx;
uint32_t numCldfbSamples, num_bands;
@@ -1162,6 +1177,8 @@ static void initRendInputBase(
inputBase->gain = 1.0f;
inputBase->ctx = rendCtx;
inputBase->numNewSamplesPerChannel = 0;
+ inputBase->delayNumSamples = 0;
+ inputBase->delayBuffer = NULL;
inputBase->inputBuffer.config.numSamplesPerChannel = 0;
inputBase->inputBuffer.config.numChannels = 0;
@@ -1210,6 +1227,7 @@ static rendering_context getRendCtx(
/* Note: when refactoring this, always take the ADDRESS of a member of the
* renderer struct, so that the context stores a POINTER to the member, even
* if the member is a pointer or handle itself. */
+ ctx.pMaxGlobalDelayNs = &hIvasRend->maxGlobalDelayNs;
ctx.pOutConfig = &hIvasRend->outputConfig;
ctx.pOutSampleRate = &hIvasRend->sampleRateOut;
ctx.pCustomLsOut = &hIvasRend->customLsOut;
@@ -1252,6 +1270,272 @@ static bool isIoConfigPairSupported(
}
+static int32_t getRendInputDelayIsm(
+ const input_ism *inputIsm,
+ bool splitPreRendCldfb )
+{
+ int32_t latency_ns;
+ latency_ns = 0;
+ (void) ( splitPreRendCldfb ); /* unused */
+
+ /* set the rendering delay in InputBase */
+ latency_ns = max( latency_ns,
+ inputIsm->tdRendWrapper.binaural_latency_ns );
+ if ( inputIsm->crendWrapper != NULL )
+ {
+ latency_ns = max( latency_ns,
+ inputIsm->crendWrapper->binaural_latency_ns );
+ }
+
+ return latency_ns;
+}
+
+
+static void setRendInputDelayIsm(
+ void *input,
+ bool splitPreRendCldfb )
+{
+ input_ism *inputIsm;
+ inputIsm = (input_ism *) input;
+
+ inputIsm->base.delayNumSamples = latencyNsToSamples( *inputIsm->base.ctx.pOutSampleRate,
+ getRendInputDelayIsm( inputIsm, splitPreRendCldfb ) );
+}
+
+
+static int32_t getRendInputDelayMc(
+ const input_mc *inputMc,
+ bool splitPreRendCldfb )
+{
+ int32_t latency_ns;
+ latency_ns = 0;
+ (void) ( splitPreRendCldfb ); /* unused */
+
+ latency_ns = max( latency_ns,
+ inputMc->tdRendWrapper.binaural_latency_ns );
+ if ( inputMc->crendWrapper != NULL )
+ {
+ latency_ns = max( latency_ns,
+ inputMc->crendWrapper->binaural_latency_ns );
+ }
+
+ return latency_ns;
+}
+
+
+static void setRendInputDelayMc(
+ void *input,
+ bool splitPreRendCldfb )
+{
+ input_mc *inputMc;
+ inputMc = (input_mc *) input;
+
+ inputMc->base.delayNumSamples = latencyNsToSamples( *inputMc->base.ctx.pOutSampleRate,
+ getRendInputDelayMc( inputMc, splitPreRendCldfb ) );
+}
+
+
+static int32_t getRendInputDelaySba(
+ const input_sba *inputSba,
+ bool splitPreRendCldfb )
+{
+ int32_t latency_ns;
+ latency_ns = 0;
+
+ if ( inputSba->cldfbRendWrapper.hCldfbRend != NULL )
+ {
+ latency_ns = max( latency_ns,
+ inputSba->cldfbRendWrapper.binaural_latency_ns +
+ ( splitPreRendCldfb ? 0 : IVAS_FB_DEC_DELAY_NS ) );
+ }
+ if ( inputSba->crendWrapper != NULL )
+ {
+ latency_ns = max( latency_ns,
+ inputSba->crendWrapper->binaural_latency_ns );
+ }
+
+ return latency_ns;
+}
+
+
+static void setRendInputDelaySba(
+ void *input,
+ bool splitPreRendCldfb )
+{
+ input_sba *inputSba;
+ inputSba = (input_sba *) input;
+
+ inputSba->base.delayNumSamples = latencyNsToSamples( *inputSba->base.ctx.pOutSampleRate,
+ getRendInputDelaySba( inputSba, splitPreRendCldfb ) );
+}
+
+
+static int32_t getRendInputDelayMasa(
+ const input_masa *inputMasa,
+ bool splitPreRendCldfb )
+{
+ int32_t latency_ns;
+
+ latency_ns = 0;
+
+ if ( ( inputMasa->base.inConfig == IVAS_AUDIO_CONFIG_MASA1 && *inputMasa->base.ctx.pOutConfig == IVAS_AUDIO_CONFIG_MONO ) ||
+ ( getAudioConfigType( *inputMasa->base.ctx.pOutConfig ) == IVAS_REND_AUDIO_CONFIG_TYPE_MASA ) )
+ {
+ return 0; /* no delay */
+ }
+ else
+ {
+ /* no delay applied for split rendering */
+ latency_ns = max( latency_ns,
+ (int32_t) ( ( splitPreRendCldfb ? 0 : (float) IVAS_FB_DEC_DELAY_NS + 0.5f ) ) );
+ }
+ return latency_ns;
+}
+
+
+static void setRendInputDelayMasa(
+ void *input,
+ bool splitPreRendCldfb )
+{
+ input_masa *inputMasa;
+ inputMasa = (input_masa *) input;
+
+ inputMasa->base.delayNumSamples = latencyNsToSamples( *inputMasa->base.ctx.pOutSampleRate,
+ getRendInputDelayMasa( inputMasa, splitPreRendCldfb ) );
+}
+
+
+static int32_t getMaxGlobalDelayNs( IVAS_REND_CONST_HANDLE hIvasRend )
+{
+ int16_t i;
+ int32_t latency_ns;
+ int32_t max_latency_ns;
+ bool splitPreRendCldfb;
+
+ max_latency_ns = 0;
+ /*assumes that input has been added which means codec has been set to either lcld or lc3plus (even if render config specified default)*/
+ if ( hIvasRend->hRendererConfig != NULL )
+ {
+ splitPreRendCldfb = ( hIvasRend->hRendererConfig->split_rend_config.codec == ISAR_SPLIT_REND_CODEC_LCLD );
+ }
+ else
+ {
+ splitPreRendCldfb = false;
+ }
+
+ /* Compute the maximum delay across all inputs */
+ for ( i = 0; i < RENDERER_MAX_ISM_INPUTS; i++ )
+ {
+ if ( hIvasRend->inputsIsm[i].base.inConfig != IVAS_AUDIO_CONFIG_INVALID )
+ {
+ latency_ns = getRendInputDelayIsm( &hIvasRend->inputsIsm[i], splitPreRendCldfb );
+ max_latency_ns = max( max_latency_ns, latency_ns );
+ }
+ }
+
+ for ( i = 0; i < RENDERER_MAX_MC_INPUTS; i++ )
+ {
+ if ( hIvasRend->inputsMc[i].base.inConfig != IVAS_AUDIO_CONFIG_INVALID )
+ {
+ latency_ns = getRendInputDelayMc( &hIvasRend->inputsMc[i], splitPreRendCldfb );
+ max_latency_ns = max( max_latency_ns, latency_ns );
+ }
+ }
+
+ for ( i = 0; i < RENDERER_MAX_SBA_INPUTS; i++ )
+ {
+ if ( hIvasRend->inputsSba[i].base.inConfig != IVAS_AUDIO_CONFIG_INVALID )
+ {
+ latency_ns = getRendInputDelaySba( &hIvasRend->inputsSba[i], splitPreRendCldfb );
+ max_latency_ns = max( max_latency_ns, latency_ns );
+ }
+ }
+
+ for ( i = 0; i < RENDERER_MAX_MASA_INPUTS; i++ )
+ {
+ if ( hIvasRend->inputsMasa[i].base.inConfig != IVAS_AUDIO_CONFIG_INVALID )
+ {
+ latency_ns = getRendInputDelayMasa( &hIvasRend->inputsMasa[i], splitPreRendCldfb );
+ max_latency_ns = max( max_latency_ns, latency_ns );
+ }
+ }
+
+ return max_latency_ns;
+}
+
+
+static void setMaxGlobalDelayNs( IVAS_REND_HANDLE hIvasRend )
+{
+ hIvasRend->maxGlobalDelayNs = getMaxGlobalDelayNs( (IVAS_REND_CONST_HANDLE) hIvasRend );
+}
+
+static ivas_error alignInputDelay(
+ input_base *inputBase,
+ const IVAS_REND_ReadOnlyAudioBuffer inputAudio,
+ const int32_t maxGlobalDelayNs,
+ const int32_t sampleRateOut,
+ const int16_t cldfb2tdSampleFact,
+ const bool flushInputs )
+{
+ ivas_error error;
+ input_ism *inputIsm;
+ int16_t maxGlobalDelaySamples;
+ int32_t numSamplesToPush, numSamplesToPop;
+ uint32_t ringBufferSize, preDelay;
+
+ maxGlobalDelaySamples = latencyNsToSamples( sampleRateOut, maxGlobalDelayNs );
+ maxGlobalDelaySamples *= cldfb2tdSampleFact;
+
+ /* check if we need to open the delay buffer */
+ if ( inputBase->delayBuffer == NULL )
+ {
+ /* buffer has to accomodate maxGlobalDelaySamples + 2 * frameSize */
+ ringBufferSize = maxGlobalDelaySamples + 2 * inputAudio.config.numSamplesPerChannel;
+
+ /* pre delay for this input is maximum delay - input delay */
+ preDelay = maxGlobalDelaySamples - inputBase->delayNumSamples * cldfb2tdSampleFact;
+
+ if ( preDelay > 0 )
+ {
+ if ( ( error = ivas_TD_RINGBUF_Open( &inputBase->delayBuffer, ringBufferSize, inputAudio.config.numChannels ) ) != IVAS_ERR_OK )
+ {
+ return error;
+ }
+
+ /* for the first frame we need to push zeros to align the input delay to the global delay
+ * and then push a frame of actual data */
+ ivas_TD_RINGBUF_PushZeros( inputBase->delayBuffer, preDelay );
+
+ /* for ISM inputs, ensure the metadata sync delay is updated */
+ if ( getAudioConfigType( inputBase->inConfig ) == IVAS_REND_AUDIO_CONFIG_TYPE_OBJECT_BASED )
+ {
+ inputIsm = (input_ism *) inputBase;
+ inputIsm->ism_metadata_delay_ms = maxGlobalDelayNs / 1e6f;
+ }
+ }
+ }
+
+ if ( inputBase->delayBuffer != NULL )
+ {
+ /* push in the new input data and pop to retrieve a complete input frame
+ * if we are flushing the inputs, we don't push in any new data */
+ numSamplesToPush = flushInputs ? 0 : inputAudio.config.numSamplesPerChannel;
+ numSamplesToPop = flushInputs ? ivas_TD_RINGBUF_Size( inputBase->delayBuffer ) : (uint32_t) inputAudio.config.numSamplesPerChannel;
+
+ ivas_TD_RINGBUF_Push( inputBase->delayBuffer, inputAudio.data, numSamplesToPush );
+ ivas_TD_RINGBUF_Pop( inputBase->delayBuffer, inputBase->inputBuffer.data, numSamplesToPop );
+ }
+ else
+ {
+ /* delay buffer isn't open - we don't need it */
+ mvr2r( inputAudio.data,
+ inputBase->inputBuffer.data,
+ inputAudio.config.numSamplesPerChannel * inputAudio.config.numChannels );
+ }
+
+ return IVAS_ERR_OK;
+}
+
static ivas_error initIsmMasaRendering(
input_ism *inputIsm,
const int32_t inSampleRate )
@@ -1263,7 +1547,7 @@ static ivas_error initIsmMasaRendering(
ivas_td_binaural_close( &inputIsm->tdRendWrapper.hBinRendererTd );
}
- ivas_rend_closeCrend( &inputIsm->crendWrapper, inputIsm->base.ctx.pSplitRendWrapper != NULL ? inputIsm->base.ctx.pSplitRendWrapper->multiBinPoseData.num_poses : 1 );
+ ivas_rend_closeCrend( &inputIsm->crendWrapper );
ivas_reverb_close( &inputIsm->hReverb );
@@ -1327,7 +1611,11 @@ static ivas_error setRendInputActiveIsm(
if ( outConfig == IVAS_AUDIO_CONFIG_BINAURAL || outConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_CODED || outConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM )
{
+#ifdef NONBE_1377_REND_DIRATT_CONF
+ if ( ( error = ivas_td_binaural_open_ext( &inputIsm->tdRendWrapper, inConfig, hRendCfg, NULL, *rendCtx.pOutSampleRate, inputIsm->object_id ) ) != IVAS_ERR_OK )
+#else
if ( ( error = ivas_td_binaural_open_ext( &inputIsm->tdRendWrapper, inConfig, hRendCfg, NULL, *rendCtx.pOutSampleRate ) ) != IVAS_ERR_OK )
+#endif
{
return error;
}
@@ -1335,7 +1623,11 @@ static ivas_error setRendInputActiveIsm(
/* Open TD renderer wrappers */
for ( i = 0; i < MAX_HEAD_ROT_POSES - 1; ++i )
{
+#ifdef NONBE_1377_REND_DIRATT_CONF
+ if ( ( error = ivas_td_binaural_open_ext( &inputIsm->splitTdRendWrappers[i], inConfig, hRendCfg, NULL, *inputIsm->base.ctx.pOutSampleRate, inputIsm->object_id ) ) != IVAS_ERR_OK )
+#else
if ( ( error = ivas_td_binaural_open_ext( &inputIsm->splitTdRendWrappers[i], inConfig, hRendCfg, NULL, *inputIsm->base.ctx.pOutSampleRate ) ) != IVAS_ERR_OK )
+#endif
{
return error;
}
@@ -1353,7 +1645,11 @@ static ivas_error setRendInputActiveIsm(
}
else
{
+#ifdef NONBE_1377_REND_DIRATT_CONF
+ if ( ( error = ivas_td_binaural_open_ext( &inputIsm->tdRendWrapper, inConfig, hRendCfg, NULL, *rendCtx.pOutSampleRate, inputIsm->object_id ) ) != IVAS_ERR_OK )
+#else
if ( ( error = ivas_td_binaural_open_ext( &inputIsm->tdRendWrapper, inConfig, hRendCfg, NULL, *rendCtx.pOutSampleRate ) ) != IVAS_ERR_OK )
+#endif
{
return error;
}
@@ -1387,10 +1683,12 @@ static void clearInputIsm(
rendCtx = inputIsm->base.ctx;
freeInputBaseBufferData( &inputIsm->base.inputBuffer.data );
+ ivas_TD_RINGBUF_Close( &inputIsm->base.delayBuffer );
+
initRendInputBase( &inputIsm->base, IVAS_AUDIO_CONFIG_INVALID, 0, rendCtx, NULL, 0 );
/* Free input's internal handles */
- ivas_rend_closeCrend( &inputIsm->crendWrapper, inputIsm->base.ctx.pSplitRendWrapper != NULL ? inputIsm->base.ctx.pSplitRendWrapper->multiBinPoseData.num_poses : 1 );
+ ivas_rend_closeCrend( &inputIsm->crendWrapper );
ivas_reverb_close( &inputIsm->hReverb );
@@ -1832,7 +2130,7 @@ static ivas_error updateLfePanGainsForAmbiOut(
ivas_dirac_dec_get_response( (int16_t) inputMc->lfeRouting.lfeOutputAzimuth, (int16_t) inputMc->lfeRouting.lfeOutputElevation, inputMc->lfeRouting.lfePanMtx[i], outAmbiOrder );
/* linear input gain */
- v_multc( inputMc->lfeRouting.lfePanMtx[i], inputMc->lfeRouting.lfeInputGain, inputMc->lfeRouting.lfePanMtx[i], IVAS_MAX_OUTPUT_CHANNELS );
+ v_multc( inputMc->lfeRouting.lfePanMtx[i], inputMc->lfeRouting.lfeInputGain, inputMc->lfeRouting.lfePanMtx[i], RENDERER_MAX_OUTPUT_CHANNELS );
}
return error;
@@ -2024,13 +2322,13 @@ static ivas_error updateMcPanGains(
{
for ( i = 0; i < inputMc->customLsInput.num_lfe; ++i )
{
- mvr2r( inputMc->lfeRouting.lfePanMtx[i], inputMc->panGains[inputMc->customLsInput.lfe_idx[i]], IVAS_MAX_OUTPUT_CHANNELS );
+ mvr2r( inputMc->lfeRouting.lfePanMtx[i], inputMc->panGains[inputMc->customLsInput.lfe_idx[i]], RENDERER_MAX_OUTPUT_CHANNELS );
}
}
else
{
/* For code simplicity, always copy LFE gains. If config has no LFE, gains will be zero anyway. */
- mvr2r( inputMc->lfeRouting.lfePanMtx[0], inputMc->panGains[LFE_CHANNEL], IVAS_MAX_OUTPUT_CHANNELS );
+ mvr2r( inputMc->lfeRouting.lfePanMtx[0], inputMc->panGains[LFE_CHANNEL], RENDERER_MAX_OUTPUT_CHANNELS );
}
return IVAS_ERR_OK;
@@ -2088,7 +2386,7 @@ static ivas_error initMcBinauralRendering(
/* if we need to use TD renderer and CREND was open, close it */
if ( useTDRend )
{
- ivas_rend_closeCrend( &inputMc->crendWrapper, inputMc->base.ctx.pSplitRendWrapper != NULL ? inputMc->base.ctx.pSplitRendWrapper->multiBinPoseData.num_poses : 1 );
+ ivas_rend_closeCrend( &inputMc->crendWrapper );
}
if ( !reconfigureFlag || ( !useTDRend && outConfig != IVAS_AUDIO_CONFIG_BINAURAL_ROOM_REVERB && inputMc->hReverb != NULL ) )
@@ -2108,7 +2406,11 @@ static ivas_error initMcBinauralRendering(
if ( useTDRend && inputMc->tdRendWrapper.hBinRendererTd == NULL )
{
+#ifdef NONBE_1377_REND_DIRATT_CONF
+ if ( ( error = ivas_td_binaural_open_ext( &inputMc->tdRendWrapper, inConfig, hRendCfg, &inputMc->customLsInput, outSampleRate, 0 ) ) != IVAS_ERR_OK )
+#else
if ( ( error = ivas_td_binaural_open_ext( &inputMc->tdRendWrapper, inConfig, hRendCfg, &inputMc->customLsInput, outSampleRate ) ) != IVAS_ERR_OK )
+#endif
{
return error;
}
@@ -2118,7 +2420,11 @@ static ivas_error initMcBinauralRendering(
/* Open TD renderer wrappers */
for ( i = 0; i < MAX_HEAD_ROT_POSES - 1; ++i )
{
+#ifdef NONBE_1377_REND_DIRATT_CONF
+ if ( ( error = ivas_td_binaural_open_ext( &inputMc->splitTdRendWrappers[i], inConfig, hRendCfg, &inputMc->customLsInput, outSampleRate, 0 ) ) != IVAS_ERR_OK )
+#else
if ( ( error = ivas_td_binaural_open_ext( &inputMc->splitTdRendWrappers[i], inConfig, hRendCfg, &inputMc->customLsInput, outSampleRate ) ) != IVAS_ERR_OK )
+#endif
{
return error;
}
@@ -2157,7 +2463,7 @@ static ivas_error initMcBinauralRendering(
/* determine binaural delay ( used for aligning LFE to output signal ) */
binauralDelayNs = max( ( inputMc->crendWrapper != NULL ) ? inputMc->crendWrapper->binaural_latency_ns : 0, inputMc->tdRendWrapper.binaural_latency_ns );
- inputMc->binauralDelaySmp = (int16_t) roundf( (float) binauralDelayNs * *inputMc->base.ctx.pOutSampleRate / 1000000000.f );
+ inputMc->binauralDelaySmp = latencyNsToSamples( *inputMc->base.ctx.pOutSampleRate, binauralDelayNs );
if ( inputMc->binauralDelaySmp > MAX_BIN_DELAY_SAMPLES )
{
@@ -2180,7 +2486,7 @@ static ivas_error initMcMasaRendering(
ivas_td_binaural_close( &inputMc->tdRendWrapper.hBinRendererTd );
}
- ivas_rend_closeCrend( &inputMc->crendWrapper, inputMc->base.ctx.pSplitRendWrapper != NULL ? inputMc->base.ctx.pSplitRendWrapper->multiBinPoseData.num_poses : 1 );
+ ivas_rend_closeCrend( &inputMc->crendWrapper );
ivas_reverb_close( &inputMc->hReverb );
@@ -2211,7 +2517,7 @@ static lfe_routing defaultLfeRouting(
for ( i = 0; i < RENDERER_MAX_INPUT_LFE_CHANNELS; ++i )
{
- set_zero( routing.lfePanMtx[i], IVAS_MAX_OUTPUT_CHANNELS );
+ set_zero( routing.lfePanMtx[i], RENDERER_MAX_OUTPUT_CHANNELS );
}
routing.pan_lfe = false;
@@ -2357,6 +2663,8 @@ static void clearInputMc(
freeMcLfeDelayBuffer( &inputMc->lfeDelayBuffer );
freeInputBaseBufferData( &inputMc->bufferData );
+ ivas_TD_RINGBUF_Close( &inputMc->base.delayBuffer );
+
initRendInputBase( &inputMc->base, IVAS_AUDIO_CONFIG_INVALID, 0, rendCtx, NULL, 0 );
/* Free input's internal handles */
@@ -2365,7 +2673,7 @@ static void clearInputMc(
efap_free_data( &inputMc->efapInWrapper.hEfap );
}
- ivas_rend_closeCrend( &inputMc->crendWrapper, inputMc->base.ctx.pSplitRendWrapper != NULL ? inputMc->base.ctx.pSplitRendWrapper->multiBinPoseData.num_poses : 1 );
+ ivas_rend_closeCrend( &inputMc->crendWrapper );
ivas_reverb_close( &inputMc->hReverb );
@@ -2582,7 +2890,7 @@ static ivas_error initSbaMasaRendering(
{
ivas_error error;
- ivas_rend_closeCrend( &inputSba->crendWrapper, inputSba->base.ctx.pSplitRendWrapper != NULL ? inputSba->base.ctx.pSplitRendWrapper->multiBinPoseData.num_poses : 1 );
+ ivas_rend_closeCrend( &inputSba->crendWrapper );
if ( ( error = ivas_dirac_ana_open( &inputSba->hDirAC, inSampleRate ) ) != IVAS_ERR_OK )
{
@@ -2644,7 +2952,7 @@ static ivas_error setRendInputActiveSba(
return error;
}
- return error;
+ return IVAS_ERR_OK;
}
@@ -2656,11 +2964,12 @@ static void clearInputSba(
rendCtx = inputSba->base.ctx;
freeInputBaseBufferData( &inputSba->bufferData );
+ ivas_TD_RINGBUF_Close( &inputSba->base.delayBuffer );
initRendInputBase( &inputSba->base, IVAS_AUDIO_CONFIG_INVALID, 0, rendCtx, NULL, 0 );
/* Free input's internal handles */
- ivas_rend_closeCrend( &inputSba->crendWrapper, rendCtx.pSplitRendWrapper != NULL ? rendCtx.pSplitRendWrapper->multiBinPoseData.num_poses : 1 );
+ ivas_rend_closeCrend( &inputSba->crendWrapper );
if ( inputSba->cldfbRendWrapper.hCldfbRend != NULL )
{
@@ -2735,6 +3044,7 @@ static void clearInputMasa(
rendCtx = inputMasa->base.ctx;
freeInputBaseBufferData( &inputMasa->bufferData );
+ ivas_TD_RINGBUF_Close( &inputMasa->base.delayBuffer );
masaPrerendClose( &inputMasa->hMasaPrerend );
freeMasaExtRenderer( &inputMasa->hMasaExtRend );
@@ -2804,7 +3114,7 @@ ivas_error IVAS_REND_Open(
hIvasRend->num_subframes = num_subframes;
/* Initialize limiter */
- if ( ( error = IVAS_REND_NumOutChannels( hIvasRend, &numOutChannels ) ) != IVAS_ERR_OK )
+ if ( ( error = IVAS_REND_GetNumOutChannels( hIvasRend, &numOutChannels ) ) != IVAS_ERR_OK )
{
return error;
}
@@ -2863,6 +3173,9 @@ ivas_error IVAS_REND_Open(
isar_init_split_rend_handles( hIvasRend->splitRendWrapper );
}
hIvasRend->splitRendEncBuffer.data = NULL;
+ hIvasRend->splitRendEncBuffer.config.is_cldfb = 0;
+ hIvasRend->splitRendEncBuffer.config.numChannels = 0;
+ hIvasRend->splitRendEncBuffer.config.numSamplesPerChannel = 0;
for ( i = 0; i < RENDERER_MAX_ISM_INPUTS; ++i )
{
@@ -3058,7 +3371,7 @@ ivas_error IVAS_REND_ConfigureCustomOutputLoudspeakerLayout(
hIvasRend->customLsOut = makeCustomLsSetup( layout );
/* Re-initialize limiter - number of output channels may have changed */
- if ( ( error = IVAS_REND_NumOutChannels( hIvasRend, &numOutChannels ) ) != IVAS_ERR_OK )
+ if ( ( error = IVAS_REND_GetNumOutChannels( hIvasRend, &numOutChannels ) ) != IVAS_ERR_OK )
{
return error;
}
@@ -3116,12 +3429,12 @@ ivas_error IVAS_REND_ConfigureCustomOutputLoudspeakerLayout(
/*-------------------------------------------------------------------*
- * IVAS_REND_NumOutChannels()
+ * IVAS_REND_GetNumOutChannels()
*
*
*-------------------------------------------------------------------*/
-ivas_error IVAS_REND_NumOutChannels(
+ivas_error IVAS_REND_GetNumOutChannels(
IVAS_REND_CONST_HANDLE hIvasRend,
int16_t *numOutChannels )
{
@@ -3292,30 +3605,55 @@ static ivas_error getConstInputById(
}
+static void *getInputByIndex(
+ void *inputsArray,
+ const size_t index,
+ const IVAS_REND_AudioConfigType inputType )
+{
+ switch ( inputType )
+ {
+ case IVAS_REND_AUDIO_CONFIG_TYPE_CHANNEL_BASED:
+ return (input_mc *) inputsArray + index;
+ case IVAS_REND_AUDIO_CONFIG_TYPE_AMBISONICS:
+ return (input_sba *) inputsArray + index;
+ case IVAS_REND_AUDIO_CONFIG_TYPE_OBJECT_BASED:
+ return (input_ism *) inputsArray + index;
+ case IVAS_REND_AUDIO_CONFIG_TYPE_MASA:
+ return (input_masa *) inputsArray + index;
+ default:
+ break;
+ }
+
+ /* this should be unreachable */
+ assert( 0 );
+
+ /* include a final return to make the linter happy and avoid problems with wmc_tool (see #1355) */
+ return NULL;
+}
+
+
static ivas_error findFreeInputSlot(
- const void *inputs,
- const int32_t inputStructSize,
+ void *inputs,
+ const IVAS_REND_AudioConfigType inputType,
const int32_t maxInputs,
int32_t *inputIndex )
{
- /* Using a void pointer and a separately provided size is a hack for this function
+ /* Using a void pointer and a separately provided type is a hack for this function
to be reusable for arrays of any input type (input_ism, input_mc, input_sba, input_masa).
Assumptions:
- input_base is always the first member in the input struct
- - provided size is correct
+ - memory alignments of original input type and input_base are the same
*/
-
int32_t i;
bool canAddInput;
- const uint8_t *pByte;
const input_base *pInputBase;
canAddInput = false;
/* Find first unused input in array */
- for ( i = 0, pByte = inputs; i < maxInputs; ++i, pByte += inputStructSize )
+ for ( i = 0; i < maxInputs; ++i )
{
- pInputBase = (const input_base *) pByte;
+ pInputBase = (const input_base *) getInputByIndex( inputs, i, inputType );
if ( pInputBase->inConfig == IVAS_AUDIO_CONFIG_INVALID )
{
@@ -3345,10 +3683,15 @@ static int16_t getCldfbRendFlag(
const IVAS_REND_AudioConfigType new_configType )
{
int16_t i;
- int16_t numMasaInputs = 0, numSbaInputs = 0, numIsmInputs = 0, numMcInputs = 0;
+ int16_t numMasaInputs = 0, numSbaInputs = 0;
int16_t isCldfbRend;
isCldfbRend = 0;
+ /* This function is called during three different phases of renderer processing:
+ * - IVAS_REND_AddInput()
+ * - IVAS_REND_FeedRenderConfig()
+ * - IVAS_REND_GetSplitBinauralBitstream()
+ * Only the last case can assume all inputs are present for the current frame to be rendered */
if ( hIvasRend->hRendererConfig != NULL )
{
for ( i = 0; i < RENDERER_MAX_MASA_INPUTS; ++i )
@@ -3359,20 +3702,7 @@ static int16_t getCldfbRendFlag(
{
numSbaInputs += ( hIvasRend->inputsSba[i].base.inConfig == IVAS_AUDIO_CONFIG_INVALID && new_configType != IVAS_REND_AUDIO_CONFIG_TYPE_AMBISONICS ) ? 0 : 1;
}
- for ( i = 0; i < RENDERER_MAX_ISM_INPUTS; ++i )
- {
- numIsmInputs += ( hIvasRend->inputsIsm[i].base.inConfig == IVAS_AUDIO_CONFIG_INVALID && new_configType != IVAS_REND_AUDIO_CONFIG_TYPE_OBJECT_BASED ) ? 0 : 1;
- }
- for ( i = 0; i < RENDERER_MAX_MC_INPUTS; ++i )
- {
- numMcInputs += ( hIvasRend->inputsMc[i].base.inConfig == IVAS_AUDIO_CONFIG_INVALID && new_configType != IVAS_REND_AUDIO_CONFIG_TYPE_CHANNEL_BASED ) ? 0 : 1;
- }
-
- if ( numIsmInputs > 0 || numMcInputs > 0 )
- {
- isCldfbRend = 0;
- }
- else if ( ( numMasaInputs > 0 ) || ( numSbaInputs > 0 && hIvasRend->hRendererConfig->split_rend_config.rendererSelection == IVAS_BIN_RENDERER_TYPE_FASTCONV ) )
+ if ( ( numMasaInputs > 0 ) || ( numSbaInputs > 0 && hIvasRend->hRendererConfig->split_rend_config.rendererSelection == IVAS_BIN_RENDERER_TYPE_FASTCONV ) )
{
isCldfbRend = 1;
}
@@ -3382,12 +3712,12 @@ static int16_t getCldfbRendFlag(
}
/*-------------------------------------------------------------------------
- * Function ivas_pre_rend_init()
+ * Function isar_pre_rend_init()
*
*
*------------------------------------------------------------------------*/
-static ivas_error ivas_pre_rend_init(
+static ivas_error isar_pre_rend_init(
SPLIT_REND_WRAPPER *pSplitRendWrapper,
IVAS_REND_AudioBuffer *pSplitRendEncBuffer,
ISAR_SPLIT_REND_CONFIG_DATA *pSplit_rend_config,
@@ -3397,10 +3727,20 @@ static ivas_error ivas_pre_rend_init(
const int16_t cldfb_in_flag,
const int16_t num_subframes )
{
+ bool realloc;
ivas_error error;
IVAS_REND_AudioBufferConfig bufConfig;
- if ( outConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_CODED || outConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM )
+ realloc = false;
+
+ /* only perform init if split rendering output */
+ if ( outConfig != IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_CODED && outConfig != IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM )
+ {
+ return IVAS_ERR_OK;
+ }
+
+ /* these functions should only be called once during initial allocation */
+ if ( pSplitRendEncBuffer->data == NULL )
{
if ( pSplit_rend_config->poseCorrectionMode == ISAR_SPLIT_REND_POSE_CORRECTION_MODE_CLDFB )
{
@@ -3415,28 +3755,34 @@ static ivas_error ivas_pre_rend_init(
{
return error;
}
+ }
- /*allocate for CLDFB in and change to TD during process if needed*/
- bufConfig.numSamplesPerChannel = MAX_CLDFB_BUFFER_LENGTH_PER_CHANNEL;
+ /* We may need to change the allocated buffer size if a new input is added.
+ * If the cldfb_in_flag is different from what was previously allocated for the buffer, change the size */
+ if ( pSplitRendEncBuffer->data != NULL && ( cldfb_in_flag != pSplitRendEncBuffer->config.is_cldfb ) )
+ {
+ realloc = true;
+ }
+
+ if ( pSplitRendEncBuffer->data == NULL || realloc )
+ {
+ /* set buffer config */
+ bufConfig.is_cldfb = cldfb_in_flag;
+ bufConfig.numSamplesPerChannel = cldfb_in_flag ? MAX_CLDFB_BUFFER_LENGTH_PER_CHANNEL : L_FRAME_MAX;
bufConfig.numChannels = BINAURAL_CHANNELS * pSplitRendWrapper->multiBinPoseData.num_poses;
- bufConfig.is_cldfb = 1;
pSplitRendEncBuffer->config = bufConfig;
+ /* allocate memory */
+ if ( realloc )
+ {
+ free( pSplitRendEncBuffer->data );
+ }
+
if ( ( pSplitRendEncBuffer->data = malloc( bufConfig.numChannels * bufConfig.numSamplesPerChannel * sizeof( float ) ) ) == NULL )
{
return IVAS_ERR_FAILED_ALLOC;
}
}
- else
- {
- IVAS_REND_AudioBufferConfig bufConfig2;
-
- bufConfig2.numSamplesPerChannel = 0;
- bufConfig2.numChannels = 0;
- bufConfig2.is_cldfb = 0;
- pSplitRendEncBuffer->config = bufConfig2;
- pSplitRendEncBuffer->data = NULL;
- }
return IVAS_ERR_OK;
}
@@ -3457,9 +3803,13 @@ ivas_error IVAS_REND_AddInput(
ivas_error error;
int32_t maxNumInputsOfType;
void *inputsArray;
- int32_t inputStructSize;
+ IVAS_REND_AudioConfigType inputType;
ivas_error ( *activateInput )( void *, AUDIO_CONFIG, IVAS_REND_InputId, RENDER_CONFIG_DATA *, hrtf_handles * );
+ void ( *setInputDelay )( void *, bool );
int32_t inputIndex;
+ bool splitPreRendCldfb;
+
+ splitPreRendCldfb = false;
/* Validate function arguments */
if ( hIvasRend == NULL || inputId == NULL )
@@ -3467,59 +3817,75 @@ ivas_error IVAS_REND_AddInput(
return IVAS_ERR_UNEXPECTED_NULL_POINTER;
}
- if ( ( hIvasRend->outputConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_CODED || hIvasRend->outputConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM ) && hIvasRend->splitRendEncBuffer.data == NULL && hIvasRend->hRendererConfig != NULL )
+ if ( hIvasRend->hRendererConfig != NULL )
{
int16_t cldfb_in_flag;
cldfb_in_flag = getCldfbRendFlag( hIvasRend, getAudioConfigType( inConfig ) );
- if ( ( error = ivas_pre_rend_init( hIvasRend->splitRendWrapper, &hIvasRend->splitRendEncBuffer, &hIvasRend->hRendererConfig->split_rend_config, hIvasRend->headRotData, hIvasRend->sampleRateOut, hIvasRend->outputConfig, cldfb_in_flag, hIvasRend->num_subframes ) ) != IVAS_ERR_OK )
+ if ( ( error = isar_pre_rend_init( hIvasRend->splitRendWrapper,
+ &hIvasRend->splitRendEncBuffer,
+ &hIvasRend->hRendererConfig->split_rend_config,
+ hIvasRend->headRotData,
+ hIvasRend->sampleRateOut,
+ hIvasRend->outputConfig,
+ cldfb_in_flag,
+ hIvasRend->num_subframes ) ) != IVAS_ERR_OK )
{
return error;
}
+
+ /*assumes that input has been added which means codec has been set to either lcld or lc3plus (even if render config specified default)*/
+ splitPreRendCldfb = ( hIvasRend->hRendererConfig->split_rend_config.codec == ISAR_SPLIT_REND_CODEC_LCLD );
}
- switch ( getAudioConfigType( inConfig ) )
+ inputType = getAudioConfigType( inConfig );
+ switch ( inputType )
{
case IVAS_REND_AUDIO_CONFIG_TYPE_OBJECT_BASED:
maxNumInputsOfType = RENDERER_MAX_ISM_INPUTS;
inputsArray = hIvasRend->inputsIsm;
- inputStructSize = sizeof( *hIvasRend->inputsIsm );
activateInput = setRendInputActiveIsm;
+ setInputDelay = setRendInputDelayIsm;
break;
case IVAS_REND_AUDIO_CONFIG_TYPE_CHANNEL_BASED:
maxNumInputsOfType = RENDERER_MAX_MC_INPUTS;
inputsArray = hIvasRend->inputsMc;
- inputStructSize = sizeof( *hIvasRend->inputsMc );
activateInput = setRendInputActiveMc;
+ setInputDelay = setRendInputDelayMc;
break;
case IVAS_REND_AUDIO_CONFIG_TYPE_AMBISONICS:
maxNumInputsOfType = RENDERER_MAX_SBA_INPUTS;
inputsArray = hIvasRend->inputsSba;
- inputStructSize = sizeof( *hIvasRend->inputsSba );
activateInput = setRendInputActiveSba;
+ setInputDelay = setRendInputDelaySba;
break;
case IVAS_REND_AUDIO_CONFIG_TYPE_MASA:
maxNumInputsOfType = RENDERER_MAX_MASA_INPUTS;
inputsArray = hIvasRend->inputsMasa;
- inputStructSize = sizeof( *hIvasRend->inputsMasa );
activateInput = setRendInputActiveMasa;
+ setInputDelay = setRendInputDelayMasa;
break;
default:
return IVAS_ERR_INVALID_INPUT_FORMAT;
}
/* Find first free input in array corresponding to input type */
- if ( ( error = findFreeInputSlot( inputsArray, inputStructSize, maxNumInputsOfType, &inputIndex ) ) != IVAS_ERR_OK )
+ if ( ( error = findFreeInputSlot( inputsArray, inputType, maxNumInputsOfType, &inputIndex ) ) != IVAS_ERR_OK )
{
return error;
}
*inputId = makeInputId( inConfig, inputIndex );
- if ( ( error = activateInput( (uint8_t *) inputsArray + inputStructSize * inputIndex, inConfig, *inputId, hIvasRend->hRendererConfig, &hIvasRend->hHrtfs ) ) != IVAS_ERR_OK )
+ if ( ( error = activateInput( getInputByIndex( inputsArray, inputIndex, inputType ), inConfig, *inputId, hIvasRend->hRendererConfig, &hIvasRend->hHrtfs ) ) != IVAS_ERR_OK )
{
return error;
}
+ setInputDelay( getInputByIndex( inputsArray, inputIndex, inputType ), splitPreRendCldfb );
+
+ /* set global maximum delay after adding an input */
+ setMaxGlobalDelayNs( hIvasRend );
+
return IVAS_ERR_OK;
}
@@ -3596,6 +3962,34 @@ ivas_error IVAS_REND_ConfigureCustomInputLoudspeakerLayout(
return IVAS_ERR_OK;
}
+#ifdef NONBE_1377_REND_DIRATT_CONF
+/*-------------------------------------------------------------------*
+ * IVAS_REND_SetObjectIDs()
+ *
+ *
+ *-------------------------------------------------------------------*/
+
+ivas_error IVAS_REND_SetObjectIDs(
+ IVAS_REND_HANDLE hIvasRend /* i/o: Renderer handle */
+)
+{
+ int16_t i;
+
+ /* Validate function arguments */
+ if ( hIvasRend == NULL )
+ {
+ return IVAS_ERR_UNEXPECTED_NULL_POINTER;
+ }
+
+ for ( i = 0; i < RENDERER_MAX_ISM_INPUTS; i++ )
+ {
+ hIvasRend->inputsIsm[i].object_id = i;
+ }
+
+ return IVAS_ERR_OK;
+}
+#endif
+
/*-------------------------------------------------------------------*
* IVAS_REND_SetInputGain()
@@ -3667,7 +4061,7 @@ ivas_error IVAS_REND_SetInputLfeMtx(
/* copy LFE panning matrix */
for ( i = 0; i < RENDERER_MAX_INPUT_LFE_CHANNELS; i++ )
{
- mvr2r( ( *lfePanMtx )[i], pInputMc->lfeRouting.lfePanMtx[i], IVAS_MAX_OUTPUT_CHANNELS );
+ mvr2r( ( *lfePanMtx )[i], pInputMc->lfeRouting.lfePanMtx[i], RENDERER_MAX_OUTPUT_CHANNELS );
}
if ( ( error = updateMcPanGains( pInputMc, hIvasRend->outputConfig ) ) != IVAS_ERR_OK )
@@ -3772,6 +4166,9 @@ ivas_error IVAS_REND_RemoveInput(
return IVAS_ERR_INVALID_INPUT_FORMAT;
}
+ /* set global maximum delay after removing an input */
+ setMaxGlobalDelayNs( hIvasRend );
+
return IVAS_ERR_OK;
}
@@ -3848,11 +4245,6 @@ ivas_error IVAS_REND_GetDelay(
int32_t *timeScale /* o : Time scale of the delay, equal to renderer output sampling rate */
)
{
- /* TODO tmu : this function only returns the maximum delay across all inputs
- * Ideally each input has its own delay buffer and everything is aligned (binaural and LFE filtering delays are nonuniform)
- */
- int16_t i;
- int32_t latency_ns;
int32_t max_latency_ns;
/* Validate function arguments */
@@ -3861,76 +4253,16 @@ ivas_error IVAS_REND_GetDelay(
return IVAS_ERR_UNEXPECTED_NULL_POINTER;
}
- *timeScale = hIvasRend->sampleRateOut;
*nSamples = 0;
- max_latency_ns = 0;
-
- /* Compute the maximum delay across all inputs */
- for ( i = 0; i < RENDERER_MAX_ISM_INPUTS; i++ )
- {
- if ( hIvasRend->inputsIsm[i].base.inConfig != IVAS_AUDIO_CONFIG_INVALID )
- {
- latency_ns = max( ( hIvasRend->inputsIsm[i].crendWrapper != NULL ) ? hIvasRend->inputsIsm[i].crendWrapper->binaural_latency_ns : 0,
- hIvasRend->inputsIsm[i].tdRendWrapper.binaural_latency_ns );
- max_latency_ns = max( max_latency_ns, latency_ns );
- }
- }
-
- for ( i = 0; i < RENDERER_MAX_MC_INPUTS; i++ )
- {
- if ( hIvasRend->inputsMc[i].base.inConfig != IVAS_AUDIO_CONFIG_INVALID )
- {
- latency_ns = max( ( hIvasRend->inputsMc[i].crendWrapper != NULL ) ? hIvasRend->inputsMc[i].crendWrapper->binaural_latency_ns : 0,
- hIvasRend->inputsMc[i].tdRendWrapper.binaural_latency_ns );
- max_latency_ns = max( max_latency_ns, latency_ns );
- }
- }
-
- for ( i = 0; i < RENDERER_MAX_SBA_INPUTS; i++ )
- {
- if ( hIvasRend->inputsSba[i].base.inConfig != IVAS_AUDIO_CONFIG_INVALID )
- {
- if ( hIvasRend->splitRendWrapper != NULL && hIvasRend->splitRendWrapper->hBinHrSplitPreRend != NULL )
- {
- if ( hIvasRend->hRendererConfig->split_rend_config.rendererSelection == IVAS_BIN_RENDERER_TYPE_FASTCONV )
- {
- latency_ns = hIvasRend->inputsSba[i].cldfbRendWrapper.binaural_latency_ns;
- }
- else
- {
- latency_ns = ( hIvasRend->inputsSba[i].crendWrapper != NULL ) ? hIvasRend->inputsSba[i].crendWrapper->binaural_latency_ns : 0;
- }
- max_latency_ns = max( max_latency_ns, latency_ns );
- }
- else if ( hIvasRend->inputsSba[i].cldfbRendWrapper.hCldfbRend != NULL )
- {
- latency_ns = hIvasRend->inputsSba[i].cldfbRendWrapper.binaural_latency_ns;
- latency_ns += IVAS_FB_DEC_DELAY_NS;
- max_latency_ns = max( max_latency_ns, latency_ns );
- }
- else
- {
- latency_ns = ( hIvasRend->inputsSba[i].crendWrapper != NULL ) ? hIvasRend->inputsSba[i].crendWrapper->binaural_latency_ns : 0;
- max_latency_ns = max( max_latency_ns, latency_ns );
- }
- }
- }
+ *timeScale = hIvasRend->sampleRateOut;
- for ( i = 0; i < RENDERER_MAX_MASA_INPUTS; i++ )
- {
- if ( hIvasRend->inputsMasa[i].base.inConfig != IVAS_AUDIO_CONFIG_INVALID )
- {
- latency_ns = (int32_t) ( (float) IVAS_FB_DEC_DELAY_NS + 0.5f );
- max_latency_ns = max( max_latency_ns, latency_ns );
- }
- }
+ max_latency_ns = getMaxGlobalDelayNs( hIvasRend );
- *nSamples = (int16_t) roundf( (float) max_latency_ns * *timeScale / 1000000000.f );
+ *nSamples = latencyNsToSamples( hIvasRend->sampleRateOut, max_latency_ns );
return IVAS_ERR_OK;
}
-
/*-------------------------------------------------------------------*
* IVAS_REND_FeedInputAudio()
*
@@ -3938,9 +4270,10 @@ ivas_error IVAS_REND_GetDelay(
*-------------------------------------------------------------------*/
ivas_error IVAS_REND_FeedInputAudio(
- IVAS_REND_HANDLE hIvasRend, /* i/o: Renderer handle */
- const IVAS_REND_InputId inputId, /* i : ID of the input */
- const IVAS_REND_ReadOnlyAudioBuffer inputAudio /* i : buffer with input audio */
+ IVAS_REND_HANDLE hIvasRend, /* i/o: Renderer handle */
+ const IVAS_REND_InputId inputId, /* i : ID of the input */
+ const IVAS_REND_ReadOnlyAudioBuffer inputAudio, /* i : buffer with input audio */
+ const bool flushInputs /* i : flush input audio */
)
{
ivas_error error;
@@ -3996,9 +4329,16 @@ ivas_error IVAS_REND_FeedInputAudio(
}
inputBase->inputBuffer.config = inputAudio.config;
-
- mvr2r( inputAudio.data, inputBase->inputBuffer.data, inputAudio.config.numSamplesPerChannel * inputAudio.config.numChannels );
-
+ if ( ( error = alignInputDelay(
+ inputBase,
+ inputAudio,
+ hIvasRend->maxGlobalDelayNs,
+ hIvasRend->sampleRateOut,
+ cldfb2tdSampleFact,
+ flushInputs ) ) != IVAS_ERR_OK )
+ {
+ return error;
+ }
inputBase->numNewSamplesPerChannel = inputAudio.config.numSamplesPerChannel / cldfb2tdSampleFact;
return IVAS_ERR_OK;
@@ -4306,6 +4646,7 @@ ivas_error IVAS_REND_FeedRenderConfig(
if ( pMasaInput->hMasaExtRend->hDiracDecBin[0] != NULL && pMasaInput->hMasaExtRend->hDiracDecBin[0]->hReverb != NULL )
{
ivas_binaural_reverb_close( &pMasaInput->hMasaExtRend->hDiracDecBin[0]->hReverb );
+
if ( ( error = ivas_binaural_reverb_init( &pMasaInput->hMasaExtRend->hDiracDecBin[0]->hReverb,
hIvasRend->hHrtfs.hHrtfStatistics,
pMasaInput->hMasaExtRend->hSpatParamRendCom->num_freq_bands,
@@ -4323,6 +4664,7 @@ ivas_error IVAS_REND_FeedRenderConfig(
if ( pMasaInput->hMasaExtRend->hReverb != NULL )
{
ivas_binaural_reverb_close( &pMasaInput->hMasaExtRend->hReverb );
+
if ( ( error = ivas_binaural_reverb_init( &pMasaInput->hMasaExtRend->hReverb,
hIvasRend->hHrtfs.hHrtfStatistics,
pMasaInput->hMasaExtRend->hSpatParamRendCom->num_freq_bands,
@@ -4355,6 +4697,7 @@ ivas_error IVAS_REND_FeedRenderConfig(
return error;
}
}
+
if ( pMcInput->crendWrapper != NULL && pMcInput->crendWrapper->hCrend[0] && pMcInput->crendWrapper->hCrend[0]->hReverb != NULL )
{
if ( ( error = ivas_reverb_open( &pMcInput->crendWrapper->hCrend[0]->hReverb, hIvasRend->hHrtfs.hHrtfStatistics, hRenderConfig, *pMcInput->base.ctx.pOutSampleRate ) ) != IVAS_ERR_OK )
@@ -4405,6 +4748,7 @@ ivas_error IVAS_REND_FeedRenderConfig(
{
int16_t cldfb_in_flag;
cldfb_in_flag = getCldfbRendFlag( hIvasRend, IVAS_REND_AUDIO_CONFIG_TYPE_UNKNOWN );
+
if ( hIvasRend->splitRendWrapper != NULL )
{
ISAR_PRE_REND_close( hIvasRend->splitRendWrapper, &hIvasRend->splitRendEncBuffer );
@@ -4412,7 +4756,7 @@ ivas_error IVAS_REND_FeedRenderConfig(
hIvasRend->splitRendWrapper = NULL;
}
- if ( ( error = ivas_pre_rend_init( hIvasRend->splitRendWrapper, &hIvasRend->splitRendEncBuffer, &hIvasRend->hRendererConfig->split_rend_config, hIvasRend->headRotData, hIvasRend->sampleRateOut, hIvasRend->outputConfig, cldfb_in_flag, hIvasRend->num_subframes ) ) != IVAS_ERR_OK )
+ if ( ( error = isar_pre_rend_init( hIvasRend->splitRendWrapper, &hIvasRend->splitRendEncBuffer, &hIvasRend->hRendererConfig->split_rend_config, hIvasRend->headRotData, hIvasRend->sampleRateOut, hIvasRend->outputConfig, cldfb_in_flag, hIvasRend->num_subframes ) ) != IVAS_ERR_OK )
{
return error;
}
@@ -5141,7 +5485,7 @@ static ivas_error renderIsmToBinaural(
push_wmops( "renderIsmToBinaural" );
/* Metadata Delay to sync with audio delay converted from ms to 5ms (1000/50/4) subframe index */
- ism_md_subframe_update_ext = (int16_t) roundf( ismInput->ism_metadata_delay_ms / ( 1000 / FRAMES_PER_SEC / MAX_PARAM_SPATIAL_SUBFRAMES ) );
+ ism_md_subframe_update_ext = (int16_t) roundf( ismInput->ism_metadata_delay_ms / ( 1000.f / FRAMES_PER_SEC / MAX_PARAM_SPATIAL_SUBFRAMES ) );
copyBufferTo2dArray( ismInput->base.inputBuffer, tmpTDRendBuffer );
if ( ( error = ivas_td_binaural_renderer_ext( &ismInput->tdRendWrapper, ismInput->base.inConfig, NULL, ismInput->base.ctx.pCombinedOrientationData, &ismInput->currentPos, ismInput->hReverb, ism_md_subframe_update_ext,
@@ -5345,7 +5689,7 @@ static ivas_error renderIsmToBinauralReverb(
push_wmops( "renderIsmToBinauralRoom" );
/* Metadata Delay to sync with audio delay converted from ms to 5ms (1000/50/4) subframe index */
- ism_md_subframe_update_ext = (int16_t) roundf( ismInput->ism_metadata_delay_ms / ( 1000 / FRAMES_PER_SEC / MAX_PARAM_SPATIAL_SUBFRAMES ) );
+ ism_md_subframe_update_ext = (int16_t) roundf( ismInput->ism_metadata_delay_ms / ( 1000.f / FRAMES_PER_SEC / MAX_PARAM_SPATIAL_SUBFRAMES ) );
copyBufferTo2dArray( ismInput->base.inputBuffer, tmpRendBuffer );
@@ -5511,8 +5855,10 @@ static ivas_error renderIsmToSplitBinaural(
const MULTI_BIN_REND_POSE_DATA *pMultiBinPoseData;
const SPLIT_REND_WRAPPER *pSplitRendWrapper;
IVAS_QUATERNION originalHeadRot[MAX_PARAM_SPATIAL_SUBFRAMES];
- int16_t i;
+ int16_t i, ch, slot_idx, num_bands;
float tmpBinaural[MAX_HEAD_ROT_POSES * BINAURAL_CHANNELS][L_FRAME48k];
+ float tmpBinaural_CldfbRe[MAX_HEAD_ROT_POSES * BINAURAL_CHANNELS][CLDFB_NO_COL_MAX][CLDFB_NO_CHANNELS_MAX];
+ float tmpBinaural_CldfbIm[MAX_HEAD_ROT_POSES * BINAURAL_CHANNELS][CLDFB_NO_COL_MAX][CLDFB_NO_CHANNELS_MAX];
int16_t output_frame = ismInput->base.inputBuffer.config.numSamplesPerChannel;
COMBINED_ORIENTATION_HANDLE pCombinedOrientationData;
int16_t ism_md_subframe_update_ext;
@@ -5523,7 +5869,7 @@ static ivas_error renderIsmToSplitBinaural(
pMultiBinPoseData = &pSplitRendWrapper->multiBinPoseData;
/* Metadata Delay to sync with audio delay converted from ms to 5ms (1000/50/4) subframe index */
- ism_md_subframe_update_ext = (int16_t) roundf( ismInput->ism_metadata_delay_ms / ( 1000 / FRAMES_PER_SEC / MAX_PARAM_SPATIAL_SUBFRAMES ) );
+ ism_md_subframe_update_ext = (int16_t) roundf( ismInput->ism_metadata_delay_ms / ( 1000.f / FRAMES_PER_SEC / MAX_PARAM_SPATIAL_SUBFRAMES ) );
pCombinedOrientationData = *ismInput->base.ctx.pCombinedOrientationData;
@@ -5579,10 +5925,29 @@ static ivas_error renderIsmToSplitBinaural(
return error;
}
- /* Copy rendered audio to tmp storage buffer. Copying directly to output would
- * overwrite original audio, which is still needed for rendering next head pose. */
- mvr2r( tmpProcessing[0], tmpBinaural[2 * pos_idx], output_frame );
- mvr2r( tmpProcessing[1], tmpBinaural[2 * pos_idx + 1], output_frame );
+ if ( outAudio.config.is_cldfb )
+ {
+ /* Perform CLDFB analysis on rendered audio, since the output buffer is CLDFB domain */
+ num_bands = (int16_t) ( ( BINAURAL_MAXBANDS * *ismInput->base.ctx.pOutSampleRate ) / 48000 );
+ for ( ch = 0; ch < BINAURAL_CHANNELS; ch++ )
+ {
+ for ( slot_idx = 0; slot_idx < IVAS_CLDFB_NO_COL_MAX; slot_idx++ )
+ {
+ cldfbAnalysis_ts( &tmpProcessing[ch][num_bands * slot_idx],
+ &tmpBinaural_CldfbRe[BINAURAL_CHANNELS * pos_idx + ch][slot_idx][0],
+ &tmpBinaural_CldfbIm[BINAURAL_CHANNELS * pos_idx + ch][slot_idx][0],
+ num_bands,
+ ismInput->base.ctx.pSplitRendWrapper->hCldfbHandles->cldfbAna[pos_idx + ch] );
+ }
+ }
+ }
+ else
+ {
+ /* Copy rendered audio to tmp storage buffer. Copying directly to output would
+ * overwrite original audio, which is still needed for rendering next head pose. */
+ mvr2r( tmpProcessing[0], tmpBinaural[BINAURAL_CHANNELS * pos_idx], output_frame );
+ mvr2r( tmpProcessing[1], tmpBinaural[BINAURAL_CHANNELS * pos_idx + 1], output_frame );
+ }
/* Overwrite processing buffer with original input audio again */
copyBufferTo2dArray( ismInput->base.inputBuffer, tmpProcessing );
@@ -5594,7 +5959,14 @@ static ivas_error renderIsmToSplitBinaural(
pCombinedOrientationData->Quaternions[i] = originalHeadRot[i];
}
- accumulate2dArrayToBuffer( tmpBinaural, &outAudio );
+ if ( outAudio.config.is_cldfb )
+ {
+ accumulateCLDFBArrayToBuffer( tmpBinaural_CldfbRe, tmpBinaural_CldfbIm, &outAudio );
+ }
+ else
+ {
+ accumulate2dArrayToBuffer( tmpBinaural, &outAudio );
+ }
pop_wmops();
/* Encoding to split rendering bitstream done at a higher level */
@@ -5629,11 +6001,13 @@ static ivas_error renderInputIsm(
{
ivas_error error;
IVAS_REND_AudioBuffer inAudio;
+ int16_t cldfb2tdSampleFact;
error = IVAS_ERR_OK;
inAudio = ismInput->base.inputBuffer;
- if ( ismInput->base.numNewSamplesPerChannel != outAudio.config.numSamplesPerChannel )
+ cldfb2tdSampleFact = outAudio.config.is_cldfb ? 2 : 1;
+ if ( ismInput->base.numNewSamplesPerChannel * cldfb2tdSampleFact != outAudio.config.numSamplesPerChannel )
{
return IVAS_ERROR( IVAS_ERR_INVALID_BUFFER_SIZE, "Mismatch between the number of input samples vs number of requested output samples - currently not allowed" );
}
@@ -5758,8 +6132,7 @@ static ivas_error renderLfeToBinaural(
num_cpy_smpl_prev_frame = mcInput->binauralDelaySmp;
num_cpy_smpl_cur_frame = frame_size - num_cpy_smpl_prev_frame;
- /* Assuming LFE should be delayed by less that the duration of one frame */
- assert( mcInput->binauralDelaySmp < frame_size );
+ assert( mcInput->binauralDelaySmp <= MAX_BIN_DELAY_SAMPLES );
/* Get delayed LFE signal from previous frame, apply gain and save in tmp buffer */
v_multc( mcInput->lfeDelayBuffer, gain, tmpLfeBuffer, num_cpy_smpl_prev_frame );
@@ -7337,15 +7710,13 @@ ivas_error IVAS_REND_SetIsmMetadataDelay(
*-------------------------------------------------------------------*/
static ivas_error getSamplesInternal(
- IVAS_REND_HANDLE hIvasRend, /* i/o: Renderer handle */
- IVAS_REND_AudioBuffer outAudio, /* i/o: buffer for output audio */
- IVAS_REND_BitstreamBuffer *hBits /*i/o: buffer for input/output bitstream. Needed in split rendering mode*/
+ IVAS_REND_HANDLE hIvasRend, /* i/o: Renderer handle */
+ IVAS_REND_AudioBuffer outAudio /* i/o: buffer for output audio */
)
{
ivas_error error;
int16_t numOutChannels;
int16_t cldfb2tdSampleFact;
- IVAS_REND_AudioBuffer outAudioOrig;
/* Validate function arguments */
if ( hIvasRend == NULL || outAudio.data == NULL )
@@ -7405,34 +7776,21 @@ static ivas_error getSamplesInternal(
}
}
- if ( ( error = IVAS_REND_NumOutChannels( hIvasRend, &numOutChannels ) ) != IVAS_ERR_OK )
+ if ( ( error = IVAS_REND_GetNumOutChannels( hIvasRend, &numOutChannels ) ) != IVAS_ERR_OK )
{
return error;
}
- if ( numOutChannels != outAudio.config.numChannels && hIvasRend->outputConfig != IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_CODED && hIvasRend->outputConfig != IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM )
+ if ( numOutChannels != outAudio.config.numChannels &&
+ hIvasRend->outputConfig != IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_CODED &&
+ hIvasRend->outputConfig != IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM )
{
return IVAS_ERR_WRONG_NUM_CHANNELS;
}
- /* Clear original output buffer */
+ /* Clear output buffer */
set_zero( outAudio.data, outAudio.config.numChannels * outAudio.config.numSamplesPerChannel );
- outAudioOrig = outAudio;
- /* Use internal buffer if outputting split rendering bitstream */
- if ( ( hIvasRend->outputConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_CODED ) ||
- ( hIvasRend->outputConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM ) )
- {
- int16_t num_poses_orig;
- num_poses_orig = hIvasRend->splitRendWrapper->multiBinPoseData.num_poses;
- outAudio = hIvasRend->splitRendEncBuffer;
- ISAR_PRE_REND_GetMultiBinPoseData( &hIvasRend->hRendererConfig->split_rend_config, &hIvasRend->splitRendWrapper->multiBinPoseData, hIvasRend->headRotData.sr_pose_pred_axis );
- assert( num_poses_orig == hIvasRend->splitRendWrapper->multiBinPoseData.num_poses && "number of poses should not change dynamically" );
-
- /* Clear output buffer for split rendering bitstream */
- set_zero( outAudio.data, outAudio.config.numChannels * outAudio.config.numSamplesPerChannel );
- }
-
if ( ( error = renderActiveInputsIsm( hIvasRend, outAudio ) ) != IVAS_ERR_OK )
{
return error;
@@ -7453,73 +7811,26 @@ static ivas_error getSamplesInternal(
return error;
}
- if ( hIvasRend->outputConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_CODED || hIvasRend->outputConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM )
- {
- ISAR_SPLIT_REND_BITS_DATA bits;
- int16_t cldfb_in_flag;
- float Cldfb_RealBuffer_Binaural[MAX_HEAD_ROT_POSES * BINAURAL_CHANNELS][CLDFB_NO_COL_MAX][CLDFB_NO_CHANNELS_MAX];
- float Cldfb_ImagBuffer_Binaural[MAX_HEAD_ROT_POSES * BINAURAL_CHANNELS][CLDFB_NO_COL_MAX][CLDFB_NO_CHANNELS_MAX];
- int16_t ch;
- int16_t i, ro_md_flag;
- float *tmpBinaural[MAX_HEAD_ROT_POSES * BINAURAL_CHANNELS], tmpBinaural_buff[MAX_HEAD_ROT_POSES * BINAURAL_CHANNELS][L_FRAME48k];
-
- for ( ch = 0; ch < MAX_OUTPUT_CHANNELS; ch++ )
- {
- tmpBinaural[ch] = tmpBinaural_buff[ch];
- }
-
- if ( outAudio.config.is_cldfb == 1 )
- {
- cldfb_in_flag = 1;
- copyBufferToCLDFBarray( outAudio, Cldfb_RealBuffer_Binaural, Cldfb_ImagBuffer_Binaural );
- }
- else
- {
- cldfb_in_flag = 0;
- copyBufferTo2dArray( outAudio, tmpBinaural_buff );
- }
-
- /* Encode split rendering bitstream */
- convertBitsBufferToInternalBitsBuff( *hBits, &bits );
-
- ro_md_flag = 0;
- for ( i = 0; i < RENDERER_MAX_ISM_INPUTS; ++i )
- {
- if ( hIvasRend->inputsIsm[i].base.inConfig != IVAS_AUDIO_CONFIG_INVALID )
- {
- ro_md_flag = 1;
- break;
- }
- }
+ return IVAS_ERR_OK;
+}
- if ( ( error = ISAR_PRE_REND_MultiBinToSplitBinaural( hIvasRend->splitRendWrapper,
- hIvasRend->headRotData.headPositions[0],
- hIvasRend->hRendererConfig->split_rend_config.splitRendBitRate,
- hIvasRend->hRendererConfig->split_rend_config.codec,
- hIvasRend->hRendererConfig->split_rend_config.isar_frame_size_ms,
- hIvasRend->hRendererConfig->split_rend_config.codec_frame_size_ms,
- &bits,
- Cldfb_RealBuffer_Binaural,
- Cldfb_ImagBuffer_Binaural,
- ( const int16_t )( ( BINAURAL_MAXBANDS * hIvasRend->sampleRateOut ) / 48000 ),
- tmpBinaural,
- 1,
- cldfb_in_flag,
- ( hIvasRend->outputConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM ) ? 1 : 0,
- ro_md_flag ) ) != IVAS_ERR_OK )
- {
- return error;
- }
- convertInternalBitsBuffToBitsBuffer( hBits, bits );
+/*-------------------------------------------------------------------*
+ * IVAS_REND_GetSamples()
+ *
+ *
+ *-------------------------------------------------------------------*/
- /* reset to outAudioOrig in case of PCM output */
- outAudio = outAudioOrig;
+ivas_error IVAS_REND_GetSamples(
+ IVAS_REND_HANDLE hIvasRend, /* i/o: Renderer handle */
+ IVAS_REND_AudioBuffer outAudio /* i/o: buffer for output audio */
+)
+{
+ ivas_error error;
- if ( hIvasRend->outputConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM )
- {
- accumulate2dArrayToBuffer( tmpBinaural_buff, &outAudio );
- }
+ if ( ( error = getSamplesInternal( hIvasRend, outAudio ) ) != IVAS_ERR_OK )
+ {
+ return error;
}
if ( outAudio.config.is_cldfb == 0 )
@@ -7539,22 +7850,6 @@ static ivas_error getSamplesInternal(
}
-/*-------------------------------------------------------------------*
- * IVAS_REND_GetSamples()
- *
- *
- *-------------------------------------------------------------------*/
-
-ivas_error IVAS_REND_GetSamples(
- IVAS_REND_HANDLE hIvasRend, /* i/o: Renderer handle */
- IVAS_REND_AudioBuffer outAudio /* i/o: buffer for output audio */
-)
-{
-
- return getSamplesInternal( hIvasRend, outAudio, NULL );
-}
-
-
/*-------------------------------------------------------------------*
* IVAS_REND_GetSplitBinauralBitstream()
*
@@ -7567,23 +7862,121 @@ ivas_error IVAS_REND_GetSplitBinauralBitstream(
IVAS_REND_BitstreamBuffer *hBits /* o : buffer for output bitstream */
)
{
+ ivas_error error;
+ int16_t ch;
int16_t cldfb_in_flag;
+ int16_t i, ro_md_flag;
+ int16_t num_poses_orig;
+ float *tmpBinaural[MAX_HEAD_ROT_POSES * BINAURAL_CHANNELS], tmpBinaural_buff[MAX_HEAD_ROT_POSES * BINAURAL_CHANNELS][L_FRAME48k];
+ float Cldfb_ImagBuffer_Binaural[MAX_HEAD_ROT_POSES * BINAURAL_CHANNELS][CLDFB_NO_COL_MAX][CLDFB_NO_CHANNELS_MAX];
+ float Cldfb_RealBuffer_Binaural[MAX_HEAD_ROT_POSES * BINAURAL_CHANNELS][CLDFB_NO_COL_MAX][CLDFB_NO_CHANNELS_MAX];
+ IVAS_REND_AudioBufferConfig *pSplitEncBufConfig;
+ ISAR_SPLIT_REND_CONFIG_HANDLE pSplitRendConfig;
+ ISAR_SPLIT_REND_BITS_DATA bits;
+
+ for ( ch = 0; ch < MAX_HEAD_ROT_POSES * BINAURAL_CHANNELS; ch++ )
+ {
+ tmpBinaural[ch] = tmpBinaural_buff[ch];
+ }
cldfb_in_flag = getCldfbRendFlag( hIvasRend, IVAS_REND_AUDIO_CONFIG_TYPE_UNKNOWN );
- hIvasRend->splitRendEncBuffer.config.is_cldfb = cldfb_in_flag;
- if ( hIvasRend->hRendererConfig->split_rend_config.dof == 0 || hIvasRend->hRendererConfig->split_rend_config.poseCorrectionMode == ISAR_SPLIT_REND_POSE_CORRECTION_MODE_NONE )
+ pSplitEncBufConfig = &hIvasRend->splitRendEncBuffer.config;
+ pSplitRendConfig = &hIvasRend->hRendererConfig->split_rend_config;
+
+ /* 0 DoF / No pose correction retains frame size */
+ pSplitEncBufConfig->is_cldfb = cldfb_in_flag;
+ if ( pSplitRendConfig->dof == 0 || pSplitRendConfig->poseCorrectionMode == ISAR_SPLIT_REND_POSE_CORRECTION_MODE_NONE )
{
- hIvasRend->splitRendEncBuffer.config.numSamplesPerChannel = outAudio.config.numSamplesPerChannel;
+ pSplitEncBufConfig->numSamplesPerChannel = outAudio.config.numSamplesPerChannel;
}
+ /* Pose correction requires 20ms */
else
{
- hIvasRend->splitRendEncBuffer.config.numSamplesPerChannel = (int16_t) ( hIvasRend->sampleRateOut / FRAMES_PER_SEC );
+ pSplitEncBufConfig->numSamplesPerChannel = (int16_t) ( hIvasRend->sampleRateOut / FRAMES_PER_SEC );
+ }
+ pSplitEncBufConfig->numSamplesPerChannel *= cldfb_in_flag ? 2 : 1;
+
+ num_poses_orig = hIvasRend->splitRendWrapper->multiBinPoseData.num_poses;
+ ISAR_PRE_REND_GetMultiBinPoseData( pSplitRendConfig,
+ &hIvasRend->splitRendWrapper->multiBinPoseData,
+ hIvasRend->headRotData.sr_pose_pred_axis );
+ assert( num_poses_orig == hIvasRend->splitRendWrapper->multiBinPoseData.num_poses && "number of poses should not change dynamically" );
+
+ /* hIvasRend->splitRendEncBuffer contains multi-pose data for BINAURAL_SPLIT_CODED output
+ outAudio used later for main pose BINAURAL_SPLIT_PCM output */
+ if ( ( error = getSamplesInternal( hIvasRend, hIvasRend->splitRendEncBuffer ) ) != IVAS_ERR_OK )
+ {
+ return error;
+ }
+
+ /* copy outputs */
+ if ( hIvasRend->splitRendEncBuffer.config.is_cldfb == 1 )
+ {
+ cldfb_in_flag = 1;
+ copyBufferToCLDFBarray( hIvasRend->splitRendEncBuffer, Cldfb_RealBuffer_Binaural, Cldfb_ImagBuffer_Binaural );
+ }
+ else
+ {
+ cldfb_in_flag = 0;
+ copyBufferTo2dArray( hIvasRend->splitRendEncBuffer, tmpBinaural_buff );
+ }
+
+ /* Encode split rendering bitstream */
+ convertBitsBufferToInternalBitsBuff( *hBits, &bits );
+
+ ro_md_flag = 0;
+ for ( i = 0; i < RENDERER_MAX_ISM_INPUTS; ++i )
+ {
+ if ( hIvasRend->inputsIsm[i].base.inConfig != IVAS_AUDIO_CONFIG_INVALID )
+ {
+ ro_md_flag = 1;
+ break;
+ }
+ }
+
+ if ( ( error = ISAR_PRE_REND_MultiBinToSplitBinaural( hIvasRend->splitRendWrapper,
+ hIvasRend->headRotData.headPositions[0],
+ pSplitRendConfig->splitRendBitRate,
+ pSplitRendConfig->codec,
+ pSplitRendConfig->isar_frame_size_ms,
+ pSplitRendConfig->codec_frame_size_ms,
+ &bits,
+ Cldfb_RealBuffer_Binaural,
+ Cldfb_ImagBuffer_Binaural,
+ ( const int16_t )( ( BINAURAL_MAXBANDS * hIvasRend->sampleRateOut ) / 48000 ),
+ tmpBinaural,
+ 1,
+ cldfb_in_flag,
+ ( hIvasRend->outputConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM ) ? 1 : 0,
+ ro_md_flag ) ) != IVAS_ERR_OK )
+ {
+ return error;
}
- hIvasRend->splitRendEncBuffer.config.numSamplesPerChannel *= cldfb_in_flag ? 2 : 1;
- /* hIvasRend->splitRendEncBuffer used for BINAURAL_SPLIT_CODED output
- outAudio used for BINAURAL_SPLIT_PCM output */
- return getSamplesInternal( hIvasRend, outAudio, hBits );
+ convertInternalBitsBuffToBitsBuffer( hBits, bits );
+
+ /* copy over first pose data to outAudio */
+ if ( hIvasRend->outputConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM )
+ {
+ /* set outAudio to zero - getSamplesInternal only cleared splitRendEncBuffer */
+ set_zero( outAudio.data, outAudio.config.numChannels * outAudio.config.numSamplesPerChannel );
+ accumulate2dArrayToBuffer( tmpBinaural_buff, &outAudio );
+ }
+
+ if ( outAudio.config.is_cldfb == 0 )
+ {
+#ifndef DISABLE_LIMITER
+#ifdef DEBUGGING
+ hIvasRend->numClipping +=
+#endif
+ limitRendererOutput( hIvasRend->hLimiter, outAudio.data, outAudio.config.numSamplesPerChannel, IVAS_LIMITER_THRESHOLD );
+#endif
+ }
+
+ /* update global cominbed orientation start index */
+ ivas_combined_orientation_update_start_index( hIvasRend->hCombinedOrientationData, outAudio.config.numSamplesPerChannel );
+
+ return IVAS_ERR_OK;
}
@@ -7701,8 +8094,8 @@ void IVAS_REND_Close(
*-------------------------------------------------------------------*/
ivas_error IVAS_REND_openCldfb(
- IVAS_CLDFB_FILTER_BANK_HANDLE cldfbAna[IVAS_MAX_INPUT_CHANNELS],
- IVAS_CLDFB_FILTER_BANK_HANDLE cldfbSyn[IVAS_MAX_OUTPUT_CHANNELS],
+ IVAS_CLDFB_FILTER_BANK_HANDLE cldfbAna[RENDERER_MAX_INPUT_CHANNELS],
+ IVAS_CLDFB_FILTER_BANK_HANDLE cldfbSyn[RENDERER_MAX_OUTPUT_CHANNELS],
const int16_t num_in_chs,
const int16_t num_out_chs,
const int32_t output_Fs )
@@ -7717,7 +8110,7 @@ ivas_error IVAS_REND_openCldfb(
return error;
}
}
- for ( ; n < IVAS_MAX_INPUT_CHANNELS; n++ )
+ for ( ; n < RENDERER_MAX_INPUT_CHANNELS; n++ )
{
cldfbAna[n] = NULL;
}
@@ -7729,7 +8122,7 @@ ivas_error IVAS_REND_openCldfb(
return error;
}
}
- for ( ; n < IVAS_MAX_OUTPUT_CHANNELS; n++ )
+ for ( ; n < RENDERER_MAX_OUTPUT_CHANNELS; n++ )
{
cldfbSyn[n] = NULL;
}
@@ -7745,12 +8138,12 @@ ivas_error IVAS_REND_openCldfb(
*-------------------------------------------------------------------*/
void IVAS_REND_closeCldfb(
- IVAS_CLDFB_FILTER_BANK_HANDLE cldfbAna[IVAS_MAX_INPUT_CHANNELS],
- IVAS_CLDFB_FILTER_BANK_HANDLE cldfbSyn[IVAS_MAX_OUTPUT_CHANNELS] )
+ IVAS_CLDFB_FILTER_BANK_HANDLE cldfbAna[RENDERER_MAX_INPUT_CHANNELS],
+ IVAS_CLDFB_FILTER_BANK_HANDLE cldfbSyn[RENDERER_MAX_OUTPUT_CHANNELS] )
{
int16_t n;
- for ( n = 0; n < IVAS_MAX_INPUT_CHANNELS; n++ )
+ for ( n = 0; n < RENDERER_MAX_INPUT_CHANNELS; n++ )
{
if ( cldfbAna[n] != NULL )
{
@@ -7759,7 +8152,7 @@ void IVAS_REND_closeCldfb(
}
}
- for ( n = 0; n < IVAS_MAX_OUTPUT_CHANNELS; n++ )
+ for ( n = 0; n < RENDERER_MAX_OUTPUT_CHANNELS; n++ )
{
if ( cldfbSyn[n] != NULL )
{
diff --git a/lib_rend/lib_rend.h b/lib_rend/lib_rend.h
index f71a1a5384af99db36a33a7ac77f696011c1fb36..4df7d859612ba86491b5b41a8565a8aba08eba3c 100644
--- a/lib_rend/lib_rend.h
+++ b/lib_rend/lib_rend.h
@@ -41,6 +41,8 @@
* Renderer constants
*---------------------------------------------------------------------*/
+#define RENDERER_MAX_OUTPUT_CHANNELS IVAS_MAX_LS_CHANNELS
+#define RENDERER_MAX_INPUT_CHANNELS IVAS_MAX_LS_CHANNELS
#define RENDERER_MAX_ISM_INPUTS IVAS_MAX_NUM_OBJECTS
#define RENDERER_MAX_MC_INPUTS 1
#define RENDERER_MAX_SBA_INPUTS 1
@@ -55,7 +57,7 @@
* Renderer structures
*---------------------------------------------------------------------*/
-typedef float IVAS_REND_LfePanMtx[RENDERER_MAX_INPUT_LFE_CHANNELS][IVAS_MAX_OUTPUT_CHANNELS];
+typedef float IVAS_REND_LfePanMtx[RENDERER_MAX_INPUT_LFE_CHANNELS][RENDERER_MAX_OUTPUT_CHANNELS];
typedef struct
{
@@ -68,6 +70,7 @@ typedef struct
int16_t isar_frame_size_ms;
int16_t lc3plus_highres;
} IVAS_REND_BitstreamBufferConfig;
+
typedef struct
{
IVAS_REND_BitstreamBufferConfig config;
@@ -111,15 +114,15 @@ typedef enum _IVAS_REND_COMPLEXITY_LEVEL
/* Functions to be called before rendering */
ivas_error IVAS_REND_Open(
- IVAS_REND_HANDLE *phIvasRend, /* i/o: Pointer to renderer handle */
- const int32_t outputSampleRate, /* i : output sampling rate */
- const IVAS_AUDIO_CONFIG outConfig, /* i : output audio config */
- const bool asHrtfBinary, /* i : load hrtf binary file */
- const int16_t nonDiegeticPan, /* i : non-diegetic object flag */
- const float nonDiegeticPanGain, /* i : non-diegetic panning gain */
- const int16_t Opt_Headrotation, /* i : indicates whether head-rotation is used */
- const int16_t Opt_ExternalOrientation, /* i : indicates whether external orientations are used */
- const int16_t num_subframes /* i : number of subframes */
+ IVAS_REND_HANDLE *phIvasRend, /* i/o: Pointer to renderer handle */
+ const int32_t outputSampleRate, /* i : output sampling rate */
+ const IVAS_AUDIO_CONFIG outConfig, /* i : output audio config */
+ const bool asHrtfBinary, /* i : load hrtf binary file */
+ const int16_t nonDiegeticPan, /* i : non-diegetic object flag */
+ const float nonDiegeticPanGain, /* i : non-diegetic panning gain */
+ const int16_t Opt_Headrotation, /* i : indicates whether head-rotation is used */
+ const int16_t Opt_ExternalOrientation, /* i : indicates whether external orientations are used */
+ const int16_t num_subframes /* i : number of subframes */
);
/* Note: this will reset custom LFE routings set for any MC input */
@@ -131,7 +134,7 @@ ivas_error IVAS_REND_ConfigureCustomOutputLoudspeakerLayout(
/* Functions to be called before/during rendering */
-ivas_error IVAS_REND_NumOutChannels(
+ivas_error IVAS_REND_GetNumOutChannels(
IVAS_REND_CONST_HANDLE hIvasRend, /* i : Renderer handle */
int16_t *numOutChannels /* o : number of output channels */
);
@@ -149,6 +152,12 @@ ivas_error IVAS_REND_ConfigureCustomInputLoudspeakerLayout(
const IVAS_CUSTOM_LS_DATA layout /* i : custom loudspeaker layout for input */
);
+#ifdef NONBE_1377_REND_DIRATT_CONF
+ivas_error IVAS_REND_SetObjectIDs(
+ IVAS_REND_HANDLE hIvasRend /* i/o: Renderer handle */
+);
+#endif
+
ivas_error IVAS_REND_SetInputGain(
IVAS_REND_HANDLE hIvasRend, /* i/o: Renderer handle */
const IVAS_REND_InputId inputId, /* i : ID of the input */
@@ -209,16 +218,17 @@ ivas_error IVAS_REND_GetHrtfParamBinHandle(
);
ivas_error IVAS_REND_GetHrtfStatisticsHandle(
- IVAS_REND_HANDLE hIvasRend, /* i/o: IVAS renderer handle */
- IVAS_DEC_HRTF_STATISTICS_HANDLE **hHrtfStatistics /* o : HRTF statistics handle */
+ IVAS_REND_HANDLE hIvasRend, /* i/o: IVAS renderer handle */
+ IVAS_DEC_HRTF_STATISTICS_HANDLE **hHrtfStatistics /* o : HRTF statistics handle */
);
/* Functions to be called during rendering */
ivas_error IVAS_REND_FeedInputAudio(
- IVAS_REND_HANDLE hIvasRend, /* i/o: Renderer handle */
- const IVAS_REND_InputId inputId, /* i : ID of the input */
- const IVAS_REND_ReadOnlyAudioBuffer inputAudio /* i : buffer with input audio */
+ IVAS_REND_HANDLE hIvasRend, /* i/o: Renderer handle */
+ const IVAS_REND_InputId inputId, /* i : ID of the input */
+ const IVAS_REND_ReadOnlyAudioBuffer inputAudio, /* i : buffer with input audio */
+ const bool flushInputs /* i : flush input audio */
);
ivas_error IVAS_REND_FeedInputObjectMetadata(
@@ -379,23 +389,23 @@ ivas_error IVAS_REND_GetSamples(
/* Functions to be called after rendering */
void IVAS_REND_Close(
- IVAS_REND_HANDLE* phIvasRend /* i/o: Pointer to renderer handle */
+ IVAS_REND_HANDLE *phIvasRend /* i/o: Pointer to renderer handle */
);
/* Split binaural rendering functions */
ivas_error IVAS_REND_openCldfb(
- IVAS_CLDFB_FILTER_BANK_HANDLE cldfbAna[IVAS_MAX_INPUT_CHANNELS],
- IVAS_CLDFB_FILTER_BANK_HANDLE cldfbSyn[IVAS_MAX_OUTPUT_CHANNELS],
+ IVAS_CLDFB_FILTER_BANK_HANDLE cldfbAna[RENDERER_MAX_INPUT_CHANNELS],
+ IVAS_CLDFB_FILTER_BANK_HANDLE cldfbSyn[RENDERER_MAX_OUTPUT_CHANNELS],
const int16_t num_in_chs,
const int16_t num_out_chs,
const int32_t output_Fs
);
void IVAS_REND_closeCldfb(
- IVAS_CLDFB_FILTER_BANK_HANDLE cldfbAna[IVAS_MAX_INPUT_CHANNELS],
- IVAS_CLDFB_FILTER_BANK_HANDLE cldfbSyn[IVAS_MAX_OUTPUT_CHANNELS]
+ IVAS_CLDFB_FILTER_BANK_HANDLE cldfbAna[RENDERER_MAX_INPUT_CHANNELS],
+ IVAS_CLDFB_FILTER_BANK_HANDLE cldfbSyn[RENDERER_MAX_OUTPUT_CHANNELS]
);
void IVAS_REND_cldfbAnalysis_ts_wrapper(
diff --git a/lib_util/aeid_file_reader.c b/lib_util/aeid_file_reader.c
index e569dbdc7c50b3cf6685a6a882a608e43545f9a6..6f877452e5c1021124bfeb16e88b1f91dc84d562 100644
--- a/lib_util/aeid_file_reader.c
+++ b/lib_util/aeid_file_reader.c
@@ -69,9 +69,9 @@ ivas_error aeidFileReader_open(
return IVAS_ERR_FAILED_FILE_OPEN;
}
- self = calloc( sizeof( aeidFileReader ), 1 );
+ self = calloc( 1, sizeof( aeidFileReader ) );
self->aeidFile = aeidFile;
- self->file_path = calloc( sizeof( char ), strlen( aeidFilePath ) + 1 );
+ self->file_path = calloc( strlen( aeidFilePath ) + 1, sizeof( char ) );
strcpy( self->file_path, aeidFilePath );
*aeidReader = self;
diff --git a/lib_util/audio_file_reader.c b/lib_util/audio_file_reader.c
index 1b52daaa772cf7bf0487f178202f1107c59af36c..92bfe8978993ec074d8c9da86549a4d567b52073 100644
--- a/lib_util/audio_file_reader.c
+++ b/lib_util/audio_file_reader.c
@@ -94,7 +94,7 @@ ivas_error AudioFileReader_open(
{
return IVAS_ERR_FAILED_FILE_OPEN;
}
- self = calloc( sizeof( AudioFileReader ), 1 );
+ self = calloc( 1, sizeof( AudioFileReader ) );
self->samplingRate = 0;
self->numChannels = 0;
diff --git a/lib_util/audio_file_writer.c b/lib_util/audio_file_writer.c
index 321063101959dc6ecab0a60103f1f2de3246a52e..eb93018341780d232df13483268f295577e21cae 100644
--- a/lib_util/audio_file_writer.c
+++ b/lib_util/audio_file_writer.c
@@ -89,7 +89,7 @@ ivas_error AudioFileWriter_open(
return IVAS_ERR_FAILED_FILE_OPEN;
}
- self = calloc( sizeof( AudioFileWriter ), 1 );
+ self = calloc( 1, sizeof( AudioFileWriter ) );
if ( self == NULL )
{
return IVAS_ERR_FAILED_ALLOC;
diff --git a/lib_util/bitstream_reader.c b/lib_util/bitstream_reader.c
index a250a34a70323023220c7345f0c7424ff730af18..c6fe784fbde9de4ec48281e50048066bc9909f19 100644
--- a/lib_util/bitstream_reader.c
+++ b/lib_util/bitstream_reader.c
@@ -203,16 +203,15 @@ static void init_for_mime( BS_READER_HANDLE hBsReader )
static ivas_error init_for_format( BS_READER_HANDLE *phBsReader, BS_READER_FORMAT format )
{
/* Allocate memory under handle and check if allocation successful */
- ( *phBsReader ) = (BS_READER_HANDLE) malloc( sizeof( struct BS_Reader ) );
+ /* Initialize all struct members to NULL - supported functions
+ * will be overwritten below in init_for_ */
+ ( *phBsReader ) = (BS_READER_HANDLE) calloc( 1, sizeof( struct BS_Reader ) );
if ( *phBsReader == NULL )
{
return IVAS_ERROR( IVAS_ERR_FAILED_ALLOC, "could not allocate bitstream reader" );
}
- /* Initialize all struct members to NULL - supported functions
- * will be overwritten below in init_for_ */
BS_READER_HANDLE hBsReader = *phBsReader;
- memset( hBsReader, 0, sizeof( struct BS_Reader ) );
/* Set function pointers to selected format */
switch ( format )
diff --git a/lib_util/bitstream_writer.c b/lib_util/bitstream_writer.c
index 8c4b64cd4816649cb6833ccd6bda13270eb0e179..bff9f461b15992ed3c953a83a19f2c22cc496ed6 100644
--- a/lib_util/bitstream_writer.c
+++ b/lib_util/bitstream_writer.c
@@ -156,16 +156,15 @@ static void init_for_mime( BS_WRITER_HANDLE hBsWriter )
static ivas_error init_for_format( BS_WRITER_HANDLE *phBsWriter, BS_WRITER_FORMAT format )
{
/* Allocate memory under handle and check if allocation successful */
- ( *phBsWriter ) = (BS_WRITER_HANDLE) malloc( sizeof( struct BS_Writer ) );
+ /* Initialize all struct members to NULL - supported functions
+ * will be overwritten below in init_for_ */
+ ( *phBsWriter ) = (BS_WRITER_HANDLE) calloc( 1, sizeof( struct BS_Writer ) );
if ( *phBsWriter == NULL )
{
IVAS_ERROR( IVAS_ERR_FAILED_ALLOC, "could not allocate bitstream writer" );
}
- /* Initialize all struct members to NULL - supported functions
- * will be overwritten below in init_for_ */
BS_WRITER_HANDLE hBsWriter = *phBsWriter;
- memset( hBsWriter, 0, sizeof( struct BS_Writer ) );
/* Set function pointers to selected format */
switch ( format )
diff --git a/lib_util/g192.c b/lib_util/g192.c
index 99058df662b33bc1cf9b744e9330a2560842b42d..a5eb030a4fd4bb37dcb9fbd96d7f8b67d0e61121 100644
--- a/lib_util/g192.c
+++ b/lib_util/g192.c
@@ -62,7 +62,7 @@
*-----------------------------------------------------------------------*/
/* main handle */
-struct __G192
+struct G192_STRUCT
{
FILE *file;
int16_t ownFileHandle; /* flag whether FILE handle created by instance or externally */
@@ -79,12 +79,11 @@ G192_ERROR G192_Reader_Open_filename(
const char *filename )
{
/* create handle */
- *phG192 = (G192_HANDLE) calloc( 1, sizeof( struct __G192 ) );
+ *phG192 = (G192_HANDLE) calloc( 1, sizeof( struct G192_STRUCT ) );
if ( !phG192 )
{
return G192_MEMORY_ERROR;
}
- memset( *phG192, 0, sizeof( struct __G192 ) );
/* open file stream */
( *phG192 )->file = fopen( filename, "rb" );
@@ -422,7 +421,7 @@ G192_ERROR G192_Writer_Open_filename(
const char *filename )
{
/* create handle */
- *phG192 = (G192_HANDLE) calloc( 1, sizeof( struct __G192 ) );
+ *phG192 = (G192_HANDLE) calloc( 1, sizeof( struct G192_STRUCT ) );
if ( !phG192 )
{
return G192_MEMORY_ERROR;
diff --git a/lib_util/g192.h b/lib_util/g192.h
index 61d0a1fd6565892fa954eeb20f23bfef9f030d66..0c22b739b9ff372d2939c423615a13458d31e7fd 100644
--- a/lib_util/g192.h
+++ b/lib_util/g192.h
@@ -67,8 +67,8 @@ typedef enum _G192_ERROR
*-----------------------------------------------------------------------*/
/* main handle */
-struct __G192;
-typedef struct __G192 *G192_HANDLE;
+struct G192_STRUCT;
+typedef struct G192_STRUCT *G192_HANDLE;
/*-----------------------------------------------------------------------*
diff --git a/lib_util/hrtf_file_reader.c b/lib_util/hrtf_file_reader.c
index 53a5d340e127a20607d955035ba57b1c901cedbf..3347a0c9ab5999930526f84ad7ae3df1465e3e4a 100644
--- a/lib_util/hrtf_file_reader.c
+++ b/lib_util/hrtf_file_reader.c
@@ -83,9 +83,9 @@ ivas_error hrtfFileReader_open(
return IVAS_ERR_FAILED_FILE_OPEN;
}
- self = calloc( sizeof( hrtfFileReader ), 1 );
+ self = calloc( 1, sizeof( hrtfFileReader ) );
self->file = file;
- self->file_path = calloc( sizeof( char ), strlen( filePath ) + 1 );
+ self->file_path = calloc( strlen( filePath ) + 1, sizeof( char ) );
strcpy( self->file_path, filePath );
*hrtfReader = self;
diff --git a/lib_util/ism_file_reader.c b/lib_util/ism_file_reader.c
index 088a4134f95145390a45fd695678ccf866bd7499..83a32b7a01553f5a7616571b1b3ae90642414532 100644
--- a/lib_util/ism_file_reader.c
+++ b/lib_util/ism_file_reader.c
@@ -72,9 +72,9 @@ IsmFileReader *IsmFileReader_open(
return NULL;
}
- self = calloc( sizeof( IsmFileReader ), 1 );
+ self = calloc( 1, sizeof( IsmFileReader ) );
self->file = file;
- self->file_path = calloc( sizeof( char ), strlen( filePath ) + 1 );
+ self->file_path = calloc( strlen( filePath ) + 1, sizeof( char ) );
strcpy( self->file_path, filePath );
return self;
diff --git a/lib_util/ism_file_writer.c b/lib_util/ism_file_writer.c
index fff4cc4ff014e8eaac96950d115440bf8ee975d8..10efc1ea3d4b73e31a9e6d30173e835d10fccd92 100644
--- a/lib_util/ism_file_writer.c
+++ b/lib_util/ism_file_writer.c
@@ -81,9 +81,9 @@ ivas_error IsmFileWriter_open(
return IVAS_ERR_FAILED_FILE_OPEN;
}
- self = calloc( sizeof( IsmFileWriter ), 1 );
+ self = calloc( 1, sizeof( IsmFileWriter ) );
self->file = file;
- self->file_path = calloc( sizeof( char ), strlen( filePath ) + 1 );
+ self->file_path = calloc( strlen( filePath ) + 1, sizeof( char ) );
strcpy( self->file_path, filePath );
*ismWriter = self;
diff --git a/lib_util/jbm_file_reader.c b/lib_util/jbm_file_reader.c
index b657ab78929f906eb29dd6c3435af8a7f91c73ca..68caf5ae73fc93637fbe3f08d7a4b1513bd284bc 100644
--- a/lib_util/jbm_file_reader.c
+++ b/lib_util/jbm_file_reader.c
@@ -68,9 +68,9 @@ JbmFileReader *JbmFileReader_open(
return NULL;
}
- self = calloc( sizeof( JbmFileReader ), 1 );
+ self = calloc( 1, sizeof( JbmFileReader ) );
self->file = file;
- self->file_path = calloc( sizeof( char ), strlen( filePath ) + 1 );
+ self->file_path = calloc( strlen( filePath ) + 1, sizeof( char ) );
strcpy( self->file_path, filePath );
return self;
diff --git a/lib_util/jbm_file_writer.c b/lib_util/jbm_file_writer.c
index 76a5a67d2566db5d87ecefb0bb7d21bbeb9afcaf..9d11dad90490e74e44a1f8afc25e70e8fc196493 100644
--- a/lib_util/jbm_file_writer.c
+++ b/lib_util/jbm_file_writer.c
@@ -77,9 +77,9 @@ ivas_error JbmOffsetFileWriter_open(
return IVAS_ERR_FAILED_FILE_OPEN;
}
- self = calloc( sizeof( JbmOffsetFileWriter ), 1 );
+ self = calloc( 1, sizeof( JbmOffsetFileWriter ) );
self->file = file;
- self->file_path = calloc( sizeof( char ), strlen( jbmOffsetFilename ) + 1 );
+ self->file_path = calloc( strlen( jbmOffsetFilename ) + 1, sizeof( char ) );
strcpy( self->file_path, jbmOffsetFilename );
*jbmOffsetWriter = self;
@@ -204,9 +204,9 @@ ivas_error JbmTraceFileWriter_open(
fprintf( file, "#rtpSeqNo;rtpTs;rcvTime;playTime;active\n" );
- self = calloc( sizeof( JbmTraceFileWriter ), 1 );
+ self = calloc( 1, sizeof( JbmTraceFileWriter ) );
self->file = file;
- self->file_path = calloc( sizeof( char ), strlen( jbmTraceFilename ) + 1 );
+ self->file_path = calloc( strlen( jbmTraceFilename ) + 1, sizeof( char ) );
strcpy( self->file_path, jbmTraceFilename );
*jbmTraceWriter = self;
diff --git a/lib_util/ls_custom_file_reader.c b/lib_util/ls_custom_file_reader.c
index 48c87a88eae79e998a5dc7774c9962932d7f5f5f..d874342c11b839c9526f361f8df35bba42423f25 100644
--- a/lib_util/ls_custom_file_reader.c
+++ b/lib_util/ls_custom_file_reader.c
@@ -70,9 +70,9 @@ ivas_error CustomLsReader_open(
return IVAS_ERR_FAILED_FILE_OPEN;
}
- self = calloc( sizeof( LsCustomFileReader ), 1 );
+ self = calloc( 1, sizeof( LsCustomFileReader ) );
self->file = lsFile;
- self->file_path = calloc( sizeof( char ), strlen( LsFilePath ) + 1 );
+ self->file_path = calloc( strlen( LsFilePath ) + 1, sizeof( char ) );
strcpy( self->file_path, LsFilePath );
*hLsCustomReader = self;
@@ -121,11 +121,11 @@ static LS_CUSTOM_FILEREADER_ERROR CustomLoudspeakerLayout_validate(
{
int16_t i, j;
int16_t dup_count;
- int16_t dup[IVAS_MAX_OUTPUT_CHANNELS];
- float azi_tmp[IVAS_MAX_OUTPUT_CHANNELS];
- float ele_tmp[IVAS_MAX_OUTPUT_CHANNELS];
+ int16_t dup[IVAS_MAX_LS_CHANNELS];
+ float azi_tmp[IVAS_MAX_LS_CHANNELS];
+ float ele_tmp[IVAS_MAX_LS_CHANNELS];
- for ( i = 0; i < IVAS_MAX_OUTPUT_CHANNELS; i++ )
+ for ( i = 0; i < IVAS_MAX_LS_CHANNELS; i++ )
{
dup[i] = 0;
azi_tmp[i] = 0.0f;
@@ -143,7 +143,7 @@ static LS_CUSTOM_FILEREADER_ERROR CustomLoudspeakerLayout_validate(
return LS_CUSTOM_FILEREADER_LFE_NUM_SPK_EXCEEDED_ERROR;
}
- if ( ( *num_azi + num_lfe ) > IVAS_MAX_OUTPUT_CHANNELS )
+ if ( ( *num_azi + num_lfe ) > IVAS_MAX_LS_CHANNELS )
{
return LS_CUSTOM_FILEREADER_OUTPUT_NCHAN_EXCEEDED_ERROR;
}
@@ -182,7 +182,7 @@ static LS_CUSTOM_FILEREADER_ERROR CustomLoudspeakerLayout_validate(
( *num_azi ) -= dup_count;
- for ( i = 0; i < IVAS_MAX_OUTPUT_CHANNELS; i++ )
+ for ( i = 0; i < IVAS_MAX_LS_CHANNELS; i++ )
{
azi[i] = azi_tmp[i];
ele[i] = ele_tmp[i];
@@ -240,7 +240,7 @@ LS_CUSTOM_FILEREADER_ERROR CustomLsFileReading(
{
LS_CUSTOM_FILEREADER_ERROR error;
- char line[200]; /* > (10 chars * IVAS_MAX_OUTPUT_CHANNELS) i.e. "-999, " */
+ char line[200]; /* > (10 chars * IVAS_MAX_LS_CHANNELS) i.e. "-999, " */
const char *tok;
int16_t i, num_azi, num_ele, num_lfe;
@@ -250,7 +250,7 @@ LS_CUSTOM_FILEREADER_ERROR CustomLsFileReading(
num_ele = 0;
num_lfe = 0;
- for ( i = 0; i < IVAS_MAX_OUTPUT_CHANNELS; i++ )
+ for ( i = 0; i < IVAS_MAX_LS_CHANNELS; i++ )
{
hLsCustomData->lfe_idx[i] = -1;
hLsCustomData->azimuth[i] = 0.0f;
@@ -282,7 +282,7 @@ LS_CUSTOM_FILEREADER_ERROR CustomLsFileReading(
continue;
}
- if ( num_azi >= IVAS_MAX_OUTPUT_CHANNELS )
+ if ( num_azi >= IVAS_MAX_LS_CHANNELS )
{
return LS_CUSTOM_FILEREADER_AZI_NUM_SPK_EXCEEDED_ERROR;
}
@@ -311,7 +311,7 @@ LS_CUSTOM_FILEREADER_ERROR CustomLsFileReading(
continue;
}
- if ( num_ele >= IVAS_MAX_OUTPUT_CHANNELS )
+ if ( num_ele >= IVAS_MAX_LS_CHANNELS )
{
return LS_CUSTOM_FILEREADER_ELE_NUM_SPK_EXCEEDED_ERROR;
}
@@ -337,14 +337,14 @@ LS_CUSTOM_FILEREADER_ERROR CustomLsFileReading(
continue;
}
- if ( num_lfe > IVAS_MAX_OUTPUT_CHANNELS )
+ if ( num_lfe > IVAS_MAX_LS_CHANNELS )
{
return LS_CUSTOM_FILEREADER_LFE_NUM_SPK_EXCEEDED_ERROR;
}
else
{
hLsCustomData->lfe_idx[num_lfe] = (int16_t) atoi( tok );
- if ( hLsCustomData->lfe_idx[num_lfe] < 0 || hLsCustomData->lfe_idx[num_lfe] > ( IVAS_MAX_OUTPUT_CHANNELS - 1 ) )
+ if ( hLsCustomData->lfe_idx[num_lfe] < 0 || hLsCustomData->lfe_idx[num_lfe] > ( IVAS_MAX_LS_CHANNELS - 1 ) )
{
return LS_CUSTOM_FILEREADER_LFE_INDEX_ERROR;
}
diff --git a/lib_util/masa_file_reader.c b/lib_util/masa_file_reader.c
index 2cb76f96e6e105fc1c0fa0511000d17d6584e5e1..1122878f8a5c8f84d8f50d73c33d644926bc5084 100644
--- a/lib_util/masa_file_reader.c
+++ b/lib_util/masa_file_reader.c
@@ -70,7 +70,7 @@ MasaFileReader *MasaFileReader_open(
return NULL;
}
- self = calloc( sizeof( MasaFileReader ), 1 );
+ self = calloc( 1, sizeof( MasaFileReader ) );
self->file = file;
generate_gridEq( &self->sph_grid16 );
diff --git a/lib_util/masa_file_writer.c b/lib_util/masa_file_writer.c
index 8cac01ff5ab2ad8963d7850cfe367c2590640fb1..3f269a68717c6d1a55196bb04c5304bb1315dcb7 100644
--- a/lib_util/masa_file_writer.c
+++ b/lib_util/masa_file_writer.c
@@ -212,14 +212,14 @@ ivas_error MasaFileWriter_open(
return IVAS_ERR_FAILED_FILE_OPEN;
}
- self = calloc( sizeof( MasaFileWriter ), 1 );
+ self = calloc( 1, sizeof( MasaFileWriter ) );
self->file = file;
- self->file_path = calloc( sizeof( char ), strlen( filePath ) + 1 );
+ self->file_path = calloc( strlen( filePath ) + 1, sizeof( char ) );
strcpy( self->file_path, filePath );
if ( !delayCompensationEnabled )
{
- self->delayStorage = calloc( sizeof( MASA_META_DELAY_STORAGE ), 1 );
+ self->delayStorage = calloc( 1, sizeof( MASA_META_DELAY_STORAGE ) );
self->delayStorage->prevDelay = DELAY_MASA_PARAM_DEC_SFR;
}
diff --git a/lib_util/mime_io.c b/lib_util/mime_io.c
index 9bdd20e45343aac7bf6828575850638678267184..1ecd603b32a752b4f819a3636bdedfd1179c4209 100644
--- a/lib_util/mime_io.c
+++ b/lib_util/mime_io.c
@@ -305,7 +305,9 @@ MIME_ERROR MIME_Writer_Close(
}
-static bool readByte( FILE *file, uint8_t *value )
+static bool readByte(
+ FILE *file,
+ uint8_t *value )
{
if ( fread( value, 1, 1, file ) != 1U )
{
@@ -314,10 +316,13 @@ static bool readByte( FILE *file, uint8_t *value )
return true;
}
-static bool readLong( FILE *file, uint16_t *value )
+static bool readLong(
+ FILE *file,
+ uint16_t *value )
{
char buffer[4] = { 0 };
- if ( fread( buffer, 4, 1, file ) != 1U )
+
+ if ( fread( buffer, 1, 4, file ) != 1U )
{
return false;
}
@@ -342,7 +347,10 @@ static bool readLong( FILE *file, uint16_t *value )
* to the serial bitstream.
*-------------------------------------------------------------------*/
-static void byteToSerialReordered( uint8_t byte, uint16_t *serial, const int16_t *sort_indices )
+static void byteToSerialReordered(
+ uint8_t byte,
+ uint16_t *serial,
+ const int16_t *sort_indices )
{
for ( uint32_t i = 0; i < 8; ++i )
{
@@ -356,8 +364,11 @@ static void byteToSerialReordered( uint8_t byte, uint16_t *serial, const int16_t
byte <<= 1;
}
+
+ return;
}
+
/*-------------------------------------------------------------------*
* byteToSerial()
*
@@ -365,18 +376,25 @@ static void byteToSerialReordered( uint8_t byte, uint16_t *serial, const int16_t
* to the given serial bitstream array.
*-------------------------------------------------------------------*/
-static void byteToSerial( uint8_t byte, uint16_t *serial )
+static void byteToSerial(
+ uint8_t byte,
+ uint16_t *serial )
{
const int16_t indices[8] = { 0, 1, 2, 3, 4, 5, 6, 7 };
+
byteToSerialReordered( byte, serial, indices );
+
+ return;
}
-static MIME_ERROR readHeader( MIME_HANDLE hMIME )
+
+static MIME_ERROR readHeader(
+ MIME_HANDLE hMIME )
{
const char id[] = "#!EVS_MC1.0\n";
const uint16_t num_char_id = sizeof( id ) - 1;
-
char buffer[sizeof( id )] = { 0 };
+
if ( fread( buffer, sizeof( char ), num_char_id, hMIME->file ) != num_char_id )
{
return MIME_READ_ERROR;
@@ -394,13 +412,17 @@ static MIME_ERROR readHeader( MIME_HANDLE hMIME )
return MIME_NO_ERROR;
}
+
+
/*-------------------------------------------------------------------*
* MIME_Reader_Open_filename()
*
* Open MIME reader
*-------------------------------------------------------------------*/
-MIME_ERROR MIME_Reader_Open_filename( MIME_HANDLE *phMIME, const char *filename )
+MIME_ERROR MIME_Reader_Open_filename(
+ MIME_HANDLE *phMIME,
+ const char *filename )
{
MIME_ERROR error = MIME_NO_ERROR;
@@ -436,7 +458,8 @@ MIME_ERROR MIME_Reader_Open_filename( MIME_HANDLE *phMIME, const char *filename
* Rewind currently opened file to beginning
*-------------------------------------------------------------------*/
-MIME_ERROR MIME_Reader_Rewind( MIME_HANDLE hMIME )
+MIME_ERROR MIME_Reader_Rewind(
+ MIME_HANDLE hMIME )
{
if ( !hMIME || !hMIME->file )
{
@@ -451,7 +474,13 @@ MIME_ERROR MIME_Reader_Rewind( MIME_HANDLE hMIME )
return MIME_NO_ERROR;
}
-static MIME_ERROR readEvsFrame( FILE *file, uint8_t ToC, uint16_t *serial, int16_t *num_bits, int16_t *bfi )
+
+static MIME_ERROR readEvsFrame(
+ FILE *file,
+ uint8_t ToC,
+ uint16_t *serial,
+ int16_t *num_bits,
+ int16_t *bfi )
{
switch ( ToC & 0x0f )
{
@@ -520,7 +549,13 @@ static MIME_ERROR readEvsFrame( FILE *file, uint8_t ToC, uint16_t *serial, int16
return MIME_NO_ERROR;
}
-static MIME_ERROR readAmrWbFrame( FILE *file, uint8_t ToC, uint16_t *serial, int16_t *num_bits, int16_t *bfi )
+
+static MIME_ERROR readAmrWbFrame(
+ FILE *file,
+ uint8_t ToC,
+ uint16_t *serial,
+ int16_t *num_bits,
+ int16_t *bfi )
{
const uint8_t mode = ToC & 0x0f;
@@ -591,12 +626,18 @@ static MIME_ERROR readAmrWbFrame( FILE *file, uint8_t ToC, uint16_t *serial, int
return MIME_NO_ERROR;
}
+
/*-------------------------------------------------------------------*
* MIME_ReadFrame_short()
*
* Read MIME frame to serial bitstream
*-------------------------------------------------------------------*/
-MIME_ERROR MIME_ReadFrame_short( MIME_HANDLE hMIME, uint16_t *serial, int16_t *num_bits, int16_t *bfi )
+
+MIME_ERROR MIME_ReadFrame_short(
+ MIME_HANDLE hMIME,
+ uint16_t *serial,
+ int16_t *num_bits,
+ int16_t *bfi )
{
if ( !hMIME )
{
@@ -633,12 +674,16 @@ MIME_ERROR MIME_ReadFrame_short( MIME_HANDLE hMIME, uint16_t *serial, int16_t *n
return MIME_NO_ERROR;
}
+
+
/*-------------------------------------------------------------------*
* MIME_Reader_Close()
*
* Close MIME reader
*-------------------------------------------------------------------*/
-MIME_ERROR MIME_Reader_Close( MIME_HANDLE *phMIME )
+
+MIME_ERROR MIME_Reader_Close(
+ MIME_HANDLE *phMIME )
{
if ( phMIME == NULL || *phMIME == NULL )
{
diff --git a/lib_util/obj_edit_file_reader.c b/lib_util/obj_edit_file_reader.c
index 9963e722bae33266b9edaecb07f2920be73123db..2dde08ecc3936931f11956757739ede7521439a9 100644
--- a/lib_util/obj_edit_file_reader.c
+++ b/lib_util/obj_edit_file_reader.c
@@ -76,13 +76,13 @@ ivas_error ObjectEditFileReader_open(
return IVAS_ERR_FAILED_FILE_OPEN;
}
- self = (ObjectEditFileReader *) calloc( sizeof( ObjectEditFileReader ), 1 );
+ self = (ObjectEditFileReader *) calloc( 1, sizeof( ObjectEditFileReader ) );
self->maxLineLen = 256;
self->editFileHandle = fileHandle;
- self->inLine = (char *) calloc( sizeof( char ), self->maxLineLen );
+ self->inLine = (char *) calloc( self->maxLineLen, sizeof( char ) );
- self->readInfo = (ReadObjectEditInfo *) calloc( sizeof( ReadObjectEditInfo ), 1 );
+ self->readInfo = (ReadObjectEditInfo *) calloc( 1, sizeof( ReadObjectEditInfo ) );
self->readInfo->bg_gain = 0.0f;
self->readInfo->bg_gain_edited = false;
diff --git a/lib_util/render_config_reader.c b/lib_util/render_config_reader.c
index dd3e84ac8700575362f5a97adbeba571b7dfd69a..7729efbc7cb0ffe9ca4174f7aa12ea7012c5a67c 100644
--- a/lib_util/render_config_reader.c
+++ b/lib_util/render_config_reader.c
@@ -1398,7 +1398,7 @@ ivas_error RenderConfigReader_open(
return IVAS_ERR_FAILED_FILE_OPEN;
}
- pSelf = calloc( sizeof( RenderConfigReader ), 1 );
+ pSelf = calloc( 1, sizeof( RenderConfigReader ) );
pSelf->pConfigFile = pConfigFile;
pSelf->nFG = 0;
pSelf->pFG = NULL;
diff --git a/lib_util/rotation_file_reader.c b/lib_util/rotation_file_reader.c
index f659fbb9fa558c8312f2b8c1c3b909f73b980474..cbf36e42ba56ae54f35834971d6bcae38d81d100 100644
--- a/lib_util/rotation_file_reader.c
+++ b/lib_util/rotation_file_reader.c
@@ -72,10 +72,10 @@ ivas_error RotationFileReader_open(
return IVAS_ERR_FAILED_FILE_OPEN;
}
- self = calloc( sizeof( RotFileReader ), 1 );
+ self = calloc( 1, sizeof( RotFileReader ) );
self->trajFile = trajFile;
self->frameCounter = 0;
- self->file_path = calloc( sizeof( char ), strlen( trajFilePath ) + 1 );
+ self->file_path = calloc( strlen( trajFilePath ) + 1, sizeof( char ) );
strcpy( self->file_path, trajFilePath );
self->fileRewind = false;
@@ -175,6 +175,12 @@ ivas_error ExternalOrientationFileReading(
( externalOrientationReader->frameCounter )++;
+ /* Only Quaternion orientations are supported, raise an error if Euler angles are detected in the input */
+ if ( w == -3.0f )
+ {
+ return IVAS_ERR_EXTERNAL_ORIENTATION_INVALID_FORMAT;
+ }
+
pQuaternion->w = w;
pQuaternion->x = x;
pQuaternion->y = y;
diff --git a/lib_util/rtpdump.c b/lib_util/rtpdump.c
index 2ce8580a86d1355df40846a2b9ee78f2bcf83cb0..7129a514fdce695de3de05bbdc20065987e7d407 100644
--- a/lib_util/rtpdump.c
+++ b/lib_util/rtpdump.c
@@ -80,7 +80,7 @@ static unsigned char *parseByte( unsigned char *buffer, unsigned char *value )
static int readLong( FILE *file, unsigned int *value )
{
char buffer[4] = { 0 };
- if ( fread( buffer, 4, 1, file ) != 1U )
+ if ( fread( buffer, 1, 4, file ) != 1U )
{
return -1;
}
@@ -96,7 +96,7 @@ static int readLong( FILE *file, unsigned int *value )
static int readShort( FILE *file, unsigned short *value )
{
char buffer[2] = { 0 };
- if ( fread( buffer, 2, 1, file ) != 1U )
+ if ( fread( buffer, 1, 2, file ) != 1U )
{
return -1;
}
diff --git a/lib_util/split_rend_bfi_file_reader.c b/lib_util/split_rend_bfi_file_reader.c
index 70e695048ef0b88f8a1550f418f9c65f54c6687f..07b71e2219933dd8738a02d5be5a3b2b2c40f2f2 100644
--- a/lib_util/split_rend_bfi_file_reader.c
+++ b/lib_util/split_rend_bfi_file_reader.c
@@ -76,10 +76,10 @@ ivas_error SplitRendBFIFileReader_open(
txtfile = ( strcmp( bfiFilePath + strlen( bfiFilePath ) - 4, ".txt" ) ? false : true );
- self = calloc( sizeof( SplitRendBFIFileReader ), 1 );
+ self = calloc( 1, sizeof( SplitRendBFIFileReader ) );
self->bfiFile = bfiFile;
self->frameCounter = 0;
- self->file_path = calloc( sizeof( char ), strlen( bfiFilePath ) + 1 );
+ self->file_path = calloc( strlen( bfiFilePath ) + 1, sizeof( char ) );
strcpy( self->file_path, bfiFilePath );
self->fileRewind = false;
self->txtfile = txtfile;
diff --git a/lib_util/tinywavein_c.h b/lib_util/tinywavein_c.h
index b86d97c9640f1e91427a4b6cf8731df62a1596bb..1ff6f26bb78438b2fbb835e483f99c1d46128dce 100644
--- a/lib_util/tinywavein_c.h
+++ b/lib_util/tinywavein_c.h
@@ -54,14 +54,14 @@
#define __TWI_SUCCESS ( 0 )
#define __TWI_ERROR ( -1 )
-typedef struct __tinyWaveInHandle
+typedef struct tinyWaveInHandle
{
FILE *theFile;
fpos_t dataChunkPos;
uint32_t position;
uint32_t length;
uint32_t bps;
-} __tinyWaveInHandle, WAVEFILEIN;
+} tinyWaveInHandle, WAVEFILEIN;
typedef struct
{
diff --git a/lib_util/tinywaveout_c.h b/lib_util/tinywaveout_c.h
index 693beccf9557dfaf7d6a507cb614064f76049f03..190bc5eb50ccf2cd1904dec576fe1af9d423e585 100644
--- a/lib_util/tinywaveout_c.h
+++ b/lib_util/tinywaveout_c.h
@@ -70,15 +70,15 @@
#endif
#endif
-typedef struct __tinyWaveOutHeader
+typedef struct tinyWaveOutHeader
{
uint32_t riffType; /* 'RIFF' */
uint32_t riffSize; /* file size */
uint32_t waveType; /* 'WAVE' */
-} __tinyWaveOutHeader;
+} tinyWaveOutHeader;
-typedef struct __tinyWaveOutFmtChunk
+typedef struct tinyWaveOutFmtChunk
{
uint32_t formatType;
uint32_t formatSize;
@@ -91,16 +91,15 @@ typedef struct __tinyWaveOutFmtChunk
uint16_t bitsPerSample;
/* wav fmt ext hdr here */
-} __tinyWaveOutFmtChunk;
+} tinyWaveOutFmtChunk;
-typedef struct __tinyWaveOutDataChunk
+typedef struct tinyWaveOutDataChunk
{
uint32_t dataType;
uint32_t dataSize;
+} tinyWaveOutDataChunk;
-} __tinyWaveOutDataChunk;
-
-typedef struct __tinyWaveOutHandle
+typedef struct tinyWaveOutHandle
{
FILE *theFile;
uint32_t dataSize;
@@ -109,7 +108,7 @@ typedef struct __tinyWaveOutHandle
uint32_t dataChunkOffset;
uint32_t bps;
uint32_t clipCount;
-} __tinyWaveOutHandle, WAVEFILEOUT;
+} tinyWaveOutHandle, WAVEFILEOUT;
/*--- local protos --------------------------------------------------*/
static __inline uint32_t BigEndian32( char, char, char, char );
@@ -132,9 +131,9 @@ static WAVEFILEOUT *CreateBWF(
/* ,const uint32_t writeWaveExt */ )
{
WAVEFILEOUT *self;
- __tinyWaveOutHeader whdr;
- __tinyWaveOutFmtChunk wfch;
- __tinyWaveOutDataChunk wdch;
+ tinyWaveOutHeader whdr;
+ tinyWaveOutFmtChunk wfch;
+ tinyWaveOutDataChunk wdch;
uint32_t blockAlignment = 0;
uint32_t ByteCnt = 0; /* Byte counter for fwrite */
diff --git a/lib_util/tsm_scale_file_reader.c b/lib_util/tsm_scale_file_reader.c
index 653fc0f2f6f99f6d0d274cbe2adfc63d33123edb..65182061e2d1a486dd59b54020e150d01a019082 100644
--- a/lib_util/tsm_scale_file_reader.c
+++ b/lib_util/tsm_scale_file_reader.c
@@ -73,9 +73,9 @@ TsmScaleFileReader *TsmScaleFileReader_open(
return NULL;
}
- self = calloc( sizeof( TsmScaleFileReader ), 1 );
+ self = calloc( 1, sizeof( TsmScaleFileReader ) );
self->file = file;
- self->file_path = calloc( sizeof( char ), strlen( filePath ) + 1 );
+ self->file_path = calloc( strlen( filePath ) + 1, sizeof( char ) );
strcpy( self->file_path, filePath );
return self;
diff --git a/lib_util/vector3_pair_file_reader.c b/lib_util/vector3_pair_file_reader.c
index 8a46a97d1d2f8920bd5daf2d90283ac13c9087b1..5f6116c747d519bb738eb0d90c419f3d85f9e771 100644
--- a/lib_util/vector3_pair_file_reader.c
+++ b/lib_util/vector3_pair_file_reader.c
@@ -68,9 +68,9 @@ ivas_error Vector3PairFileReader_open(
return IVAS_ERR_FAILED_FILE_OPEN;
}
- self = calloc( sizeof( Vector3PairFileReader ), 1 );
+ self = calloc( 1, sizeof( Vector3PairFileReader ) );
self->trajFile = trajFile;
- self->file_path = calloc( sizeof( char ), strlen( trajFilePath ) + 1 );
+ self->file_path = calloc( strlen( trajFilePath ) + 1, sizeof( char ) );
strcpy( self->file_path, trajFilePath );
*vector3PairReader = self;
diff --git a/readme.txt b/readme.txt
index d9a8e5b414e4628c33c637838948de8649715920..9bd1c4d6fb5861f67c10f24844673e50a4650977 100644
--- a/readme.txt
+++ b/readme.txt
@@ -285,7 +285,8 @@ Options:
EVS RTP Payload Format or rtpdump files containing TS26.253 Annex A
IVAS RTP Payload Format. The SDP parameter hf_only is required.
Reading RFC4867 AMR/AMR-WB RTP payload format is not supported.
--Tracefile TF : VoIP mode: Generate trace file named TF
+-Tracefile TF : VoIP mode: Generate trace file named TF. Requires -no_delay_cmp to
+ be enabled so that trace contents remain in sync with audio output.
-fec_cfg_file : Optimal channel aware configuration computed by the JBM
as described in Section 6.3.1 of TS26.448. The output is
written into a .txt file. Each line contains the FER indicator
@@ -330,7 +331,9 @@ Options:
--------
-i File : Input audio File (WAV, raw PCM or scene description file)
-if Format : Audio Format of input file (e.g. 5_1 or HOA3 or META, use -l for a list)
--im Files : Metadata files for ISM (one file per object) or MASA inputs
+ META is related to the Scene description file, see scripts/testv/renderer_config_format_readme.txt
+-im Files : Metadata files for ISM/MASA/OMASA/OSBA/BINAURAL_SPLIT_PCM (one file per object).
+ For OMASA input, ISM files must be specified first.
-o File : Output audio File
-of Format : Audio Format of output file
Alternatively, it can be a custom loudspeaker layout File
@@ -346,9 +349,9 @@ Options:
left or l or 90->left, right or r or -90->right, center or c or 0 ->middle
-exof File : External orientation trajectory File for simulation of external orientations
-dpid ID : Directivity pattern ID(s) (space-separated list of up to 4 numbers can be
- specified) for binaural output configuration
+ specified) for binaural outputs
-aeid ID | File : Acoustic environment ID (number > 0)
- alternatively, it can be a text file where each line contains "ID duration" for BINAURAL_ROOM_REVERB output configuration.
+ alternatively, it can be a text file where each line contains "ID duration" for BINAURAL_ROOM_REVERB output.
-lp Position : Output LFE position. Comma-delimited triplet of [gain, azimuth, elevation] where gain is linear
(like --gain, -g) and azimuth, elevation are in degrees.
If specified, overrides the default behavior which attempts to map input to output LFE channel(s)
@@ -359,7 +362,8 @@ Options:
-g : Input gain (linear, not in dB) to be applied to input audio file
-l : List supported audio formats
-smd : Metadata Synchronization Delay in ms, Default is 0. Quantized by 5ms subframes.
--om File : Coded metadata File for BINAURAL_SPLIT_PCM output format
+-om File : Coded metadata File (only for BINAURAL_SPLIT_PCM output)
+-prbfi File : BFI File (only for BINAURAL_SPLIT_PCM output)
-level level : Complexity level, level = (1, 2, 3), will be defined after characterisation.
Currently, all values default to level 3 (full functionality).
-q : Quiet mode, limit printouts to terminal, default is deactivated
@@ -575,6 +579,17 @@ columns are the Euler angles yaw, pitch, and roll. The rotations are applied in
The yaw angle rotates around the z axis, the pitch angle rotates aroud the new y axis, and the roll angle
rotates around the new x axis.
+In case of 6 DoF support for rendering, the head rotation trajectory file may also include a listener
+position in absolute Cartesian coordinates on the x-, y- and z-axis. Note that the listener position is
+expressed in absolute coordinates, while the listener orientation is expressed as scene displacement.
+An example line from a headtracking file of a listener facing forward, positioned at x=3.0, y=4.0 and z=0,
+could be:
+
+-3.0,0.0,0.0,0.0,3.0,4.0,0.0
+
+Note that the listener position applies for listener orientation expressed both in Quaternions and Euler angles.
+
+
For the Head rotation operation modes, external trajectory files are available:
headrot.csv
diff --git a/scripts/config/self_test.prm b/scripts/config/self_test.prm
index a617044875a26263b67d27d4bc7276c13d79cf52..7f857487b9104284093fa9502984079e51a45f41 100644
--- a/scripts/config/self_test.prm
+++ b/scripts/config/self_test.prm
@@ -787,6 +787,10 @@ eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g1
../IVAS_cod -sba 3 128000 32 testv/stv3OA32c.wav bit
../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv -otr avg BINAURAL_ROOM_IR 32 bit testv/stv3OA32c.pcm_SBA_128000_32-32_Binaural_room_Headrot_EXOF_OtrAvg.tst
+// SBA at 128 kbps, 48kHz in, 48kHz out, HOA3 out, mono detector test
+../IVAS_cod -sba 3 128000 48 testv/stv3OA48c_mono.wav bit
+../IVAS_dec HOA3 48 bit testv/stv3OA48c_mono.pcm_SBA_128000_48-48_HOA3.tst
+
// SBA at 192 kbps, 48kHz in, 48kHz out, HOA2 out, random FER at 5%
../IVAS_cod -sba 3 192000 48 testv/stv3OA48c.wav bit
eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error
@@ -1603,143 +1607,143 @@ eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g1
// stereo at 32 kbps, 48 kHz in, 32 kHz out, DTX on, JBM Prof 0
../IVAS_cod -stereo -dtx 32000 48 testv/stvST48n.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_0.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP STEREO 32 netsimoutput testv/stvST48n.wav_stereo_32000_48-32_DTX_JBM0.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP STEREO 32 netsimoutput testv/stvST48n.wav_stereo_32000_48-32_DTX_JBM0.tst
// 4 ISm with metadata at 64 kbps, 48 kHz in, 48 kHz out, DTX on, EXT out, JBM Prof 0
../IVAS_cod -dtx -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 64000 48 testv/stv4ISM48n.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_0.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP EXT 48 netsimoutput testv/stv4ISM48s.wav_64000_48-48_DTX_EXT_JBM0.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP EXT 48 netsimoutput testv/stv4ISM48s.wav_64000_48-48_DTX_EXT_JBM0.tst
// MASA 1dir 1TC at 13.2 kbps, 48kHz in, 32kHz out, DTX on, EXT out, JBM Prof 0
../IVAS_cod -dtx -masa 1 testv/stv1MASA1TC48n.met 13200 48 testv/stv1MASA1TC48n.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_0.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP EXT 32 netsimoutput testv/stv1MASA1TC48n.wav_13200_48-32_DTX_EXT_JBM0.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP EXT 32 netsimoutput testv/stv1MASA1TC48n.wav_13200_48-32_DTX_EXT_JBM0.tst
// SBA at 24.4 kbps, 32kHz in, 32kHz out, DTX on, BINAURAL out, JBM 0
../IVAS_cod -sba 3 -dtx 24400 32 testv/stv3OA32c.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_0.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL 32 netsimoutput testv/stv3OA32c.wav_SBA_24400_32-32_DTX_Binaural_JBM0.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 32 netsimoutput testv/stv3OA32c.wav_SBA_24400_32-32_DTX_Binaural_JBM0.tst
// stereo at 48 kbps, 16 kHz in, 16 kHz out, DTX on, JBM Prof 5
../IVAS_cod -stereo -dtx 48000 16 testv/stvST16n.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP STEREO 16 netsimoutput testv/stvST16n.wav_stereo_48000_16-16_DTX_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP STEREO 16 netsimoutput testv/stvST16n.wav_stereo_48000_16-16_DTX_JBM5.tst
// 4 ISm with metadata at 32 kbps, 48 kHz in, 48 kHz out, FOA out, JBM Prof 5
../IVAS_cod -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 32000 48 testv/stv4ISM48s.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/stv4ISM48s.wav_32000_48-48_FOA_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/stv4ISM48s.wav_32000_48-48_FOA_JBM5.tst
// 3 ISM with metadata bitrate switching from 48 kbps to 32 kbps, 48 kHz in, 32 kHz out, DTX, BINAURAL_ROOM_IR out, JBM Prof 5
../IVAS_cod -dtx -ism 3 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv ../scripts/switchPaths/sw_48-32k_10fr.bin 48 testv/stv3ISM48s.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL_ROOM_IR 32 netsimoutput testv/stv3ISM48s.wav_sw_48-32_DTX_BINAURAL_ROOM_IR_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL_ROOM_IR 32 netsimoutput testv/stv3ISM48s.wav_sw_48-32_DTX_BINAURAL_ROOM_IR_JBM5.tst
// SBA at 80 kbps, 32kHz in, 32kHz out, HOA3 out, JBM Prof 5
../IVAS_cod -sba 3 80000 32 testv/stv3OA32c.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP HOA3 32 netsimoutput testv/stv3OA32c.wav_SBA_80000_32-32_HOA3_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP HOA3 32 netsimoutput testv/stv3OA32c.wav_SBA_80000_32-32_HOA3_JBM5.tst
// SBA at 13.2 kbps, 48kHz in, 48kHz out, BINAURAL out, JBM Prof 5
../IVAS_cod -sba 1 13200 48 testv/stvFOA48c.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/stvFOA32c.wav_SBA_13200_48-48_BINAURAL_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/stvFOA32c.wav_SBA_13200_48-48_BINAURAL_JBM5.tst
// Multi-channel 5_1 at 384 kbps, 48kHz in, 48kHz out, 7_1_4 out, JBM Prof 5
../IVAS_cod -mc 5_1 384000 48 testv/stv51MC48c.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP 7_1_4 48 netsimoutput testv/stv51MC48c.wav_MC51_384000_48-48_7_1_4_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP 7_1_4 48 netsimoutput testv/stv51MC48c.wav_MC51_384000_48-48_7_1_4_JBM5.tst
// Multi-channel 7_1_4 at 256 kbps, 48kHz in, 48kHz out, 7_1_4 out, JBM Prof 5
../IVAS_cod -mc 7_1_4 256000 48 testv/stv714MC48c.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP 7_1_4 48 netsimoutput testv/stv714MC48c.wav_MC714_256000_48-48_7_1_4_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP 7_1_4 48 netsimoutput testv/stv714MC48c.wav_MC714_256000_48-48_7_1_4_JBM5.tst
// Multi-channel 7_1 bitrate switching, 48kHz in, 32kHz out, BINAURAL_ROOM_REVERB out, HR, JBM Prof 5
../IVAS_cod -mc 7_1 ../scripts/switchPaths/sw_24k4_384k.bin 48 testv/stv71MC48c.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -T testv/headrot.csv -Tracefile tracefile_dec -VOIP binaural_room_reverb 32 netsimoutput testv/stv71MC48c.wav_MC71_brsw_48-32_BinauralRoomReverb_Headrot_JBM5.tst
+../IVAS_dec -T testv/headrot.csv -no_delay_cmp -Tracefile tracefile_dec -VOIP binaural_room_reverb 32 netsimoutput testv/stv71MC48c.wav_MC71_brsw_48-32_BinauralRoomReverb_Headrot_JBM5.tst
// Multi-channel 7_1_4 bitrate switching, 48kHz in, 48kHz out, BINAURAL out, HR, JBM Prof 5
../IVAS_cod -mc 7_1_4 ../scripts/switchPaths/sw_24k4_384k.bin 48 testv/stv714MC48c.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -T testv/headrot.csv -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/stv714MC48c.wav_MC714_brsw_48-48_BINAURAL_Headrot_JBM5.tst
+../IVAS_dec -T testv/headrot.csv -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/stv714MC48c.wav_MC714_brsw_48-48_BINAURAL_Headrot_JBM5.tst
// MASA 1dir 1TC bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 32kHz out, 5_1 out, JBM Prof 5
../IVAS_cod -masa 1 testv/stv1MASA1TC48n.met ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/stv1MASA1TC48n.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP 5_1 32 netsimoutput testv/stv1MASA1TC48n.wav_sw_48-32_5_1_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP 5_1 32 netsimoutput testv/stv1MASA1TC48n.wav_sw_48-32_5_1_JBM5.tst
// MASA 1dir 1TC bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 48kHz out, STEREO out, JBM Prof 5
../IVAS_cod -masa 1 testv/stv1MASA1TC48n.met ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/stv1MASA1TC48n.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP STEREO 48 netsimoutput testv/stv1MASA1TC48n.wav_sw_48-48_STEREO_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP STEREO 48 netsimoutput testv/stv1MASA1TC48n.wav_sw_48-48_STEREO_JBM5.tst
// MASA 1dir 1TC bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 48kHz out, FOA out, JBM Prof 5
../IVAS_cod -masa 1 testv/stv1MASA1TC48n.met ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/stv1MASA1TC48n.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/stv1MASA1TC48n.wav_sw_48-48_FOA_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/stv1MASA1TC48n.wav_sw_48-48_FOA_JBM5.tst
// MASA 1dir 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 16kHz out, BINAURAL out, JBM Prof 5
../IVAS_cod -masa 2 testv/stv1MASA2TC48n.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stv1MASA2TC48n.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL 16 netsimoutput testv/stv1MASA2TC48n.wav_sw_48-16_BINAURAL_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 16 netsimoutput testv/stv1MASA2TC48n.wav_sw_48-16_BINAURAL_JBM5.tst
// MASA 1dir 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 32kHz out, MONO out, JBM Prof 5
../IVAS_cod -masa 2 testv/stv1MASA2TC48n.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stv1MASA2TC48n.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP MONO 32 netsimoutput testv/stv1MASA2TC48n.wav_sw_48-32_MONO_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP MONO 32 netsimoutput testv/stv1MASA2TC48n.wav_sw_48-32_MONO_JBM5.tst
// MASA 2dir 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, EXT out, JBM Prof 5
../IVAS_cod -masa 2 testv/stv2MASA2TC48c.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stv2MASA2TC48c.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP EXT 48 netsimoutput testv/stv2MASA2TC48c.wav_sw_48-48_EXT_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP EXT 48 netsimoutput testv/stv2MASA2TC48c.wav_sw_48-48_EXT_JBM5.tst
// MASA 2dir 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 16kHz out, BINAURAL out, JBM Prof 5
../IVAS_cod -masa 2 testv/stv2MASA2TC48c.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stv2MASA2TC48c.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL 16 netsimoutput testv/stv2MASA2TC48c.wav_sw_48-16_BINAURAL_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 16 netsimoutput testv/stv2MASA2TC48c.wav_sw_48-16_BINAURAL_JBM5.tst
// OMASA 2Dir2TC 1ISM at br sw techs 13.2 to 512 kbps start 24.4 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_IR out, JBM Prof 5
../IVAS_cod -ism_masa 1 2 testv/stvISM1.csv testv/stv2MASA2TC48c.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_24k4_omasatechs_1ism.bin 48 testv/stvOMASA_1ISM_2MASA2TC48c.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL_ROOM_IR 48 netsimoutput testv/stvOMASA_1ISM_2MASA2TC48c.wav_BINAURAL_ROOM_IR_sw_48-48_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL_ROOM_IR 48 netsimoutput testv/stvOMASA_1ISM_2MASA2TC48c.wav_BINAURAL_ROOM_IR_sw_48-48_JBM5.tst
// OMASA 2Dir2TC 2ISM at br sw techs 13.2 to 512 kbps start 48 kbps, 48kHz in, 48kHz out, 7.1 out, JBM Prof 5
../IVAS_cod -ism_masa 2 2 testv/stvISM1.csv NULL testv/stv2MASA2TC48c.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_48k_omasatechs_2ism.bin 48 testv/stvOMASA_2ISM_2MASA2TC48c.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP 7_1 48 netsimoutput testv/stvOMASA_2ISM_2MASA2TC48c.wav_7_1_sw_48-48_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP 7_1 48 netsimoutput testv/stvOMASA_2ISM_2MASA2TC48c.wav_7_1_sw_48-48_JBM5.tst
// OMASA 2Dir2TC 3ISM at br sw techs 13.2 to 512 kbps start 160 kbps, 48kHz in, 48kHz out, MONO out, JBM Prof 5
../IVAS_cod -ism_masa 3 2 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stv2MASA2TC48c.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_160k_omasatechs_3ism.bin 48 testv/stvOMASA_3ISM_2MASA2TC48c.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP MONO 48 netsimoutput testv/stvOMASA_3ISM_2MASA2TC48c.wav_MONO_sw_48-48_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP MONO 48 netsimoutput testv/stvOMASA_3ISM_2MASA2TC48c.wav_MONO_sw_48-48_JBM5.tst
// OMASA 2Dir1TC 3ISM at br sw techs 13.2 to 512 kbps start 48 kbps, 48kHz in, 32kHz out, STEREO out, JBM Prof 5
../IVAS_cod -ism_masa 3 1 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stv2MASA1TC48c.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_48k_omasatechs_3ism.bin 48 testv/stvOMASA_3ISM_2MASA1TC48c.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP STEREO 32 netsimoutput testv/stvOMASA_3ISM_2MASA1TC48c.wav_STEREO_sw_48-32_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP STEREO 32 netsimoutput testv/stvOMASA_3ISM_2MASA1TC48c.wav_STEREO_sw_48-32_JBM5.tst
// OMASA 1Dir2TC 3ISM at br sw techs 13.2 to 512 kbps start 24.4 kbps, 32kHz in, 48kHz out, 5.1.2 out, JBM Prof 5
../IVAS_cod -ism_masa 3 2 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stv1MASA2TC48c.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_24k4_omasatechs_3ism.bin 32 testv/stvOMASA_3ISM_1MASA2TC32c.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP 5_1_2 48 netsimoutput testv/stvOMASA_3ISM_1MASA2TC32c.wav_5_1_2_sw_32-48_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP 5_1_2 48 netsimoutput testv/stvOMASA_3ISM_1MASA2TC32c.wav_5_1_2_sw_32-48_JBM5.tst
// OMASA 1Dir1TC 4ISM at br sw techs 13.2 to 512 kbps start 32 kbps, 48kHz in, 48kHz out, BINAURAL out, JBM Prof 5
../IVAS_cod -ism_masa 4 1 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv testv/stv1MASA1TC48c.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_32k_omasatechs_4ism.bin 48 testv/stvOMASA_4ISM_1MASA1TC48c.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/stvOMASA_4ISM_1MASA1TC48c.wav_BINAURAL_sw_48-48_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/stvOMASA_4ISM_1MASA1TC48c.wav_BINAURAL_sw_48-48_JBM5.tst
// OMASA 1Dir2TC 4ISM at br sw techs 13.2 to 512 kbps start 80 kbps, 48kHz in, 48kHz out, FOA out, JBM Prof 5
../IVAS_cod -ism_masa 4 2 NULL testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv testv/stv1MASA2TC48c.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_80k_omasatechs_4ism.bin 48 testv/stvOMASA_4ISM_1MASA2TC48c.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/stvOMASA_4ISM_1MASA2TC48c.wav_FOA_sw_48-48_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/stvOMASA_4ISM_1MASA2TC48c.wav_FOA_sw_48-48_JBM5.tst
// OMASA 2Dir2TC 4ISM at 256 kbps, 48kHz in, 48kHz out, EXT out, JBM Prof 5
../IVAS_cod -ism_masa 4 2 testv/stvISM1.csv testv/stvISM2.csv NULL testv/stvISM4.csv testv/stv2MASA2TC48c.met 256000 48 testv/stvOMASA_4ISM_2MASA2TC48c.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP EXT 48 netsimoutput testv/stvOMASA_4ISM_2MASA2TC48c.wav_EXT_256000_48-48_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP EXT 48 netsimoutput testv/stvOMASA_4ISM_2MASA2TC48c.wav_EXT_256000_48-48_JBM5.tst
// OMASA 1Dir1TC 4ISM 48 kbps 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out custom configuration
../IVAS_cod -ism_masa 4 1 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv testv/stv1MASA1TC48c.met 48000 48 testv/stvOMASA_4ISM_1MASA1TC48c.wav bit
@@ -2017,7 +2021,7 @@ eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_10pct.g
// OSBA 2OA 2ISM bitrate switching, 32kHz in, 48kHz out, BINAURAL_ROOM_REVERB out, JBM Prof 5
../IVAS_cod -ism_sba 2 2 testv/stvISM1.csv testv/stvISM2.csv ../scripts/switchPaths/sw_24k4_256k.bin 32 testv/stvOSBA_2ISM_2OA32c.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL_ROOM_REVERB 48 netsimoutput testv/stvOSBA_2ISM_2OA32c.wav_BINAURAL_brsw_32-48_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL_ROOM_REVERB 48 netsimoutput testv/stvOSBA_2ISM_2OA32c.wav_BINAURAL_brsw_32-48_JBM5.tst
// OSBA 2ISM 2OA at bitrate switching 13.2 to 512 kbps, 48kHz in, 48kHz out, BINAURAL out, rtpdump, PI data
../IVAS_cod -rtpdump -scene_orientation testv/headrot_case00_3000_q.csv -device_orientation testv/headrot_case03_3000_q.csv -ism_sba 2 2 testv/stvISM1.csv testv/stvISM2.csv ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stvOSBA_2ISM_2OA48c.wav bit
@@ -2031,25 +2035,25 @@ networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit
// OMASA 2Dir2TC 4ISM at 256 kbps, 48kHz in, 48kHz out, BINAURAL out, object editing, JBM Prof 5, DISC
../IVAS_cod -ism_masa 4 2 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv testv/stv2MASA2TC48c.met 256000 48 testv/stvOMASA_4ISM_2MASA2TC48c.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/stvOMASA_4ISM_2MASA2TC48c.wav_BINAURAL_256000_48-48_OE_JBM5.tst
+../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/stvOMASA_4ISM_2MASA2TC48c.wav_BINAURAL_256000_48-48_OE_JBM5.tst
// OMASA 2Dir2TC 2ISM at 96 kbps, 48kHz in, 48kHz out, FOA out, object editing, JBM Prof 5, DISC
../IVAS_cod -ism_masa 2 2 testv/stvISM1.csv testv/stvISM2.csv testv/stv2MASA2TC48c.met 96000 48 testv/stvOMASA_2ISM_2MASA2TC48c.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/stvOMASA_2ISM_2MASA2TC48c.wav_FOA_96000_48-48_OE_JBM5.tst
+../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -no_delay_cmp -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/stvOMASA_2ISM_2MASA2TC48c.wav_FOA_96000_48-48_OE_JBM5.tst
// OMASA 2Dir2TC 2ISM br sw techs 13.2 to 512 kbps start 48 kbps, 48kHz in, 48kHz out, BINAURAL out, object editing
../IVAS_cod -ism_masa 2 2 testv/stvISM1.csv testv/stvISM2.csv testv/stv2MASA2TC48c.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_48k_omasatechs_2ism.bin 48 testv/stvOMASA_2ISM_2MASA2TC48c.wav bit
../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt BINAURAL 48 bit testv/stvOMASA_2ISM_2MASA2TC48c.wav_BINAURAL_sw_48-48_OE.tst
-// OSBA 3OA 4ISM at 256 kbps, 48kHz in, 48kHz out, BINAURAL out, object editing, DISC
+// OSBA 3OA 4ISM at 256 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_IR out, object editing, DISC
../IVAS_cod -ism_sba 4 3 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 256000 48 testv/stvOSBA_4ISM_3OA48c.wav bit
-../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt BINAURAL 48 bit testv/stvOSBA_4ISM_3OA48c.wav_BINAURAL_256000_48-48_OE.tst
+../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt BINAURAL_ROOM_IR 48 bit testv/stvOSBA_4ISM_3OA48c.wav_BINAURAL_ROOM_IR_256000_48-48_OE.tst
// OSBA 2OA 3ISM at 128 kbps, 48kHz in, 48kHz out, FOA out, object editing, JBM Prof 5, DISC
../IVAS_cod -ism_sba 3 2 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv 128000 48 testv/stvOSBA_3ISM_2OA48c.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/stvOSBA_3ISM_2OA48c.wav_FOA_128000_48-48_OE_JBM5.tst
+../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -no_delay_cmp -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/stvOSBA_3ISM_2OA48c.wav_FOA_128000_48-48_OE_JBM5.tst
// OSBA 2OA 3ISM at bitrate switching 13.2 to 512 kbps, 48kHz in, 48kHz out, BINAURAL out, object editing
../IVAS_cod -ism_sba 3 2 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stvOSBA_3ISM_2OA48c.wav bit
@@ -2067,12 +2071,12 @@ eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g1
// 3 ISM with metadata at 24.4 kbps, 48 kHz in, 48 kHz out, FOA out, object editing, JBM Prof 5, PARAM_ISM
../IVAS_cod -ism 3 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv 24400 48 testv/stv3ISM48s.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/stv3ISM48s.wav_24400_48-48_FOA_OE_JBM5.tst
+../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -no_delay_cmp -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/stv3ISM48s.wav_24400_48-48_FOA_OE_JBM5.tst
// 3 ISM with metadata at 384 kbps, 48 kHz in, 48 kHz out, FOA out, object editing, JBM Prof 5, DISC
../IVAS_cod -ism 3 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv 384000 48 testv/stv3ISM48s.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -obj_edit NULL -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/stv3ISM48s.wav_384000_48-48_FOA_OE_JBM5.tst
+../IVAS_dec -obj_edit NULL -no_delay_cmp -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/stv3ISM48s.wav_384000_48-48_FOA_OE_JBM5.tst
// 4 ISM with metadata bitrate switching from 32 kbps to 48 kbps, 48 kHz in, 48 kHz out, BINAURAL_ROOM_IR out, object editing
../IVAS_cod -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv ../scripts/switchPaths/sw_32-48k_10fr.bin 48 testv/stv4ISM48s.wav bit
@@ -2081,4 +2085,4 @@ networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit
// 4 ISM with metadata bitrate switching from 48 kbps to 32 kbps, 48 kHz in, 48 kHz out, BINAURAL out, object editing, JBM Prof 5
../IVAS_cod -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv ../scripts/switchPaths/sw_48-32k_10fr.bin 48 testv/stv4ISM48s.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/stv4ISM48s.wav_sw_48-48_BINAURAL_OE_JBM5.tst
+../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/stv4ISM48s.wav_sw_48-48_BINAURAL_OE_JBM5.tst
diff --git a/scripts/config/self_test_evs.prm b/scripts/config/self_test_evs.prm
index ec611fee2a551ea95e9a7a1086cbd2fd9631e432..b68b9509a3bf90bc485caa47d53d80bf9c1c8b5c 100644
--- a/scripts/config/self_test_evs.prm
+++ b/scripts/config/self_test_evs.prm
@@ -250,14 +250,14 @@ eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g1
// Codec A at 13.20 kbps, 32kHz in, 32kHz out, DTX, JBM Prof 5
../IVAS_cod -dtx 13200 32 testv/stv32c.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP 32 netsimoutput testv/stv32c_13k20_32-32_DTX_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP 32 netsimoutput testv/stv32c_13k20_32-32_DTX_JBM5.tst
// Codec B at 16.40 kbps, 32kHz in, 32kHz out, DTX, JBM Prof 5
../IVAS_cod -dtx 16400 32 testv/stv32c.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP 32 netsimoutput testv/stv32c_16k40_32-32_DTX_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP 32 netsimoutput testv/stv32c_16k40_32-32_DTX_JBM5.tst
// Codec B at 13.20 kbps, 32kHz in, 32kHz out, JBM Prof 9, Channel aware
../IVAS_cod -rf 13200 32 testv/stv32c.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP 32 netsimoutput testv/stv32c_13k20_CA_32-32_JBM9.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP 32 netsimoutput testv/stv32c_13k20_CA_32-32_JBM9.tst
diff --git a/scripts/config/self_test_ltv.prm b/scripts/config/self_test_ltv.prm
index 8c1897f0e11bbbc111a92a63efb7de50c63cf52b..5db028d50a55d96e0556acaec84b05ae1ff32d8c 100644
--- a/scripts/config/self_test_ltv.prm
+++ b/scripts/config/self_test_ltv.prm
@@ -1582,143 +1582,143 @@ eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g1
// stereo at 32 kbps, 48 kHz in, 32 kHz out, DTX on, JBM Prof 0
../IVAS_cod -stereo -dtx 32000 48 testv/ltv48_STEREO.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_0.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP STEREO 32 netsimoutput testv/ltv48_STEREO.wav_stereo_32000_48-32_DTX_JBM0.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP STEREO 32 netsimoutput testv/ltv48_STEREO.wav_stereo_32000_48-32_DTX_JBM0.tst
// 4 ISm with metadata at 64 kbps, 48 kHz in, 48 kHz out, DTX on, EXT out, JBM Prof 0
../IVAS_cod -dtx -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 64000 48 testv/ltv48_4ISM.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_0.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP EXT 48 netsimoutput testv/ltv48_4ISM.wav_64000_48-48_DTX_EXT_JBM0.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP EXT 48 netsimoutput testv/ltv48_4ISM.wav_64000_48-48_DTX_EXT_JBM0.tst
// MASA 1dir 1TC at 13.2 kbps, 48kHz in, 32kHz out, DTX on, EXT out, JBM Prof 0
../IVAS_cod -dtx -masa 1 testv/ltv48_MASA1TC.met 13200 48 testv/ltv48_MASA1TC.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_0.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP EXT 32 netsimoutput testv/ltv48_MASA1TC.wav_13200_48-32_DTX_EXT_JBM0.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP EXT 32 netsimoutput testv/ltv48_MASA1TC.wav_13200_48-32_DTX_EXT_JBM0.tst
// SBA at 24.4 kbps, 32kHz in, 32kHz out, DTX on, BINAURAL out, JBM 0
../IVAS_cod -sba 3 -dtx 24400 32 testv/ltv32_HOA3.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_0.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL 32 netsimoutput testv/ltv32_HOA3.wav_SBA_24400_32-32_DTX_Binaural_JBM0.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 32 netsimoutput testv/ltv32_HOA3.wav_SBA_24400_32-32_DTX_Binaural_JBM0.tst
// stereo at 48 kbps, 16 kHz in, 16 kHz out, DTX on, JBM Prof 5
../IVAS_cod -stereo -dtx 48000 16 testv/ltv16_STEREO.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP STEREO 16 netsimoutput testv/ltv16_STEREO.wav_stereo_48000_16-16_DTX_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP STEREO 16 netsimoutput testv/ltv16_STEREO.wav_stereo_48000_16-16_DTX_JBM5.tst
// 4 ISm with metadata at 32 kbps, 48 kHz in, 48 kHz out, FOA out, JBM Prof 5
../IVAS_cod -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 32000 48 testv/ltv48_4ISM.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/ltv48_4ISM.wav_32000_48-48_FOA_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/ltv48_4ISM.wav_32000_48-48_FOA_JBM5.tst
// 3 ISM with metadata bitrate switching from 48 kbps to 32 kbps, 48 kHz in, 32 kHz out, DTX, BINAURAL_ROOM_IR out, JBM Prof 5
../IVAS_cod -dtx -ism 3 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv ../scripts/switchPaths/sw_48-32k_10fr.bin 48 testv/ltv48_3ISM.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL_ROOM_IR 32 netsimoutput testv/ltv48_3ISM.wav_sw_48-32_DTX_BINAURAL_ROOM_IR_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL_ROOM_IR 32 netsimoutput testv/ltv48_3ISM.wav_sw_48-32_DTX_BINAURAL_ROOM_IR_JBM5.tst
// SBA at 80 kbps, 32kHz in, 32kHz out, HOA3 out, JBM Prof 5
../IVAS_cod -sba 3 80000 32 testv/ltv32_HOA3.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP HOA3 32 netsimoutput testv/ltv32_HOA3.wav_SBA_80000_32-32_HOA3_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP HOA3 32 netsimoutput testv/ltv32_HOA3.wav_SBA_80000_32-32_HOA3_JBM5.tst
// SBA at 13.2 kbps, 48kHz in, 48kHz out, BINAURAL out, JBM Prof 5
../IVAS_cod -sba 1 13200 48 testv/ltv48_FOA.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/ltv48_FOA.wav_SBA_13200_48-48_BINAURAL_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/ltv48_FOA.wav_SBA_13200_48-48_BINAURAL_JBM5.tst
// Multi-channel 5_1 at 384 kbps, 48kHz in, 48kHz out, 7_1_4 out, JBM Prof 5
../IVAS_cod -mc 5_1 384000 48 testv/ltv48_MC51.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP 7_1_4 48 netsimoutput testv/ltv48_MC51.wav_MC51_384000_48-48_7_1_4_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP 7_1_4 48 netsimoutput testv/ltv48_MC51.wav_MC51_384000_48-48_7_1_4_JBM5.tst
// Multi-channel 7_1_4 at 256 kbps, 48kHz in, 48kHz out, 7_1_4 out, JBM Prof 5
../IVAS_cod -mc 7_1_4 256000 48 testv/ltv48_MC714.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP 7_1_4 48 netsimoutput testv/ltv48_MC714.wav_MC714_256000_48-48_7_1_4_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP 7_1_4 48 netsimoutput testv/ltv48_MC714.wav_MC714_256000_48-48_7_1_4_JBM5.tst
// Multi-channel 7_1 bitrate switching, 48kHz in, 32kHz out, BINAURAL_ROOM_REVERB out, HR, JBM Prof 5
../IVAS_cod -mc 7_1 ../scripts/switchPaths/sw_24k4_384k.bin 48 testv/ltv48_MC71.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -T testv/headrot.csv -Tracefile tracefile_dec -VOIP binaural_room_reverb 32 netsimoutput testv/ltv48_MC71.wav_MC71_brsw_48-32_BinauralRoomReverb_Headrot_JBM5.tst
+../IVAS_dec -T testv/headrot.csv -no_delay_cmp -Tracefile tracefile_dec -VOIP binaural_room_reverb 32 netsimoutput testv/ltv48_MC71.wav_MC71_brsw_48-32_BinauralRoomReverb_Headrot_JBM5.tst
// Multi-channel 7_1_4 bitrate switching, 48kHz in, 48kHz out, BINAURAL out, HR, JBM Prof 5
../IVAS_cod -mc 7_1_4 ../scripts/switchPaths/sw_24k4_384k.bin 48 testv/ltv48_MC714.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -T testv/headrot.csv -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/ltv48_MC714.wav_MC714_brsw_48-48_BINAURAL_Headrot_JBM5.tst
+../IVAS_dec -T testv/headrot.csv -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/ltv48_MC714.wav_MC714_brsw_48-48_BINAURAL_Headrot_JBM5.tst
// MASA 1TC bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 32kHz out, 5_1 out, JBM Prof 5
../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/ltv48_MASA1TC.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP 5_1 32 netsimoutput testv/ltv48_MASA1TC.wav_sw_48-32_5_1_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP 5_1 32 netsimoutput testv/ltv48_MASA1TC.wav_sw_48-32_5_1_JBM5.tst
// MASA 1TC bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 48kHz out, STEREO out, JBM Prof 5
../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/ltv48_MASA1TC.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP STEREO 48 netsimoutput testv/ltv48_MASA1TC.wav_sw_48-48_STEREO_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP STEREO 48 netsimoutput testv/ltv48_MASA1TC.wav_sw_48-48_STEREO_JBM5.tst
// MASA 1TC bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 48kHz out, FOA out, JBM Prof 5
../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/ltv48_MASA1TC.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/ltv48_MASA1TC.wav_sw_48-48_FOA_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/ltv48_MASA1TC.wav_sw_48-48_FOA_JBM5.tst
// MASA 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 16kHz out, BINAURAL out, JBM Prof 5
../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_MASA2TC.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL 16 netsimoutput testv/ltv48_MASA2TC.wav_sw_48-16_BINAURAL_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 16 netsimoutput testv/ltv48_MASA2TC.wav_sw_48-16_BINAURAL_JBM5.tst
// MASA 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 32kHz out, MONO out, JBM Prof 5
../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_MASA2TC.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP MONO 32 netsimoutput testv/ltv48_MASA2TC.wav_sw_48-32_MONO_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP MONO 32 netsimoutput testv/ltv48_MASA2TC.wav_sw_48-32_MONO_JBM5.tst
// MASA 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, EXT out, JBM Prof 5
../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_MASA2TC.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP EXT 48 netsimoutput testv/ltv48_MASA2TC.wav_sw_48-48_EXT_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP EXT 48 netsimoutput testv/ltv48_MASA2TC.wav_sw_48-48_EXT_JBM5.tst
// MASA 1TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 16kHz out, BINAURAL out, JBM Prof 5
../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_MASA1TC.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL 16 netsimoutput testv/ltv48_MASA1TC.wav_sw_48-16_BINAURAL_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 16 netsimoutput testv/ltv48_MASA1TC.wav_sw_48-16_BINAURAL_JBM5.tst
// OMASA 2TC 1ISM at br sw techs 13.2 to 512 kbps start 24.4 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_IR out, JBM Prof 5
../IVAS_cod -ism_masa 1 2 testv/ltv48_OMASA_1ISM_2TC_ISM1.csv testv/ltv48_OMASA_1ISM_2TC.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_24k4_omasatechs_1ism.bin 48 testv/ltv48_OMASA_1ISM_2TC.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL_ROOM_IR 48 netsimoutput testv/ltv48_OMASA_1ISM_2TC.wav_BINAURAL_ROOM_IR_sw_48-48_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL_ROOM_IR 48 netsimoutput testv/ltv48_OMASA_1ISM_2TC.wav_BINAURAL_ROOM_IR_sw_48-48_JBM5.tst
// OMASA 2TC 2ISM at br sw techs 13.2 to 512 kbps start 48 kbps, 48kHz in, 48kHz out, 7.1 out, JBM Prof 5
../IVAS_cod -ism_masa 2 2 testv/ltv48_OMASA_2ISM_2TC_ISM1.csv NULL testv/ltv48_OMASA_2ISM_2TC.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_48k_omasatechs_2ism.bin 48 testv/ltv48_OMASA_2ISM_2TC.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP 7_1 48 netsimoutput testv/ltv48_OMASA_2ISM_2TC.wav_7_1_sw_48-48_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP 7_1 48 netsimoutput testv/ltv48_OMASA_2ISM_2TC.wav_7_1_sw_48-48_JBM5.tst
// OMASA 2TC 3ISM at br sw techs 13.2 to 512 kbps start 160 kbps, 48kHz in, 48kHz out, MONO out, JBM Prof 5
../IVAS_cod -ism_masa 3 2 testv/ltv48_OMASA_3ISM_2TC_ISM1.csv testv/ltv48_OMASA_3ISM_2TC_ISM2.csv testv/ltv48_OMASA_3ISM_2TC_ISM3.csv testv/ltv48_OMASA_3ISM_2TC.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_160k_omasatechs_3ism.bin 48 testv/ltv48_OMASA_3ISM_2TC.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP MONO 48 netsimoutput testv/ltv48_OMASA_3ISM_2TC.wav_MONO_sw_48-48_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP MONO 48 netsimoutput testv/ltv48_OMASA_3ISM_2TC.wav_MONO_sw_48-48_JBM5.tst
// OMASA 1TC 3ISM at br sw techs 13.2 to 512 kbps start 48 kbps, 48kHz in, 32kHz out, STEREO out, JBM Prof 5
../IVAS_cod -ism_masa 3 1 testv/ltv48_OMASA_3ISM_1TC_ISM1.csv testv/ltv48_OMASA_3ISM_1TC_ISM2.csv testv/ltv48_OMASA_3ISM_1TC_ISM3.csv testv/ltv48_OMASA_3ISM_1TC.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_48k_omasatechs_3ism.bin 48 testv/ltv48_OMASA_3ISM_1TC.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP STEREO 32 netsimoutput testv/ltv48_OMASA_3ISM_1TC.wav_STEREO_sw_48-32_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP STEREO 32 netsimoutput testv/ltv48_OMASA_3ISM_1TC.wav_STEREO_sw_48-32_JBM5.tst
// OMASA 2TC 3ISM at br sw techs 13.2 to 512 kbps start 24.4 kbps, 32kHz in, 48kHz out, 5.1.2 out, JBM Prof 5
../IVAS_cod -ism_masa 3 2 testv/ltv48_OMASA_3ISM_2TC_ISM1.csv testv/ltv48_OMASA_3ISM_2TC_ISM2.csv testv/ltv48_OMASA_3ISM_2TC_ISM3.csv testv/ltv48_OMASA_3ISM_2TC.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_24k4_omasatechs_3ism.bin 32 testv/ltv32_OMASA_3ISM_2TC.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP 5_1_2 48 netsimoutput testv/ltv32_OMASA_3ISM_2TC.wav_5_1_2_sw_32-48_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP 5_1_2 48 netsimoutput testv/ltv32_OMASA_3ISM_2TC.wav_5_1_2_sw_32-48_JBM5.tst
// OMASA 1TC 4ISM at br sw techs 13.2 to 512 kbps start 32 kbps, 48kHz in, 48kHz out, BINAURAL out, JBM Prof 5
../IVAS_cod -ism_masa 4 1 testv/ltv48_OMASA_4ISM_1TC_ISM1.csv testv/ltv48_OMASA_4ISM_1TC_ISM2.csv testv/ltv48_OMASA_4ISM_1TC_ISM3.csv testv/ltv48_OMASA_4ISM_1TC_ISM4.csv testv/ltv48_OMASA_4ISM_1TC.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_32k_omasatechs_4ism.bin 48 testv/ltv48_OMASA_4ISM_1TC.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/ltv48_OMASA_4ISM_1TC.wav_BINAURAL_sw_48-48_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/ltv48_OMASA_4ISM_1TC.wav_BINAURAL_sw_48-48_JBM5.tst
// OMASA 2TC 4ISM at br sw techs 13.2 to 512 kbps start 80 kbps, 48kHz in, 48kHz out, FOA out, JBM Prof 5
../IVAS_cod -ism_masa 4 2 NULL testv/ltv48_OMASA_4ISM_2TC_ISM2.csv testv/ltv48_OMASA_4ISM_2TC_ISM3.csv testv/ltv48_OMASA_4ISM_2TC_ISM4.csv testv/ltv48_OMASA_4ISM_2TC.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_80k_omasatechs_4ism.bin 48 testv/ltv48_OMASA_4ISM_2TC.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/ltv48_OMASA_4ISM_2TC.wav_FOA_sw_48-48_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/ltv48_OMASA_4ISM_2TC.wav_FOA_sw_48-48_JBM5.tst
// OMASA 2TC 4ISM at 256 kbps, 48kHz in, 48kHz out, EXT out, JBM Prof 5
../IVAS_cod -ism_masa 4 2 testv/ltv48_OMASA_4ISM_2TC_ISM1.csv testv/ltv48_OMASA_4ISM_2TC_ISM2.csv NULL testv/ltv48_OMASA_4ISM_2TC_ISM4.csv testv/ltv48_OMASA_4ISM_2TC.met 256000 48 testv/ltv48_OMASA_4ISM_2TC.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP EXT 48 netsimoutput testv/ltv48_OMASA_4ISM_2TC.wav_EXT_256000_48-48_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP EXT 48 netsimoutput testv/ltv48_OMASA_4ISM_2TC.wav_EXT_256000_48-48_JBM5.tst
// OMASA 1TC 4ISM 48 kbps 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out custom configuration
../IVAS_cod -ism_masa 4 1 testv/ltv48_OMASA_4ISM_1TC_ISM1.csv testv/ltv48_OMASA_4ISM_1TC_ISM2.csv testv/ltv48_OMASA_4ISM_1TC_ISM3.csv testv/ltv48_OMASA_4ISM_1TC_ISM4.csv testv/ltv48_OMASA_4ISM_1TC.met 48000 48 testv/ltv48_OMASA_4ISM_1TC.wav bit
@@ -1993,7 +1993,7 @@ eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_10pct.g
// OSBA 2OA 2ISM bitrate switching, 32kHz in, 48kHz out, BINAURAL_ROOM_REVERB out, JBM Prof 5
../IVAS_cod -ism_sba 2 2 testv/ltvISM1.csv testv/ltvISM2.csv ../scripts/switchPaths/sw_24k4_256k.bin 32 testv/ltv32_OSBA_2ISM_HOA2.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL_ROOM_REVERB 48 netsimoutput testv/ltv32_OSBA_2ISM_HOA2.wav_BINAURAL_brsw_32-48_JBM5.tst
+../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL_ROOM_REVERB 48 netsimoutput testv/ltv32_OSBA_2ISM_HOA2.wav_BINAURAL_brsw_32-48_JBM5.tst
// OMASA 2TC 4ISM at 80 kbps, 48kHz in, 48kHz out, BINAURAL out, default object editing, 1SEP-PARAM
@@ -2003,25 +2003,25 @@ networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit
// OMASA 2TC 4ISM at 256 kbps, 48kHz in, 48kHz out, BINAURAL out, object editing, JBM Prof 5, DISC
../IVAS_cod -ism_masa 4 2 testv/ltv48_OMASA_4ISM_2TC_ISM1.csv testv/ltv48_OMASA_4ISM_2TC_ISM2.csv testv/ltv48_OMASA_4ISM_2TC_ISM3.csv testv/ltv48_OMASA_4ISM_2TC_ISM4.csv testv/ltv48_OMASA_4ISM_2TC.met 256000 48 testv/ltv48_OMASA_4ISM_2TC.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/ltv48_OMASA_4ISM_2TC.wav_BINAURAL_256000_48-48_OE_JBM5.tst
+../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/ltv48_OMASA_4ISM_2TC.wav_BINAURAL_256000_48-48_OE_JBM5.tst
// OMASA 2TC 2ISM at 96 kbps, 48kHz in, 48kHz out, FOA out, object editing, JBM Prof 5, DISC
../IVAS_cod -ism_masa 2 2 testv/ltv48_OMASA_2ISM_2TC_ISM1.csv testv/ltv48_OMASA_2ISM_2TC_ISM2.csv testv/ltv48_OMASA_2ISM_2TC.met 96000 48 testv/ltv48_OMASA_2ISM_2TC.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/ltv48_OMASA_2ISM_2TC.wav_FOA_96000_48-48_OE_JBM5.tst
+../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -no_delay_cmp -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/ltv48_OMASA_2ISM_2TC.wav_FOA_96000_48-48_OE_JBM5.tst
// OMASA 2TC 2ISM br sw techs 13.2 to 512 kbps start 48 kbps, 48kHz in, 48kHz out, BINAURAL out, object editing
../IVAS_cod -ism_masa 2 2 testv/ltv48_OMASA_2ISM_2TC_ISM1.csv testv/ltv48_OMASA_2ISM_2TC_ISM2.csv testv/ltv48_OMASA_2ISM_2TC.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_48k_omasatechs_2ism.bin 48 testv/ltv48_OMASA_2ISM_2TC.wav bit
../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt BINAURAL 48 bit testv/ltv48_OMASA_2ISM_2TC.wav_BINAURAL_sw_48-48_OE.tst
-// OSBA 3OA 4ISM at 256 kbps, 48kHz in, 48kHz out, BINAURAL out, object editing, DISC
+// OSBA 3OA 4ISM at 256 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_IR out, object editing, DISC
../IVAS_cod -ism_sba 4 3 testv/ltv48_OSBA_4ISM_HOA3_ISM1.csv testv/ltv48_OSBA_4ISM_HOA3_ISM2.csv testv/ltv48_OSBA_4ISM_HOA3_ISM3.csv testv/ltv48_OSBA_4ISM_HOA3_ISM4.csv 256000 48 testv/ltv48_OSBA_4ISM_HOA3.wav bit
-../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt BINAURAL 48 bit testv/ltv48_OSBA_4ISM_HOA3.wav_BINAURAL_256000_48-48_OE.tst
+../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt BINAURAL_ROOM_IR 48 bit testv/ltv48_OSBA_4ISM_HOA3.wav_BINAURAL_ROOM_IR_256000_48-48_OE.tst
// OSBA 2OA 3ISM at 128 kbps, 48kHz in, 48kHz out, FOA out, object editing, JBM Prof 5, DISC
../IVAS_cod -ism_sba 3 2 testv/ltv48_OSBA_3ISM_HOA2_ISM1.csv testv/ltv48_OSBA_3ISM_HOA2_ISM2.csv testv/ltv48_OSBA_3ISM_HOA2_ISM3.csv 128000 48 testv/ltv48_OSBA_3ISM_HOA2.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/ltv48_OSBA_3ISM_HOA2.wav_FOA_128000_48-48_OE_JBM5.tst
+../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -no_delay_cmp -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/ltv48_OSBA_3ISM_HOA2.wav_FOA_128000_48-48_OE_JBM5.tst
// OSBA 2OA 3ISM at bitrate switching 13.2 to 512 kbps, 48kHz in, 48kHz out, BINAURAL out, object editing
../IVAS_cod -ism_sba 3 2 testv/ltv48_OSBA_3ISM_HOA2_ISM1.csv testv/ltv48_OSBA_3ISM_HOA2_ISM2.csv testv/ltv48_OSBA_3ISM_HOA2_ISM3.csv ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_OSBA_3ISM_HOA2.wav bit
@@ -2039,12 +2039,12 @@ eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g1
// 3 ISM with metadata at 24.4 kbps, 48 kHz in, 48 kHz out, FOA out, object editing, JBM Prof 5, PARAM_ISM
../IVAS_cod -ism 3 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv 24400 48 testv/ltv48_3ISM.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/ltv48_3ISM.wav_24400_48-48_FOA_OE_JBM5.tst
+../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -no_delay_cmp -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/ltv48_3ISM.wav_24400_48-48_FOA_OE_JBM5.tst
// 3 ISM with metadata at 384 kbps, 48 kHz in, 48 kHz out, FOA out, object editing, JBM Prof 5, DISC
../IVAS_cod -ism 3 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv 384000 48 testv/ltv48_3ISM.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -obj_edit NULL -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/ltv48_3ISM.wav_384000_48-48_FOA_OE_JBM5.tst
+../IVAS_dec -obj_edit NULL -no_delay_cmp -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/ltv48_3ISM.wav_384000_48-48_FOA_OE_JBM5.tst
// 4 ISM with metadata bitrate switching from 32 kbps to 48 kbps, 48 kHz in, 48 kHz out, BINAURAL_ROOM_IR out, object editing
../IVAS_cod -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv ../scripts/switchPaths/sw_32-48k_10fr.bin 48 testv/ltv48_4ISM.wav bit
@@ -2053,4 +2053,4 @@ networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit
// 4 ISM with metadata bitrate switching from 48 kbps to 32 kbps, 48 kHz in, 48 kHz out, BINAURAL out, object editing, JBM Prof 5
../IVAS_cod -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv ../scripts/switchPaths/sw_48-32k_10fr.bin 48 testv/ltv48_4ISM.wav bit
networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0
-../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/ltv48_4ISM.wav_sw_48-48_BINAURAL_OE_JBM5.tst
+../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/ltv48_4ISM.wav_sw_48-48_BINAURAL_OE_JBM5.tst
diff --git a/scripts/dly_error_profiles/dly_error_profile_I1.dat b/scripts/dly_error_profiles/dly_error_profile_I1.dat
new file mode 100644
index 0000000000000000000000000000000000000000..ecf898b34b2f9bbd04195bc7b0d4b9891b3765f9
--- /dev/null
+++ b/scripts/dly_error_profiles/dly_error_profile_I1.dat
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:854e83b31b5aa6f120e793336e8732281681fc242c86819496901a8c2a65558f
+size 25512
diff --git a/scripts/find_regressions_from_logs.py b/scripts/find_regressions_from_logs.py
new file mode 100644
index 0000000000000000000000000000000000000000..67a7447ddfd1c4d3cf0257fe587892e5b7b086c7
--- /dev/null
+++ b/scripts/find_regressions_from_logs.py
@@ -0,0 +1,139 @@
+#!/usr/bin/env python3
+
+import argparse
+from pathlib import Path
+import pandas as pd
+
+def main(logs_dir, output_filename, measure, days, all_results, diff_thr, ratio_thr, curr_value_thr):
+
+ input_path = Path(logs_dir)
+ logs = [f for f in input_path.iterdir() if f.is_dir()]
+
+ # Build dict of scores
+ formatdict = {}
+ sha = {}
+ logdict = {}
+ for log in logs:
+ date = log.name
+ logdict[date] = {}
+ formatdict[date] = {}
+ for logfile in log.glob("*.csv"):
+ tmp = logfile.name.split("-")
+ job = "-".join(tmp[3:-4])
+ sha[date] = tmp[-1].split(".")[0]
+ data = pd.read_csv(logfile, usecols=["testcase", measure, "format"])
+ logdict[date][job] = {}
+ formatdict[date][job] = {}
+
+ for testcase, value, format in zip(
+ data["testcase"], data[measure], data["format"]
+ ):
+ formatdict[date][job][testcase] = format
+ logdict[date][job][testcase] = value
+
+ # Restructure dict
+ csv_rows = []
+ formats = []
+ for date, jobs in logdict.items():
+ for job, testcases in jobs.items():
+ for testcase, value in testcases.items():
+ csv_rows.append((job, testcase, date, value))
+ formats.append((job, testcase, date, formatdict[date][job][testcase]))
+
+ result = pd.DataFrame(csv_rows, columns=["job", "testcase", "date", "value"])
+ result = result.pivot(
+ index=["job", "testcase"], columns="date", values="value"
+ ).reset_index()
+
+ f = pd.DataFrame(formats, columns=["job", "testcase", "date", "format"])
+ f = f.pivot(
+ index=["job", "testcase"], columns="date", values="format"
+ ).reset_index()
+
+ if days != -1:
+ len_history = len(result.columns) - 2
+ if len_history < days:
+ print(f"*** Warning: Requested number of days exceeds the number of days in the logs. Will use all {len_history} available days.")
+ if len_history > days:
+ remove_days = len_history - days
+ result = result.drop(result.columns[2:2+remove_days], axis=1)
+
+ values = result.iloc[:, 2:]
+ last_date = values.columns[-1]
+
+ result.insert(2, "format", f[last_date])
+ result.insert(3, "min_date", values.idxmin(axis=1))
+ result.insert(4, "min_sha", result["min_date"].map(sha))
+ result.insert(5, "curr_value", values[last_date])
+ result.insert(6, "min_value", values.min(axis=1))
+ result.insert(7, "diff", result["curr_value"] - result["min_value"])
+ result.insert(8, "ratio", result["curr_value"] / result["min_value"])
+ result.loc[result["min_value"] == 0, "ratio"] = (
+ 1 # Set ratio to 1 for denominator 0
+ )
+
+ if not all_results:
+ # Filter out test cases above thresholds
+ result = result[result["diff"] > diff_thr]
+ result = result[result["ratio"] > ratio_thr]
+ result = result[result["curr_value"] > curr_value_thr]
+
+ result["min_sha"] = "'" + result["min_sha"] # Add apostrophy to prevent Excel reading this as a number
+
+ result.to_csv(output_filename, sep=";", index=False)
+
+
+
+if __name__ == "__main__":
+ parser = argparse.ArgumentParser(description="logs dir")
+ parser.add_argument(
+ "logs_dir",
+ type=str,
+ help="Logs dir, e.g. logs",
+ )
+ parser.add_argument(
+ "output_filename",
+ type=str,
+ help="Filename of the combined csv file. e.g mld.csv",
+ )
+ parser.add_argument(
+ "--measure",
+ type=str,
+ help="Measure for summary, one of MLD MIN_SSNR MAX_ABS_DIFF MIN_ODG, (default: MLD)",
+ default="MLD",
+ )
+ parser.add_argument(
+ "--days",
+ type=int,
+ help="Number of days in history, (default: whole history)",
+ default=-1,
+ )
+ parser.add_argument(
+ "--all_results",
+ action="store_true",
+ help="Output all results, including cases without regression (default: off)",
+ default=False,
+ )
+ parser.add_argument(
+ "--diff_thr",
+ type=float,
+ help="Include test cases with diff above diff_thr, (default: 0.0)",
+ default=0.0,
+ )
+ parser.add_argument(
+ "--ratio_thr",
+ type=float,
+ help="Include test cases with ratio above ratio_thr, (default: 1.0)",
+ default=1.0,
+ )
+ parser.add_argument(
+ "--curr_value_thr",
+ type=float,
+ help="Include test cases with curr_value above curr_value_thr, (default: 0.0)",
+ default=0.0,
+ )
+
+ args = parser.parse_args()
+
+ main(args.logs_dir, args.output_filename, args.measure, args.days, args.all_results, args.diff_thr, args.ratio_thr, args.curr_value_thr)
+
diff --git a/scripts/generate_scripts_from_regressions.py b/scripts/generate_scripts_from_regressions.py
new file mode 100644
index 0000000000000000000000000000000000000000..4487f844804902bf53727ed2ec20f178c5988416
--- /dev/null
+++ b/scripts/generate_scripts_from_regressions.py
@@ -0,0 +1,155 @@
+#!/usr/bin/env python3
+
+import argparse
+import pandas as pd
+
+REPRODUCE_REGRESSION_SCRIPT_TMPL = """
+#!/bin/bash -x
+
+SCRIPTS_DIR=/usr/local/scripts
+LTV_DIR=/usr/local/ltv
+
+MIN_DATE={min_date}
+MIN_SHA={min_sha}
+LEVEL_SCALING={level_scaling}
+TESTCASE="{testcase}"
+
+REF_ENC1={REF_ENC1}
+REF_DEC1={REF_DEC1}
+DUT_ENC1={DUT_ENC1}
+DUT_DEC1={DUT_DEC1}
+
+REF_ENC2={REF_ENC2}
+REF_DEC2={REF_DEC2}
+DUT_ENC2={DUT_ENC2}
+DUT_DEC2={DUT_DEC2}
+
+INV_LEVEL_SCALING=$(awk "BEGIN {{print 1.0 / $LEVEL_SCALING}}")
+
+# Obtain executables from past reference
+git checkout `git rev-list -1 --before="$MIN_DATE 22:00:00" ivas-float-update`
+echo "ivas_float_update, min version: `git rev-parse HEAD`" > versions.txt
+make clean
+make -j
+mv IVAS_cod IVAS_cod_ref_1
+mv IVAS_dec IVAS_dec_ref_1
+mv IVAS_rend IVAS_rend_ref_1
+
+git checkout $MIN_SHA
+echo "main, min version: `git rev-parse HEAD`" >> versions.txt
+make clean
+make -j
+mv IVAS_cod IVAS_cod_1
+mv IVAS_dec IVAS_dec_1
+mv IVAS_rend IVAS_rend_1
+
+# Obtain latest executables
+git checkout ivas-float-update
+git pull
+echo "ivas-float-update, current version: `git rev-parse HEAD`" >> versions.txt
+make clean
+make -j
+mv IVAS_cod IVAS_cod_ref_2
+mv IVAS_dec IVAS_dec_ref_2
+mv IVAS_rend IVAS_rend_ref_2
+
+git checkout main
+git pull
+echo "main, current version: `git rev-parse HEAD`" >> versions.txt
+make clean
+make -j
+mv IVAS_cod IVAS_cod_2
+mv IVAS_dec IVAS_dec_2
+mv IVAS_rend IVAS_rend_2
+
+# Get fresh copy of scripts, tests and ci
+cp -r $SCRIPTS_DIR/{{scripts,tests,ci,pytest.ini}} .
+rm -rf tests/ref tests/dut tests/renderer/ref tests/renderer/cut
+python3 ci/remove_unsupported_testcases.py scripts/config/self_test.prm scripts/config/self_test_ltv.prm
+
+# Get LTVs
+cp $LTV_DIR/* scripts/testv
+
+# Apply level scaling
+tests/scale_pcm.py ./scripts/testv/ "$LEVEL_SCALING"
+
+# Run tests
+cp IVAS_rend_ref_1 IVAS_rend_ref
+cp IVAS_rend_1 IVAS_rend
+python3 -m pytest "$TESTCASE" -n 1 --update_ref 1 --create_ref --param_file scripts/config/self_test_ltv.prm --use_ltv --ref_encoder_path $REF_ENC1 --ref_decoder_path $REF_DEC1
+python3 -m pytest "$TESTCASE" -n 1 --create_cut --param_file scripts/config/self_test_ltv.prm --use_ltv --dut_encoder_path $DUT_ENC1 --dut_decoder_path $DUT_DEC1 --mld --ssnr --odg --scalefac $INV_LEVEL_SCALING --junit-xml=report1.xml --html=report1.html --self-contained-html
+python3 scripts/parse_xml_report.py report1.xml report1.csv
+
+# Store results from first run
+mkdir -p tests1/renderer
+cp -r tests/ref tests/dut tests1
+cp -r tests/renderer/ref tests1/renderer
+cp -r tests/renderer/cut tests1/renderer
+
+cp IVAS_rend_ref_2 IVAS_rend_ref
+cp IVAS_rend_2 IVAS_rend
+python3 -m pytest "$TESTCASE" -n 1 --update_ref 1 --create_ref --param_file scripts/config/self_test_ltv.prm --use_ltv --ref_encoder_path $REF_ENC2 --ref_decoder_path $REF_DEC2
+python3 -m pytest "$TESTCASE" -n 1 --create_cut --param_file scripts/config/self_test_ltv.prm --use_ltv --dut_encoder_path $DUT_ENC2 --dut_decoder_path $DUT_DEC2 --mld --ssnr --odg --scalefac $INV_LEVEL_SCALING --junit-xml=report2.xml --html=report2.html --self-contained-html
+python3 scripts/parse_xml_report.py report2.xml report2.csv
+
+"""
+
+
+def main(critical_list):
+
+ critical = pd.read_csv(critical_list, sep=";")
+
+ for row_counter, row in critical.iterrows():
+
+ # Find level
+ level_scaling = 1.0
+ if "lev+10" in row["job"]:
+ level_scaling = 3.162
+ if "lev-10" in row["job"]:
+ level_scaling = 0.3162
+
+ # Find executables setup
+ REF_ENC1 = "IVAS_cod_ref_1"
+ REF_DEC1 = "IVAS_dec_ref_1"
+ DUT_ENC1 = "IVAS_cod_1"
+ DUT_DEC1 = "IVAS_dec_1"
+ REF_ENC2 = "IVAS_cod_ref_2"
+ REF_DEC2 = "IVAS_dec_ref_2"
+ DUT_ENC2 = "IVAS_cod_2"
+ DUT_DEC2 = "IVAS_dec_2"
+
+ if "dec" in row["job"]:
+ DUT_ENC1 = "IVAS_cod_ref_1"
+ DUT_ENC2 = "IVAS_cod_ref_2"
+ if "enc" in row["job"]:
+ DUT_DEC1 = "IVAS_dec_ref_1"
+ DUT_DEC2 = "IVAS_dec_ref_2"
+
+ script_content = REPRODUCE_REGRESSION_SCRIPT_TMPL.format(
+ min_date=row["min_date"],
+ min_sha=row["min_sha"][1:],
+ level_scaling=level_scaling,
+ testcase=row["testcase"],
+ REF_ENC1=REF_ENC1,
+ REF_DEC1=REF_DEC1,
+ DUT_ENC1=DUT_ENC1,
+ DUT_DEC1=DUT_DEC1,
+ REF_ENC2=REF_ENC2,
+ REF_DEC2=REF_DEC2,
+ DUT_ENC2=DUT_ENC2,
+ DUT_DEC2=DUT_DEC2,
+ )
+
+ script_filename = f"regression_{row_counter+2:03d}.bash"
+ with open(script_filename, "w") as f:
+ f.write(script_content)
+
+if __name__ == "__main__":
+ parser = argparse.ArgumentParser(description="Generate bash scripts to reproduce test cases from critical testcase csv list")
+ parser.add_argument(
+ "critical_list",
+ type=str,
+ help="critical file list, e.g. critical.csv",
+ )
+ args = parser.parse_args()
+ main(args.critical_list)
diff --git a/scripts/generate_spectral_testv.py b/scripts/generate_spectral_testv.py
new file mode 100644
index 0000000000000000000000000000000000000000..7ff40adda2bb091421f1fc11ac394c6e4a7ad611
--- /dev/null
+++ b/scripts/generate_spectral_testv.py
@@ -0,0 +1,49 @@
+#!/usr/bin/env python3
+from pathlib import Path
+from scipy.io.wavfile import read, write
+import numpy as np
+
+MAX_NUM_CH = 20 # number of channel indices in file
+MIN_DURATION_MS = 1200 # minimum duration needed for all indices at 16kHz
+TESTV_DIR = Path(__file__).parent.joinpath("testv")
+
+
+def create_vector(fs: int, num_ch: int):
+ in_file = TESTV_DIR / f"spectral_{fs}.wav"
+
+ # requires spectral_{16,32,48}.wav
+ if not in_file.exists():
+ raise FileNotFoundError(f"Source file {in_file} not found!")
+ # validate num_ch
+ if num_ch > MAX_NUM_CH or num_ch < 1:
+ raise ValueError(
+ f"Requested channel count of {num_ch} channels is invalid. Must be between 1 and {MAX_NUM_CH}!"
+ )
+
+ _, data = read(in_file)
+
+ # split source file into parts
+ part_len = data.shape[0] // MAX_NUM_CH
+ parts = data.reshape(MAX_NUM_CH, part_len).T
+
+ duration = fs * MIN_DURATION_MS
+ out = np.zeros([duration, num_ch], dtype=np.int16)
+
+ # populate output vector, loop over the channel indices
+ # until the duration is reached
+ for i in range(duration // part_len):
+ for ch in range(num_ch):
+ if i % num_ch == ch:
+ out[i * part_len : (i + 1) * part_len, ch] = parts[:, ch]
+
+ write(TESTV_DIR / f"spectral_test_{num_ch}ch_{fs}kHz.wav", fs * 1000, out)
+
+
+def main():
+ for fs in [16, 32, 48]:
+ for ch in range(1, 21):
+ create_vector(fs, ch)
+
+
+if __name__ == "__main__":
+ main()
diff --git a/scripts/lc3plus_lib_setup/get_lc3plus.sh b/scripts/lc3plus_lib_setup/get_lc3plus.sh
index ea2a893d1993fc2750a128ffdeb7b71f21033244..f654768707921d45b2f6cbfbe90881cc6a528649 100755
--- a/scripts/lc3plus_lib_setup/get_lc3plus.sh
+++ b/scripts/lc3plus_lib_setup/get_lc3plus.sh
@@ -6,13 +6,13 @@ printf "Cleaning old version of LC3plus\n"
rm -rf lib_lc3plus
printf "Downloading LC3plus code\n"
-if false; then
+if true; then
# Waiting for official ETSI release.
# TODO: add new URL, remove `if false` when package goes public
- curl -o ./lc3plus_sources.zip NEW_URL_HERE
+ curl -o ./lc3plus_sources.zip https://www.etsi.org/deliver/etsi_ts/103600_103699/103634/01.05.01_60/ts_103634v010501p0.zip
unzip lc3plus_sources.zip -d .
rm lc3plus_sources.zip
- cp -r "ETSI_Release//src/floating_point" lib_lc3plus
+ cp -r "ETSI_Release/LC3plus_ETSI_src_v5f640bd48cc_20240516/src/floating_point" lib_lc3plus
rm -r ETSI_Release
else
# Temp solution for downloading WIP ETSI package
@@ -57,6 +57,10 @@ find lib_lc3plus -name '*.[ch]' -type f -print0 | \
xargs -0 -I {} \
sed -i 's/^#[[:space:]]\+/#/' {}
+# fix for sanitizer issues
+sed -i 's/st->low << 8/(LC3_INT)((LC3_UINT32)st->low << 8)/' lib_lc3plus/ari_codec.c
+sed -i 's/~3/(uintptr_t)(~3)/' lib_lc3plus/lc3plus.c
+
# Add .clang-format file to lib_lc3plus to disable formatting there
printf "Disabling clang-format in lib_lc3plus directory\n"
printf '
diff --git a/scripts/pyivastest/IvasScriptsCommon.py b/scripts/pyivastest/IvasScriptsCommon.py
index dd88681f94a041fe8128f05d2cb5c5062c8bbbab..0878fb04371d274d8acedb725697296e8c503d24 100644
--- a/scripts/pyivastest/IvasScriptsCommon.py
+++ b/scripts/pyivastest/IvasScriptsCommon.py
@@ -647,7 +647,7 @@ def runner_setup(runner, args):
"0",
jbm_suffix,
]
- dec_options = ["-Tracefile", "{dec_file_name}.tracefile_dec", "-VOIP"]
+ dec_options = ["-Tracefile", "{dec_file_name}.tracefile_dec", "-no_delay_cmp", "-VOIP"]
add_to_proc_chain(bs_proc_chain, jbm_cmd, dec_options)
if args["sidstart"]:
@@ -771,7 +771,7 @@ def analyzer_setup(analyzer, args):
"0",
jbm_suffix,
]
- dec_options = ["-Tracefile", "{dec_file_name}.tracefile_dec", "-VOIP"]
+ dec_options = ["-Tracefile", "{dec_file_name}.tracefile_dec", "-no_delay_cmp", "-VOIP"]
add_to_proc_chain(bs_proc_chain, jbm_cmd, dec_options)
if args["sidstart"]:
diff --git a/scripts/self_test.py b/scripts/self_test.py
index af86ea7c9d83ce32678ca9b5ed43be55a41b6663..1fca1825b2980ab4caba7f6c2639f7a2f3d05748 100755
--- a/scripts/self_test.py
+++ b/scripts/self_test.py
@@ -1,36 +1,35 @@
#!/usr/bin/env python3
"""
- (C) 2022-2025 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB,
- Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD.,
- Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange,
- Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other
- contributors to this repository. All Rights Reserved.
-
- This software is protected by copyright law and by international treaties.
- The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB,
- Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD.,
- Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange,
- Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other
- contributors to this repository retain full ownership rights in their respective contributions in
- the software. This notice grants no license of any kind, including but not limited to patent
- license, nor is any license granted by implication, estoppel or otherwise.
-
- Contributors are required to enter into the IVAS codec Public Collaboration agreement before making
- contributions.
-
- This software is provided "AS IS", without any express or implied warranties. The software is in the
- development stage. It is intended exclusively for experts who have experience with such software and
- solely for the purpose of inspection. All implied warranties of non-infringement, merchantability
- and fitness for a particular purpose are hereby disclaimed and excluded.
-
- Any dispute, controversy or claim arising under or in relation to providing this software shall be
- submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in
- accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and
- the United Nations Convention on Contracts on the International Sales of Goods.
+(C) 2022-2025 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB,
+Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD.,
+Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange,
+Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other
+contributors to this repository. All Rights Reserved.
+
+This software is protected by copyright law and by international treaties.
+The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB,
+Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD.,
+Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange,
+Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other
+contributors to this repository retain full ownership rights in their respective contributions in
+the software. This notice grants no license of any kind, including but not limited to patent
+license, nor is any license granted by implication, estoppel or otherwise.
+
+Contributors are required to enter into the IVAS codec Public Collaboration agreement before making
+contributions.
+
+This software is provided "AS IS", without any express or implied warranties. The software is in the
+development stage. It is intended exclusively for experts who have experience with such software and
+solely for the purpose of inspection. All implied warranties of non-infringement, merchantability
+and fitness for a particular purpose are hereby disclaimed and excluded.
+
+Any dispute, controversy or claim arising under or in relation to providing this software shall be
+submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in
+accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and
+the United Nations Convention on Contracts on the International Sales of Goods.
"""
-
import errno
import os
import platform
@@ -42,7 +41,6 @@ import urllib
import urllib.parse
import numpy
-import prepare_combined_format_inputs
import pyaudio3dtools
import pyivastest.constants as constants
import pyivastest.ivas_svn as svn
@@ -63,7 +61,16 @@ MODES = {
"5_1_4": "5_1_4",
"7_1_4": "7_1_4",
},
- "-ISM": {"1": "ISM1", "2": "ISM2", "3": "ISM3", "4": "ISM4", "+1": "ISM+1", "+2": "ISM+2", "+3": "ISM+3", "+4": "ISM+4"},
+ "-ISM": {
+ "1": "ISM1",
+ "2": "ISM2",
+ "3": "ISM3",
+ "4": "ISM4",
+ "+1": "ISM+1",
+ "+2": "ISM+2",
+ "+3": "ISM+3",
+ "+4": "ISM+4",
+ },
"-SBA": {
"-3": "HOA3",
"3": "HOA3",
@@ -198,7 +205,7 @@ class SelfTest(IvasScriptsCommon.IvasScript):
help="Run the decoder under test with specified render framn size",
default=20,
choices=[5, 10, 20],
- type=int
+ type=int,
)
if shutil.which("valgrind"):
self.valgrind = [
@@ -522,7 +529,6 @@ class SelfTest(IvasScriptsCommon.IvasScript):
# PESQ
if self.run_pesq:
-
pesq_success = True
pesq_fs = min([16000, mode_dict["in_fs"], mode_dict["out_fs"]])
in_nchans = constants.OC_TO_NCHANNELS[
@@ -564,11 +570,9 @@ class SelfTest(IvasScriptsCommon.IvasScript):
and not ref_condition_corrupt
and not ref_condition_run_error
):
-
fd_ref, decoded_item_ref_mono = tempfile.mkstemp(".pcm")
os.close(fd_ref)
if mode_dict["out_fs"] > pesq_fs or n_channels > 1:
-
pyaudio3dtools.audiofile.mono(
decoded_item_ref,
decoded_item_ref_mono,
@@ -629,7 +633,6 @@ class SelfTest(IvasScriptsCommon.IvasScript):
and not test_condition_corrupt
and not test_condition_run_error
):
-
fd_test, decoded_item_test_mono = tempfile.mkstemp((".pcm"))
os.close(fd_test)
if mode_dict["out_fs"] > pesq_fs or n_channels > 1:
@@ -1004,19 +1007,8 @@ class SelfTest(IvasScriptsCommon.IvasScript):
# check if we need to produce missing combined formats
if not os.path.exists(in_file):
- if is_osba_or_omasa:
- self.logger.info("Creating missing combined formats test vectors...")
- prepare_combined_format_inputs.main()
- if not os.path.exists(in_file):
- self.logger.error(f"Test vector {in_file} does not exist!")
- raise FileNotFoundError(
- errno.ENOENT, os.strerror(errno.ENOENT), in_file
- )
- else:
- self.logger.error(f"Test vector {in_file} does not exist!")
- raise FileNotFoundError(
- errno.ENOENT, os.strerror(errno.ENOENT), in_file
- )
+ self.logger.error(f"Test vector {in_file} does not exist!")
+ raise FileNotFoundError(errno.ENOENT, os.strerror(errno.ENOENT), in_file)
# handle intermediate processing steps, e.g. networksimulator, eid-xor, ...
in_file = bs_enc_file
@@ -1174,7 +1166,6 @@ class SelfTest(IvasScriptsCommon.IvasScript):
return mode_dict
def run(self):
-
self.parse_args()
if self.args["list_conditions"] is True:
@@ -1276,27 +1267,27 @@ class SelfTest(IvasScriptsCommon.IvasScript):
self.logger.console(
"Create mode: ignoring all other optional commandline arguments regarding reference and test conditions"
)
-
+
if self.args["encref"] is None:
if self.args["enctest"] is not None:
# use Test encoder binary for reference generation
self.args["encref"] = os.path.realpath(self.args["enctest"])
else:
self.args["encref"] = default_enc_test
-
+
if self.args["decref"] is None:
if self.args["dectest"] is not None:
# use Test decoder binary for reference generation
self.args["decref"] = os.path.realpath(self.args["dectest"])
else:
self.args["decref"] = default_dec_test
-
+
if self.args["srcdirref"] is None:
self.args["srcdirref"] = constants.WC_BASE_DIR
-
+
if self.valgrind is not None and self.args["valgrind"] is True:
valgrind_ref = self.valgrind
-
+
create_mode = True
run_ref = True
else:
@@ -1542,7 +1533,9 @@ class SelfTest(IvasScriptsCommon.IvasScript):
logger_name="{}.testrunner".format(self.logger.name),
)
- test_runner.decoder_cmdline_options.extend(["-fr", f"{self.args['dut_fr']}"])
+ test_runner.decoder_cmdline_options.extend(
+ ["-fr", f"{self.args['dut_fr']}"]
+ )
test_runner.set_flat_mode_list(run_dict)
test_runner.run()
self.logger.console(" ")
diff --git a/scripts/smoke_test_complexity_basop.sh b/scripts/smoke_test_complexity_basop.sh
index 73948aac431890b6dab073058dea4b168a6765a3..b5ecc6d7e4fb8b363dcb7b3bcc76b06418736cbd 100755
--- a/scripts/smoke_test_complexity_basop.sh
+++ b/scripts/smoke_test_complexity_basop.sh
@@ -29,51 +29,53 @@
# the United Nations Convention on Contracts on the International Sales of Goods.
function usage {
- echo
- echo "Usage:"
- echo " smoke_test_complexity_basop.sh [--max_cores nMaxCores -e encPath -d decPath]"
- echo
- echo " nMaxCores - the number of CPUs to use (default 42)"
- echo " encPath - path to IVAS_cod"
- echo " decPath - path to IVAS_dec"
- exit
+ echo
+ echo "Usage:"
+ echo " smoke_test_complexity_basop.sh [--max_cores nMaxCores -e encPath -d decPath]"
+ echo
+ echo " nMaxCores - the number of CPUs to use (default 42)"
+ echo " encPath - path to IVAS_cod"
+ echo " decPath - path to IVAS_dec"
+ exit
}
if [ ! -d "lib_com" ]; then
- echo "not in root directory! - please run in IVAS root"
- exit 1
+ echo "not in root directory! - please run in IVAS root"
+ exit 1
fi
MAX_CORES="42"
ENC_PATH=""
DEC_PATH=""
while getopts ":-:e:d:" OPTIONS; do
- case ${OPTIONS} in
- -)
- case "${OPTARG}" in
- max_cores)
- MAX_CORES="${!OPTIND}"; OPTIND=$(( $OPTIND + 1 ))
- ;;
- esac;;
- e)
- ENC_PATH=${OPTARG}
- ;;
- d)
- DEC_PATH=${OPTARG}
- ;;
- h | *)
- usage
- ;;
+ case ${OPTIONS} in
+ -)
+ case "${OPTARG}" in
+ max_cores)
+ MAX_CORES="${!OPTIND}"
+ OPTIND=$(($OPTIND + 1))
+ ;;
esac
+ ;;
+ e)
+ ENC_PATH=${OPTARG}
+ ;;
+ d)
+ DEC_PATH=${OPTARG}
+ ;;
+ h | *)
+ usage
+ ;;
+ esac
done
enc_cmd=""
dec_cmd=""
if [ "$ENC_PATH" != "" ]; then
- enc_cmd="-e $ENC_PATH"
+ enc_cmd="-e $ENC_PATH"
fi
if [ "$DEC_PATH" != "" ]; then
- dec_cmd="-d $DEC_PATH"
+ dec_cmd="-d $DEC_PATH"
fi
cfg=./scripts/config/ci_linux_ltv.json
@@ -82,27 +84,23 @@ duration_arg=""
complexity_cmd="--checks COMPLEXITY --wmc_tool_mem_only --basop --create_complexity_tables"
max_num_workers="--max_workers $MAX_CORES"
-# prepare combined format test signals
-echo "\n======================= 0. preparing combined format test inputs =======================\n\n"
-./scripts/prepare_combined_format_inputs.py
-
# Modes
-mono_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^mono)
-FOA_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^FOA)
-HOA2_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^HOA2)
-HOA3_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^HOA3)
-PlanarFOA_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^PlanarFOA)
-PlanarHOA2_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^PlanarHOA2)
-PlanarHOA3_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^PlanarHOA3)
-MASA_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^MASA)
-MC_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^MC)
-stereo_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^stereo)
-stereoDmx_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^StereoDmx)
-OMASA_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^OMASA)
-OSBA_ISM1_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^OSBA_ISM1)
-OSBA_ISM2_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^OSBA_ISM2)
-OSBA_ISM3_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^OSBA_ISM3)
-OSBA_ISM4_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^OSBA_ISM4)
+mono_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^mono)
+FOA_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^FOA)
+HOA2_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^HOA2)
+HOA3_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^HOA3)
+PlanarFOA_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^PlanarFOA)
+PlanarHOA2_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^PlanarHOA2)
+PlanarHOA3_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^PlanarHOA3)
+MASA_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^MASA)
+MC_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^MC)
+stereo_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^stereo)
+stereoDmx_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^StereoDmx)
+OMASA_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^OMASA)
+OSBA_ISM1_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^OSBA_ISM1)
+OSBA_ISM2_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^OSBA_ISM2)
+OSBA_ISM3_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^OSBA_ISM3)
+OSBA_ISM4_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^OSBA_ISM4)
ISM1_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^ISM1)
ISM2_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^ISM2)
ISM3_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^ISM3)
@@ -112,7 +110,6 @@ ISM_plus2_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^ISM+2)
ISM_plus3_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^ISM+3)
ISM_plus4_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^ISM+4)
-
echo "\n======================= 1. Mono =======================\n\n"
./scripts/IvasBuildAndRunChecks.py $enc_cmd $dec_cmd $complexity_cmd ltv_complexity_mono_no_fec -m $mono_modes -p $cfg $duration_arg $max_num_workers | tee smoke_test_output_mono.txt
rm -r ./COMPLEXITY/dec/
diff --git a/scripts/split_rendering/lc3plus_basop/ivas_lc3plus_unit_test.c b/scripts/split_rendering/lc3plus_basop/ivas_lc3plus_unit_test.c
index 1bba6af9d451b4f61798e085c08a0c5848be034d..7cdda5634263cb52e123897c0bf9c0215507757d 100644
--- a/scripts/split_rendering/lc3plus_basop/ivas_lc3plus_unit_test.c
+++ b/scripts/split_rendering/lc3plus_basop/ivas_lc3plus_unit_test.c
@@ -38,16 +38,9 @@ the United Nations Convention on Contracts on the International Sales of Goods.
#include "isar_lc3plus_common.h"
#include "isar_lc3plus_dec.h"
#include "ivas_error_utils.h"
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
-#include "lc3.h"
-#endif
+#include "lc3plus.h"
-#ifdef SPLIT_REND_WITH_HEAD_ROT
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
#define MAX_SAMPLES_PER_CHANNEL 960 / 4
-#else
-#define MAX_SAMPLES_PER_CHANNEL 960
-#endif
#define DEFAULT_BPS 256000
#ifndef PCM_SAMPLE_TYPEDEF_DEFINED
@@ -100,7 +93,6 @@ static int encodeAndDecodeOneStereoFrame( LC3PLUS_CONFIG config, uint32_t bps )
uint8_t *bitstream_out = malloc( bitstreamSizePerIvasFrame );
memset( bitstream_out, 0, bitstreamSizePerIvasFrame );
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
int perChannelBitrate = lc3plus_enc_get_real_bitrate(encHandle->handles[0]);
int perLc3plusFrameDataBlockOctets = encHandle->num_ftds * perChannelBitrate / 8 / (1000*1000/config.lc3plus_frame_duration_us);
int targetOctets = bps / 8 / (1000*1000/config.isar_frame_duration_us);
@@ -118,9 +110,6 @@ static int encodeAndDecodeOneStereoFrame( LC3PLUS_CONFIG config, uint32_t bps )
Word16 Q_in[16];
memset(Q_in, 0, sizeof(Q_in) );
err = ISAR_LC3PLUS_ENC_Encode( encHandle, pcm_in, bitstream_out, bitstreamSizePerIvasFrame, Q_in );
-#else
- err = ISAR_LC3PLUS_ENC_Encode( encHandle, pcm_in, bitstream_out );
-#endif
if ( IVAS_ERR_OK != err )
{
ISAR_LC3PLUS_ENC_Close( &encHandle );
@@ -200,11 +189,7 @@ static int encodeAndDecodeOneStereoFrame( LC3PLUS_CONFIG config, uint32_t bps )
static int openCloseEncoder( void )
{
ivas_error err;
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 5 * 1000, .isar_frame_duration_us = 5000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 };
-#else
- LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 20000, .channels = 1, .samplerate = 48000 };
-#endif
uint32_t bps = 128000;
ISAR_LC3PLUS_ENC_HANDLE encHandle;
@@ -221,36 +206,23 @@ static int openCloseEncoder( void )
static int tryOpenEncoderWithInvalidBitrate( void )
{
ivas_error err;
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 5 * 1000, .isar_frame_duration_us = 5000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 };
-#else
- LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 20000, .channels = 1, .samplerate = 48000 };
-#endif
/* lc3plus max bitrate is 320000 per channel */
uint32_t invalid_high_bps = 700000;
uint32_t invalid_low_bps = 8;
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
uint32_t limitedBitrate;
-#endif
ISAR_LC3PLUS_ENC_HANDLE encHandle;
err = ISAR_LC3PLUS_ENC_Open( config, invalid_high_bps, &encHandle );
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
/* setting an invalid bitrate should result in a limited bitrate*/
if ( IVAS_ERR_OK != err )
-#else
- /* setting an invalid bitrate should trigger an error - which is what we expect */
- if ( IVAS_ERR_LC3PLUS_INVALID_BITRATE != err )
-#endif
{
return 1;
}
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
limitedBitrate = lc3plus_enc_get_real_bitrate(encHandle->handles[0]);
if(limitedBitrate != 320000)
{
return 1;
}
-#endif
ISAR_LC3PLUS_ENC_Close(&encHandle);
err = ISAR_LC3PLUS_ENC_Open( config, invalid_low_bps, &encHandle );
/* setting an invalid bitrate should trigger an error - which is what we expect */
@@ -265,11 +237,7 @@ static int tryOpenEncoderWithInvalidBitrate( void )
static int tryOpenEncoderWithInvalidFrameDuration( void )
{
ivas_error err;
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 5 * 1000, .isar_frame_duration_us = 5000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 };
-#else
- LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 20000, .channels = 1, .samplerate = 48000 };
-#endif
config.lc3plus_frame_duration_us = 1234; /*unsupported frame duration*/
uint32_t bps = 320000;
@@ -286,11 +254,7 @@ static int tryOpenEncoderWithInvalidFrameDuration( void )
static int tryOpenEncoderWithInvalidSampleRate( void )
{
ivas_error err;
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 5 * 1000, .isar_frame_duration_us = 5000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 };
-#else
- LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 20000, .channels = 1, .samplerate = 48000 };
-#endif
config.samplerate = 1234; /*unsupported sample rate */
uint32_t bps = 320000;
@@ -330,22 +294,14 @@ static int tryCallEncoderApiWithInvalidParams( void )
return 1;
}
ISAR_LC3PLUS_ENC_Close( &invalidEncHandle );
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
Word16 Q_in[16];
memset(Q_in, 0, sizeof(Q_in) );
if ( IVAS_ERR_UNEXPECTED_NULL_POINTER != ISAR_LC3PLUS_ENC_Encode( invalidEncHandle, invalidPcm_in, invalidBitstream_out, bsSize, Q_in ) )
-#else
- if ( IVAS_ERR_UNEXPECTED_NULL_POINTER != ISAR_LC3PLUS_ENC_Encode( invalidEncHandle, invalidPcm_in, invalidBitstream_out ) )
-#endif
{
return 1;
}
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
memset(Q_in, 0, sizeof(Q_in) );
if ( IVAS_ERR_UNEXPECTED_NULL_POINTER != ISAR_LC3PLUS_ENC_Encode( invalidEncHandle, pcm_in, invalidBitstream_out, bsSize, Q_in) || IVAS_ERR_UNEXPECTED_NULL_POINTER != ISAR_LC3PLUS_ENC_Encode( invalidEncHandle, invalidPcm_in, bitstream_out, bsSize, Q_in ) || IVAS_ERR_UNEXPECTED_NULL_POINTER != ISAR_LC3PLUS_ENC_Encode( invalidEncHandle, pcm_in, bitstream_out, bsSize, Q_in ) )
-#else
- if ( IVAS_ERR_UNEXPECTED_NULL_POINTER != ISAR_LC3PLUS_ENC_Encode( invalidEncHandle, pcm_in, invalidBitstream_out ) || IVAS_ERR_UNEXPECTED_NULL_POINTER != ISAR_LC3PLUS_ENC_Encode( invalidEncHandle, invalidPcm_in, bitstream_out ) || IVAS_ERR_UNEXPECTED_NULL_POINTER != ISAR_LC3PLUS_ENC_Encode( invalidEncHandle, pcm_in, bitstream_out ) )
-#endif
{
return 1;
}
@@ -391,11 +347,7 @@ static int tryCallDecoderApiWithInvalidParams( void )
static int openCloseDecoderWithCaching( void )
{
ivas_error err;
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 5 * 1000, .isar_frame_duration_us = 5000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 };
-#else
- LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 20000, .channels = 1, .samplerate = 48000 };
-#endif
ISAR_LC3PLUS_DEC_HANDLE decHandle;
err = ISAR_LC3PLUS_DEC_Open( config,
#ifdef LC3PLUS_DEC_ALLOW_DISABLE_CACHING
@@ -414,11 +366,7 @@ static int openCloseDecoderWithCaching( void )
static int openCloseDecoderWithoutCaching( void )
{
ivas_error err;
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 5 * 1000, .isar_frame_duration_us = 5000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 };
-#else
- LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 20000, .channels = 1, .samplerate = 48000 };
-#endif
ISAR_LC3PLUS_DEC_HANDLE decHandle;
err = ISAR_LC3PLUS_DEC_Open( config,
#ifdef LC3PLUS_DEC_ALLOW_DISABLE_CACHING
@@ -438,11 +386,7 @@ static int openCloseDecoderWithoutCaching( void )
static int tryOpenDecoderWithInvalidFrameDuration( void )
{
ivas_error err;
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 5 * 1000, .isar_frame_duration_us = 5000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 };
-#else
- LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 20000, .channels = 1, .samplerate = 48000 };
-#endif
config.lc3plus_frame_duration_us = 1234; /*unsupported frame duration*/
ISAR_LC3PLUS_DEC_HANDLE decHandle;
@@ -462,11 +406,7 @@ static int tryOpenDecoderWithInvalidFrameDuration( void )
static int tryOpenDecoderWithInvalidSampleRate( void )
{
ivas_error err;
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 5 * 1000, .isar_frame_duration_us = 5000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 };
-#else
- LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 20000, .channels = 1, .samplerate = 48000 };
-#endif
config.samplerate = 1234; /*unsupported sample rate*/
ISAR_LC3PLUS_DEC_HANDLE decHandle;
@@ -486,11 +426,7 @@ static int tryOpenDecoderWithInvalidSampleRate( void )
static int encodeOneFrame( void )
{
ivas_error err;
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 5 * 1000, .isar_frame_duration_us = 5000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 };
-#else
- LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 20000, .channels = 1, .samplerate = 48000 };
-#endif
uint32_t bps = 128000;
ISAR_LC3PLUS_ENC_HANDLE encHandle;
@@ -511,14 +447,10 @@ static int encodeOneFrame( void )
return err;
uint8_t *bitstream_out = malloc( bitstreamSizePerIvasFrame );
memset( bitstream_out, 0, bitstreamSizePerIvasFrame );
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
Word16 Q_in[16];
memset(Q_in, 0, sizeof(Q_in) );
err = ISAR_LC3PLUS_ENC_Encode( encHandle, pcm, bitstream_out, bitstreamSizePerIvasFrame, Q_in );
-#else
- err = ISAR_LC3PLUS_ENC_Encode( encHandle, pcm, bitstream_out );
-#endif
if ( IVAS_ERR_OK != err )
return err;
@@ -531,11 +463,7 @@ static int encodeOneFrame( void )
static int encodeAndDecodeOneMonoFrame( void )
{
ivas_error err;
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 5 * 1000, .isar_frame_duration_us = 5000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 };
-#else
- LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 20000, .channels = 1, .samplerate = 48000 };
-#endif
uint32_t bps = 128000;
ISAR_LC3PLUS_ENC_HANDLE encHandle;
@@ -559,13 +487,9 @@ static int encodeAndDecodeOneMonoFrame( void )
uint8_t *bitstream_out = malloc( bitstreamSizePerIvasFrame );
memset( bitstream_out, 0, bitstreamSizePerIvasFrame );
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
Word16 Q_in[16];
memset(Q_in, 0, sizeof(Q_in) );
err = ISAR_LC3PLUS_ENC_Encode( encHandle, pcm_in, bitstream_out, bitstreamSizePerIvasFrame, Q_in );
-#else
- err = ISAR_LC3PLUS_ENC_Encode( encHandle, pcm_in, bitstream_out );
-#endif
if ( IVAS_ERR_OK != err )
return err;
ISAR_LC3PLUS_ENC_Close( &encHandle );
@@ -608,11 +532,7 @@ static int encodeAndDecodeOneMonoFrame( void )
static int encodeAndDecodeOneStereoFrameIvas20msLc3plus10ms_48kHz( void )
{
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 20 * 1000, .channels = 2, .samplerate = 48000, .high_res_mode_enabled = 0 };
-#else
- LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 20 * 1000, .channels = 2, .samplerate = 48000 };
-#endif
return encodeAndDecodeOneStereoFrame( config, DEFAULT_BPS );
}
@@ -630,140 +550,84 @@ static int encodeAndDecodeOneStereoFrameIvas20msLc3plus10ms_16kHz( void )
static int encodeAndDecodeOneStereoFrameIvas5msLc3plus5ms_48kHz( void )
{
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 5 * 1000, .isar_frame_duration_us = 5 * 1000, .channels = 2, .samplerate = 48000, .high_res_mode_enabled = 0 };
-#else
- LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 5 * 1000, .isar_frame_duration_us = 5 * 1000, .channels = 2, .samplerate = 48000 };
-#endif
return encodeAndDecodeOneStereoFrame( config, DEFAULT_BPS );
}
static int encodeAndDecodeOneStereoFrameIvas10msLc3plus10ms_48kHz( void )
{
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 2, .samplerate = 48000, .high_res_mode_enabled = 0 };
-#else
- LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 5 * 1000, .isar_frame_duration_us = 5 * 1000, .channels = 2, .samplerate = 48000 };
-#endif
return encodeAndDecodeOneStereoFrame( config, DEFAULT_BPS );
}
static int encodeAndDecodeOneMonoFrameIvas20msLc3plus10ms_48kHz( void )
{
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 20 * 1000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 };
-#else
- LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 20 * 1000, .channels = 1, .samplerate = 48000 };
-#endif
return encodeAndDecodeOneStereoFrame( config, DEFAULT_BPS );
}
static int encodeAndDecodeOneMonoFrameIvas5msLc3plus5ms_48kHz( void )
{
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 5 * 1000, .isar_frame_duration_us = 5 * 1000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 };
-#else
- LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 5 * 1000, .isar_frame_duration_us = 5 * 1000, .channels = 1, .samplerate = 48000 };
-#endif
return encodeAndDecodeOneStereoFrame( config, DEFAULT_BPS );
}
static int encodeAndDecodeOneStereoFrameIvas20msLc3plus2_5ms_48kHz( void )
{
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 2.5 * 1000, .isar_frame_duration_us = 20 * 1000, .channels = 2, .samplerate = 48000, .high_res_mode_enabled = 0 };
-#else
- LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 2.5 * 1000, .isar_frame_duration_us = 20 * 1000, .channels = 2, .samplerate = 48000 };
-#endif
return encodeAndDecodeOneStereoFrame( config, DEFAULT_BPS );
}
static int encodeAndDecodeOneStereoFrameIvas10msLc3_10ms_48kHz_80kbpsPerChannel( void )
{
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 2, .samplerate = 48000, .high_res_mode_enabled = 0 };
-#else
- LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 2, .samplerate = 48000 };
-#endif
return encodeAndDecodeOneStereoFrame( config, config.channels * 82*1000 );
}
static int encodeAndDecodeOneStereoFrameIvas10msLc3_10ms_48kHz_96kbpsPerChannel( void )
{
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 2, .samplerate = 48000, .high_res_mode_enabled = 0 };
-#else
- LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 2, .samplerate = 48000 };
-#endif
return encodeAndDecodeOneStereoFrame( config, config.channels * 98*1000 );
}
static int encodeAndDecodeOneStereoFrameIvas10msLc3_10ms_48kHz_124kbpsPerChannel( void )
{
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 2, .samplerate = 48000, .high_res_mode_enabled = 0 };
-#else
- LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 2, .samplerate = 48000 };
-#endif
return encodeAndDecodeOneStereoFrame( config, config.channels * 126*1000 );
}
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
static int encodeAndDecodeOneStereoFrameIvas10msLc3_10ms_48kHz_800kbpsPerChannel( void )
{
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 2, .samplerate = 48000, .high_res_mode_enabled = 0 };
-#else
- LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 2, .samplerate = 48000 };
-#endif
return encodeAndDecodeOneStereoFrame( config, config.channels * 800*1000 );
}
-#endif
static int encodeAndDecodeOneStereoFrameIvas10msLc3_10ms_48kHz_204800bpsPerChannel( void )
{
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 };
-#else
- LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 2, .samplerate = 48000 };
-#endif
return encodeAndDecodeOneStereoFrame( config, config.channels * 204800 );
}
static int encodeAndDecodeOneStereoFrameIvas10msLc3_10ms_48kHz_205600bpsPerChannel( void )
{
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 };
-#else
- LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 2, .samplerate = 48000 };
-#endif
return encodeAndDecodeOneStereoFrame( config, config.channels * 205600 );
}
static int encodeAndDecodeOneStereoFrameIvas10msLc3_10ms_48kHz_206400bpsPerChannel( void )
{
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 };
-#else
- LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 2, .samplerate = 48000 };
-#endif
return encodeAndDecodeOneStereoFrame( config, config.channels * 206400 );
}
static int encodeAndDecodeOneStereoFrameIvas10msLc3_10ms_48kHz_207200bpsPerChannel( void )
{
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 };
-#else
- LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 2, .samplerate = 48000 };
-#endif
return encodeAndDecodeOneStereoFrame( config, config.channels * 207200 );
}
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
#include "ivas_lc3plus_unit_test_payload_format.c"
-#endif
int main(
int argc,
@@ -841,11 +705,9 @@ int main(
ret = encodeAndDecodeOneStereoFrameIvas10msLc3_10ms_48kHz_124kbpsPerChannel();
if ( ret != 0 )
return 1;
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
ret = encodeAndDecodeOneStereoFrameIvas10msLc3_10ms_48kHz_800kbpsPerChannel();
if ( ret != 0 )
return 1;
-#endif
/* start configs around the FDL threshold */
ret = encodeAndDecodeOneStereoFrameIvas10msLc3_10ms_48kHz_204800bpsPerChannel();
if ( ret != 0 )
@@ -860,16 +722,8 @@ int main(
if ( ret != 0 )
return 1;
/* end configs around the FDL threshold */
-#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
ret = run_all_payload_tests();
if ( ret != 0 )
return 1;
-#endif
return 0;
}
-#else
-int main( void )
-{
- return EXIT_SUCCESS;
-}
-#endif /* SPLIT_REND_WITH_HEAD_ROT */
diff --git a/scripts/split_rendering/lc3plus_float/ivas_lc3plus_unit_test.c b/scripts/split_rendering/lc3plus_float/ivas_lc3plus_unit_test.c
index d2becedec9cbcc48f041b34601d5d3a5ff8adc35..c15f14b4ccfa6d8d0311950926fddb4c5cc0dc70 100644
--- a/scripts/split_rendering/lc3plus_float/ivas_lc3plus_unit_test.c
+++ b/scripts/split_rendering/lc3plus_float/ivas_lc3plus_unit_test.c
@@ -38,7 +38,7 @@ the United Nations Convention on Contracts on the International Sales of Goods.
#include "isar_lc3plus_common.h"
#include "isar_lc3plus_dec.h"
#include "ivas_error_utils.h"
-#include "lc3.h"
+#include "lc3plus.h"
#define MAX_SAMPLES_PER_CHANNEL 960 / 4
#define DEFAULT_BPS 256000
diff --git a/scripts/testv/mixed_mc714_foa_masa2_ism4_16.txt b/scripts/testv/mixed_mc714_foa_masa2_ism4_16.txt
new file mode 100644
index 0000000000000000000000000000000000000000..90338b42f70d61fa58fc654abcd128b31d4b308a
--- /dev/null
+++ b/scripts/testv/mixed_mc714_foa_masa2_ism4_16.txt
@@ -0,0 +1,24 @@
+mixed_mc714_foa_masa2_ism4_16.wav
+7
+MC
+1
+7_1_4
+SBA
+13
+1
+MASA
+17
+2
+stv2MASA2TC16c.met
+ISM
+19
+stvISM1.csv
+ISM
+20
+stvISM2.csv
+ISM
+21
+stvISM3.csv
+ISM
+22
+stvISM4.csv
diff --git a/scripts/testv/mixed_mc714_foa_masa2_ism4_16.wav b/scripts/testv/mixed_mc714_foa_masa2_ism4_16.wav
new file mode 100644
index 0000000000000000000000000000000000000000..72f1946cbb990a3724a9fd43b9aa4ea541bf5590
--- /dev/null
+++ b/scripts/testv/mixed_mc714_foa_masa2_ism4_16.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b02c4e9420d2400dad9b44ca81e6a4333afc958f5e4fe0b8697b39351162bd8a
+size 2112080
diff --git a/scripts/testv/mixed_mc714_foa_masa2_ism4_32.txt b/scripts/testv/mixed_mc714_foa_masa2_ism4_32.txt
new file mode 100644
index 0000000000000000000000000000000000000000..007fc4f8872aa23f37cc393f0deb6b43bc22c3f5
--- /dev/null
+++ b/scripts/testv/mixed_mc714_foa_masa2_ism4_32.txt
@@ -0,0 +1,24 @@
+mixed_mc714_foa_masa2_ism4_32.wav
+7
+MC
+1
+7_1_4
+SBA
+13
+1
+MASA
+17
+2
+stv2MASA2TC32c.met
+ISM
+19
+stvISM1.csv
+ISM
+20
+stvISM2.csv
+ISM
+21
+stvISM3.csv
+ISM
+22
+stvISM4.csv
diff --git a/scripts/testv/mixed_mc714_foa_masa2_ism4_32.wav b/scripts/testv/mixed_mc714_foa_masa2_ism4_32.wav
new file mode 100644
index 0000000000000000000000000000000000000000..957016a4152932ed5f1382603b219f16db43739f
--- /dev/null
+++ b/scripts/testv/mixed_mc714_foa_masa2_ism4_32.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5618c31bad587705379ea8e5f19e0e2347188051951babe707873e41a7f0c202
+size 4224080
diff --git a/scripts/testv/mixed_mc714_foa_masa2_ism4.txt b/scripts/testv/mixed_mc714_foa_masa2_ism4_48.txt
similarity index 78%
rename from scripts/testv/mixed_mc714_foa_masa2_ism4.txt
rename to scripts/testv/mixed_mc714_foa_masa2_ism4_48.txt
index 800e88ae7cf96a208680d099d74bd91299a08d5e..394c73cbd3d89e52f0ec07f00dccc54a98357c34 100644
--- a/scripts/testv/mixed_mc714_foa_masa2_ism4.txt
+++ b/scripts/testv/mixed_mc714_foa_masa2_ism4_48.txt
@@ -1,4 +1,4 @@
-mixed_mc714_foa_masa2_ism4.wav
+mixed_mc714_foa_masa2_ism4_48.wav
7
MC
1
diff --git a/scripts/testv/mixed_mc714_foa_masa2_ism4.wav b/scripts/testv/mixed_mc714_foa_masa2_ism4_48.wav
similarity index 100%
rename from scripts/testv/mixed_mc714_foa_masa2_ism4.wav
rename to scripts/testv/mixed_mc714_foa_masa2_ism4_48.wav
diff --git a/scripts/testv/mixed_scene_16.txt b/scripts/testv/mixed_scene_16.txt
new file mode 100644
index 0000000000000000000000000000000000000000..be8f68cae786d426d68b6f3d7399ad1bab11b120
--- /dev/null
+++ b/scripts/testv/mixed_scene_16.txt
@@ -0,0 +1,15 @@
+spectral_test_16ch_16kHz.wav
+4
+ISM
+1
+ism_0a_0e.csv
+ISM
+2
+1
+1,-30,0
+SBA
+3
+1
+MC
+7
+5_1_4
diff --git a/scripts/testv/mixed_scene_32.txt b/scripts/testv/mixed_scene_32.txt
new file mode 100644
index 0000000000000000000000000000000000000000..6a91de0acbfb707c65fa86755265326005aca77e
--- /dev/null
+++ b/scripts/testv/mixed_scene_32.txt
@@ -0,0 +1,15 @@
+spectral_test_16ch_32kHz.wav
+4
+ISM
+1
+ism_0a_0e.csv
+ISM
+2
+1
+1,-30,0
+SBA
+3
+1
+MC
+7
+5_1_4
diff --git a/scripts/testv/mixed_scene.txt b/scripts/testv/mixed_scene_48.txt
similarity index 100%
rename from scripts/testv/mixed_scene.txt
rename to scripts/testv/mixed_scene_48.txt
diff --git a/scripts/testv/mixed_scene_simple_16.txt b/scripts/testv/mixed_scene_simple_16.txt
new file mode 100644
index 0000000000000000000000000000000000000000..4d26764b72d6cd7927bf7f5173d2fa8b4972640b
--- /dev/null
+++ b/scripts/testv/mixed_scene_simple_16.txt
@@ -0,0 +1,12 @@
+spectral_test_4ch_16kHz.wav
+3
+ISM
+1
+ism_0a_0e.csv
+ISM
+2
+1
+1,-30,0
+MC
+3
+STEREO
diff --git a/scripts/testv/mixed_scene_simple_32.txt b/scripts/testv/mixed_scene_simple_32.txt
new file mode 100644
index 0000000000000000000000000000000000000000..5c7fca0cafdf19ad877db9aa656f30ae4c0f703b
--- /dev/null
+++ b/scripts/testv/mixed_scene_simple_32.txt
@@ -0,0 +1,12 @@
+spectral_test_4ch_32kHz.wav
+3
+ISM
+1
+ism_0a_0e.csv
+ISM
+2
+1
+1,-30,0
+MC
+3
+STEREO
diff --git a/scripts/testv/mixed_scene_simple.txt b/scripts/testv/mixed_scene_simple_48.txt
similarity index 100%
rename from scripts/testv/mixed_scene_simple.txt
rename to scripts/testv/mixed_scene_simple_48.txt
diff --git a/scripts/testv/spectral_16.wav b/scripts/testv/spectral_16.wav
new file mode 100644
index 0000000000000000000000000000000000000000..325a12c90e917e705af1c44950cc3754eb71fe20
--- /dev/null
+++ b/scripts/testv/spectral_16.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0017722149e228bef3554bd2d847dd7d492d20d009828fc742b6c786feb568f8
+size 44378
diff --git a/scripts/testv/spectral_32.wav b/scripts/testv/spectral_32.wav
new file mode 100644
index 0000000000000000000000000000000000000000..a92ed3e4486033882b478b222823927990a132b4
--- /dev/null
+++ b/scripts/testv/spectral_32.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:566fb46f379053b0d60c908a604c831d82882340bfa41a9064579a75f0f85c3d
+size 44378
diff --git a/scripts/testv/spectral_48.wav b/scripts/testv/spectral_48.wav
new file mode 100644
index 0000000000000000000000000000000000000000..2a848767b5858219c847ce181eef76ba8945bbfd
--- /dev/null
+++ b/scripts/testv/spectral_48.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5fb911227c296a9c7030e21b67e610b9506ad627d4c2ec093bc15b36afe71af3
+size 44378
diff --git a/scripts/testv/spectral_test_10ch_16kHz.wav b/scripts/testv/spectral_test_10ch_16kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..a6ba926824bdde86735d337efe11aab133447b00
--- /dev/null
+++ b/scripts/testv/spectral_test_10ch_16kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c2a6457131471a7ed929bccba5d601b095521698f01eb8767faf56c96eb9576a
+size 384044
diff --git a/scripts/testv/spectral_test_10ch_32kHz.wav b/scripts/testv/spectral_test_10ch_32kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..3738c3d774878a6767a402f4ffe1de423bd2c465
--- /dev/null
+++ b/scripts/testv/spectral_test_10ch_32kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2c58b9fb451cd386d53063266e1f23cbe7c33434536de7b967b15a197538cd1b
+size 768044
diff --git a/scripts/testv/spectral_test_10ch_48kHz.wav b/scripts/testv/spectral_test_10ch_48kHz.wav
index 4f96b5075c5b35f574589788f8292cbd8e9b8958..71afa0dbdf40769e883b00bdb420fee7c23eb0cd 100644
--- a/scripts/testv/spectral_test_10ch_48kHz.wav
+++ b/scripts/testv/spectral_test_10ch_48kHz.wav
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:1dff871cc4787b53ef73920e9611938c85ab698024cb58384c29d74eb089cfe0
-size 960080
+oid sha256:41d90e02a8f51719c74e32098a5e46c9d15908f26df259a89e8b1843dcf4e312
+size 1152044
diff --git a/scripts/testv/spectral_test_11ch_16kHz.wav b/scripts/testv/spectral_test_11ch_16kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..23587cd44f50d5f422ff1a16f51b01d67bb955cd
--- /dev/null
+++ b/scripts/testv/spectral_test_11ch_16kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a2cd1b561cbf1dfdd1613d52bae794ae2f6477b805428aa21bf2a0bf7d13fb39
+size 422444
diff --git a/scripts/testv/spectral_test_11ch_32kHz.wav b/scripts/testv/spectral_test_11ch_32kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..70b50fe4426e0dc8e1825a03d9afcddbdddb0604
--- /dev/null
+++ b/scripts/testv/spectral_test_11ch_32kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ec5720e8c6647da0bb9f2903569dc6b8a45a4dd2170bb5fae2eb4447929579ef
+size 844844
diff --git a/scripts/testv/spectral_test_11ch_48kHz.wav b/scripts/testv/spectral_test_11ch_48kHz.wav
index 4406f9e2fa648af72c3d1e04328695077d3efd6f..3d0b84fb7016d236af304ca8a37ec8882e879359 100644
--- a/scripts/testv/spectral_test_11ch_48kHz.wav
+++ b/scripts/testv/spectral_test_11ch_48kHz.wav
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:79501e014bb57ae483875fd0626b0135d1a3f5273584acd7b8f367a332fc9228
-size 1056044
+oid sha256:65892c68e1ff4aeb67b93e1a84206e61b66a60a38d15fcac6ab21141da114662
+size 1267244
diff --git a/scripts/testv/spectral_test_12ch_16kHz.wav b/scripts/testv/spectral_test_12ch_16kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..bc40c17346650209d2d2e5e20b162de8e41a4c60
--- /dev/null
+++ b/scripts/testv/spectral_test_12ch_16kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5373d1bf1f0a94f2f6790c19092c7c37d7c4d10e8d79f212fbfc22f00fc224c1
+size 460844
diff --git a/scripts/testv/spectral_test_12ch_32kHz.wav b/scripts/testv/spectral_test_12ch_32kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..86a4f83bb44b3943af716336e700221df294837c
--- /dev/null
+++ b/scripts/testv/spectral_test_12ch_32kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:633987a4c427c5b14b57a93f8c4a3af7d1a72b098c01b5d20d7e351dfb48ffa6
+size 921644
diff --git a/scripts/testv/spectral_test_12ch_48kHz.wav b/scripts/testv/spectral_test_12ch_48kHz.wav
index 4ee3e1d862d82116315c9408b0d08beb398e0fc5..67e315eb055e0b882357df739b6931d6fa061d7a 100644
--- a/scripts/testv/spectral_test_12ch_48kHz.wav
+++ b/scripts/testv/spectral_test_12ch_48kHz.wav
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:17b2c1303af29e39ff72075b12b58dc0595411711bdcfdf52ebcc30074d1e987
-size 1152080
+oid sha256:3fbfda7e9901e753e590d3aa406e21446b3d6287f43f4815ceb810105448b6b8
+size 1382444
diff --git a/scripts/testv/spectral_test_13ch_16kHz.wav b/scripts/testv/spectral_test_13ch_16kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..800890c0d99837ca5ce5b016ad0fd0769b35cacd
--- /dev/null
+++ b/scripts/testv/spectral_test_13ch_16kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:002ca60f43e7ef036f4270b652d4e3545e8d7c3cfad9510ca0d259cf8903f728
+size 499244
diff --git a/scripts/testv/spectral_test_13ch_32kHz.wav b/scripts/testv/spectral_test_13ch_32kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..fca814015184187240de2ead6952621bedcf6eab
--- /dev/null
+++ b/scripts/testv/spectral_test_13ch_32kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:00d4b4e90fc15edbba619eb7f0fa50c61fd4c381dd4391481c12a892fcbf0512
+size 998444
diff --git a/scripts/testv/spectral_test_13ch_48kHz.wav b/scripts/testv/spectral_test_13ch_48kHz.wav
index 31719ea091e7ded128d2e74ee314984d7c8941d4..c53e586e456a64862498b933d6ef6af212a2e733 100644
--- a/scripts/testv/spectral_test_13ch_48kHz.wav
+++ b/scripts/testv/spectral_test_13ch_48kHz.wav
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:0bad70578fa0882caf7fc09718005d188bec65419937df3c93a2b6d27eaca09c
-size 1248044
+oid sha256:67d246269af70498c709b3bed8d82cb3ed270002025b1db3a3ea4fb7f5b06fc8
+size 1497644
diff --git a/scripts/testv/spectral_test_14ch_16kHz.wav b/scripts/testv/spectral_test_14ch_16kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..45ed9a4f1888b1b00527296c506ee2f0e885666a
--- /dev/null
+++ b/scripts/testv/spectral_test_14ch_16kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:530bcdb707bc68c7372bab34dc2d42ab38cb1cea78f06e6e599e572e9292caab
+size 537644
diff --git a/scripts/testv/spectral_test_14ch_32kHz.wav b/scripts/testv/spectral_test_14ch_32kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..4fdcdaff9f990bc8fbb7bfd75d75c918c4c49c2e
--- /dev/null
+++ b/scripts/testv/spectral_test_14ch_32kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3655db116fbfcc41428f21ec6be164fe86230d0cc260c617f0db7dd42edb269a
+size 1075244
diff --git a/scripts/testv/spectral_test_14ch_48kHz.wav b/scripts/testv/spectral_test_14ch_48kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..70dcfcc453afc5f53d92849c5c91c65ac024dbe4
--- /dev/null
+++ b/scripts/testv/spectral_test_14ch_48kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2c9c88d58faff9a99cee069502ce3b13182a4865bf4e638fda3ecfcd0206652e
+size 1612844
diff --git a/scripts/testv/spectral_test_15ch_16kHz.wav b/scripts/testv/spectral_test_15ch_16kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..b89c58d7ad89b94dc0870a25b156bafd43b09a6a
--- /dev/null
+++ b/scripts/testv/spectral_test_15ch_16kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:352d785509028cf127d2cc3fbb9b2d77516f768e5f03f3197c63e81ac875f98b
+size 576044
diff --git a/scripts/testv/spectral_test_15ch_32kHz.wav b/scripts/testv/spectral_test_15ch_32kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..facb5ca854cd634324d7cd2834fd5ad9c15221a7
--- /dev/null
+++ b/scripts/testv/spectral_test_15ch_32kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b2df93bfa230f1a3f37c67b0080f816684b72b1a28b1fca85fbcc9f9142471db
+size 1152044
diff --git a/scripts/testv/spectral_test_15ch_48kHz.wav b/scripts/testv/spectral_test_15ch_48kHz.wav
index b74d476014f974bbf6cce358b79a8c6ae4d10773..a8186c7ffe0c6a74406905a739e9001b947bde76 100644
--- a/scripts/testv/spectral_test_15ch_48kHz.wav
+++ b/scripts/testv/spectral_test_15ch_48kHz.wav
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:7ab7acc0e905b617a3f1053fb1c61e8ac9f4da9c7f22d1290ad4fe457e933b35
-size 1440044
+oid sha256:760a914819b582eb2f64796f5497f569210e8a6f80e73e6ab5573003eac3eaa2
+size 1728044
diff --git a/scripts/testv/spectral_test_16ch_16kHz.wav b/scripts/testv/spectral_test_16ch_16kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..68046cf8fffa2314a8fab72497021cfa825d14ce
--- /dev/null
+++ b/scripts/testv/spectral_test_16ch_16kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d0132eef4bd1eb73933abad05afe014448e0f0ea6ca722ae07ca43f7e05cb27b
+size 614444
diff --git a/scripts/testv/spectral_test_16ch_32kHz.wav b/scripts/testv/spectral_test_16ch_32kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..4f180d3057428078509d9d4216a861c4cc58cd8d
--- /dev/null
+++ b/scripts/testv/spectral_test_16ch_32kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3f12cc22a8a156ff06bd19b6da85025b043b84bd8ae3762df5ccd2b6232717a4
+size 1228844
diff --git a/scripts/testv/spectral_test_16ch_48kHz.wav b/scripts/testv/spectral_test_16ch_48kHz.wav
index 9a367181c9832cd204fb8c4aacb5d42a251193b5..12dd0968d44d0315268ed3e2b7a13d58e78b7110 100644
--- a/scripts/testv/spectral_test_16ch_48kHz.wav
+++ b/scripts/testv/spectral_test_16ch_48kHz.wav
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:0df9a7fc7739481190e8a04bbe31dc352481e362114fcbca827f54b7bc32a9e8
-size 1536080
+oid sha256:ba514e33af6fb9a8c65625a66cba3f7c4167f91082a567398cf0c397cb6754bf
+size 1843244
diff --git a/scripts/testv/spectral_test_17ch_16kHz.wav b/scripts/testv/spectral_test_17ch_16kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..38e1d59e4b46bbaa3f9fb633de154e92b477d869
--- /dev/null
+++ b/scripts/testv/spectral_test_17ch_16kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:799b0759dcf5c559295c849f35435b34c9e6277c3ba36515d52a89f592edb03a
+size 652844
diff --git a/scripts/testv/spectral_test_17ch_32kHz.wav b/scripts/testv/spectral_test_17ch_32kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..0cfefe2a5fe333bc0dad440c9d9ca6766b2f5476
--- /dev/null
+++ b/scripts/testv/spectral_test_17ch_32kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8f3205a5f9f835efb6985ac3c13c206707c99b7fc7698182edda482e4ed48df0
+size 1305644
diff --git a/scripts/testv/spectral_test_17ch_48kHz.wav b/scripts/testv/spectral_test_17ch_48kHz.wav
index fea9dfc9e3674fa311ad394aeab13ba103a62cd0..12cffb2cce47d3d32a253952d599c639861166c0 100644
--- a/scripts/testv/spectral_test_17ch_48kHz.wav
+++ b/scripts/testv/spectral_test_17ch_48kHz.wav
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:cfc3d214fc0c3b480a4e69ee4bc20632dfa7e14d18c739cb441c4407e0aa26da
-size 1632044
+oid sha256:95a525516d7c8df6cac2e4dc242a95f5fba9964fff1ab07332b00bff229fe941
+size 1958444
diff --git a/scripts/testv/spectral_test_18ch_16kHz.wav b/scripts/testv/spectral_test_18ch_16kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..b3aab50af8a469491c5ec17fc5e21ec57fb8af29
--- /dev/null
+++ b/scripts/testv/spectral_test_18ch_16kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d6aee3babee4e8cddf74cf465429a8e54066e346ed1df73aff902043dd15a9ac
+size 691244
diff --git a/scripts/testv/spectral_test_18ch_32kHz.wav b/scripts/testv/spectral_test_18ch_32kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..4ed9da350b107649351e170c00c8011d9a44ce0d
--- /dev/null
+++ b/scripts/testv/spectral_test_18ch_32kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2c398f3e6bb699eb09f10f59f6321a796a9af875854c3a435bf261e32b543fa5
+size 1382444
diff --git a/scripts/testv/spectral_test_18ch_48kHz.wav b/scripts/testv/spectral_test_18ch_48kHz.wav
index ef088d567c18b4931fde7ca68f3dca051a189af3..fbe130fee346df74b86d52259645e4c53f3bbda2 100644
--- a/scripts/testv/spectral_test_18ch_48kHz.wav
+++ b/scripts/testv/spectral_test_18ch_48kHz.wav
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:9461a003e8a75cc389842b704f5523f8ad61125c2b13aa8bdbf99d5b4ab357ae
-size 1728044
+oid sha256:cd30ad6fc922b2fd12c6af42787a47a340b277e7d2c77ce76bc72c3886e0876d
+size 2073644
diff --git a/scripts/testv/spectral_test_19ch_16kHz.wav b/scripts/testv/spectral_test_19ch_16kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..4e646387ef197a71473c112518b3dda374e95f13
--- /dev/null
+++ b/scripts/testv/spectral_test_19ch_16kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:768b709a86265eb0f4ccf59b8b119922a6f155e8fa2f03c17467cc49ad1ee6c0
+size 729644
diff --git a/scripts/testv/spectral_test_19ch_32kHz.wav b/scripts/testv/spectral_test_19ch_32kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..d0c2342e61c2e5d843e81a70a8145467fcb64f11
--- /dev/null
+++ b/scripts/testv/spectral_test_19ch_32kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6f51fe306d6a6a91922d8fc7ca32bce02f46b44a4ed1b72a662dc704ba983624
+size 1459244
diff --git a/scripts/testv/spectral_test_19ch_48kHz.wav b/scripts/testv/spectral_test_19ch_48kHz.wav
index 757617df7928c9733bc60f61fbc5584fd3710a15..afa0dfe5139e7b844cbb9c78ca07ab93f242fd66 100644
--- a/scripts/testv/spectral_test_19ch_48kHz.wav
+++ b/scripts/testv/spectral_test_19ch_48kHz.wav
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:dccd5e3b49ef78f1887a32fff3946cc45e7d66f82785f49555b217288a13524d
-size 1824044
+oid sha256:3dd5e5458118c1f325a7a6b25dd2bf980552ee192242bcf3bed1a3a92433ee1a
+size 2188844
diff --git a/scripts/testv/spectral_test_1ch_16kHz.wav b/scripts/testv/spectral_test_1ch_16kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..9aec361ca3ff58219366ae673d115bf4c7a3a96f
--- /dev/null
+++ b/scripts/testv/spectral_test_1ch_16kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2584e4087e0f1f55f4ad5e8d547e367639aee535950f2ec4a9bef056f939466d
+size 38444
diff --git a/scripts/testv/spectral_test_1ch_32kHz.wav b/scripts/testv/spectral_test_1ch_32kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..86e7953ec9e4aa502fefbde5bfe34959d6df302a
--- /dev/null
+++ b/scripts/testv/spectral_test_1ch_32kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4dfae46494b4ae4875f1cc43adc28159051dd85c0d3b979d87ab971250a2f389
+size 76844
diff --git a/scripts/testv/spectral_test_1ch_48kHz.wav b/scripts/testv/spectral_test_1ch_48kHz.wav
index ae67b5138c51c3ea5924105fb12c773288316796..eb5e5e7d9a3edab04ad73032dfc365360be3e83f 100644
--- a/scripts/testv/spectral_test_1ch_48kHz.wav
+++ b/scripts/testv/spectral_test_1ch_48kHz.wav
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:dd111053f9742063020e4ffb0f2705971ccaa87b5fbb78bb34626e0e3f7742e7
-size 96044
+oid sha256:c3379b95cff7505e468b006594721fc770f341c1896e1688d8034df6bc1d3cd2
+size 115244
diff --git a/scripts/testv/spectral_test_20ch_16kHz.wav b/scripts/testv/spectral_test_20ch_16kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..380203a696a9459d60d34c62eb2840916aef45b2
--- /dev/null
+++ b/scripts/testv/spectral_test_20ch_16kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4b70a4a49944f3462e1a1ea1c35d4e2c6a39d85deca19b50dad699eafb1524a0
+size 768044
diff --git a/scripts/testv/spectral_test_20ch_32kHz.wav b/scripts/testv/spectral_test_20ch_32kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..cabdd1181020177bf27669055260640e6f921774
--- /dev/null
+++ b/scripts/testv/spectral_test_20ch_32kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b5576848a7b4328c1842b864bc7601c32a6599e24f61597541928344013f11d8
+size 1536044
diff --git a/scripts/testv/spectral_test_20ch_48kHz.wav b/scripts/testv/spectral_test_20ch_48kHz.wav
index 30e986372ccff7af0632179f9ab34289f2524fe5..3af611ee688d374f9f14874edac8d762475da189 100644
--- a/scripts/testv/spectral_test_20ch_48kHz.wav
+++ b/scripts/testv/spectral_test_20ch_48kHz.wav
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:39ce9d81bdd6c15196fd6a7e43ae0012a014245f10e66590ebe375ccd0aff6cd
-size 1920044
+oid sha256:70e8d68b9ac8cc2a685e629f9d410e6f54132a236dd1f4ba017f1d28d6b5c55e
+size 2304044
diff --git a/scripts/testv/spectral_test_2ch_16kHz.wav b/scripts/testv/spectral_test_2ch_16kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..a2c60bab420c90a28279b2abe5e36e0897d2e52d
--- /dev/null
+++ b/scripts/testv/spectral_test_2ch_16kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6e4b3c257f526f4a77b65b7e0462e80fa163fb82ad3c592886ad5cfb838e406f
+size 76844
diff --git a/scripts/testv/spectral_test_2ch_32kHz.wav b/scripts/testv/spectral_test_2ch_32kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..7a4a2337bf2f65344e84b803c79542f92674e0f9
--- /dev/null
+++ b/scripts/testv/spectral_test_2ch_32kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:cbebe863c7fa5b1ca63eedf4024b28cd2e09cc3253abe34e5c6457705cb0ab3b
+size 153644
diff --git a/scripts/testv/spectral_test_2ch_48kHz.wav b/scripts/testv/spectral_test_2ch_48kHz.wav
index 334a479916b988c6d9fd9ac24f00f9fc50d82a52..601e7f80fe7f45141cd5316eb2a2aa092a8ad941 100644
--- a/scripts/testv/spectral_test_2ch_48kHz.wav
+++ b/scripts/testv/spectral_test_2ch_48kHz.wav
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:2f612f319abdd28cf859d75ae912364fd73b2b591200e307ab6903c629bc10e4
-size 192044
+oid sha256:09ff2b2243aa6d6ce56bf44cd45cd72a7b61912d9fa33c3404b7bb17723c59cd
+size 230444
diff --git a/scripts/testv/spectral_test_3ch_16kHz.wav b/scripts/testv/spectral_test_3ch_16kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..8f1b872ef11256afc0a5e421865a692d3ca187a8
--- /dev/null
+++ b/scripts/testv/spectral_test_3ch_16kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0ee0ac1ac76caa5b0bb50223f8f9874e8ead48d677df36ec38e4a44c3c48fb3c
+size 115244
diff --git a/scripts/testv/spectral_test_3ch_32kHz.wav b/scripts/testv/spectral_test_3ch_32kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..2d2ca8644f878aa64003bafccb86f4cd870cf329
--- /dev/null
+++ b/scripts/testv/spectral_test_3ch_32kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f5ca4b9cf53263c2f2e5a3b63b660689d518f9aba0cb5029f2b8f2c204375fea
+size 230444
diff --git a/scripts/testv/spectral_test_3ch_48kHz.wav b/scripts/testv/spectral_test_3ch_48kHz.wav
index b68e211f2ef655f19f3905f8ce6c65a8f62b8d2e..ebc73250cdd5a2b85060e968d2076933722b2974 100644
--- a/scripts/testv/spectral_test_3ch_48kHz.wav
+++ b/scripts/testv/spectral_test_3ch_48kHz.wav
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:16559e4b0603e7d1079c9df98fd5763b84194e882b3e6d8086f6ddd6455bbb4f
-size 288080
+oid sha256:4ec492b9b55d3dddc35fae0383fcea9c4b7a701ef9ee9c55065a72c83f187b9e
+size 345644
diff --git a/scripts/testv/spectral_test_4ch_16kHz.wav b/scripts/testv/spectral_test_4ch_16kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..ab62999b686f410ab02bc26094c14935d054ead3
--- /dev/null
+++ b/scripts/testv/spectral_test_4ch_16kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:fb9356bb8653972ba616405cd77791b1b5cdcdb9cef587dfed6fc29060b1e373
+size 153644
diff --git a/scripts/testv/spectral_test_4ch_32kHz.wav b/scripts/testv/spectral_test_4ch_32kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..8c2298ea0d10b6199758d46db29daeeba2cb490e
--- /dev/null
+++ b/scripts/testv/spectral_test_4ch_32kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ef6ec6af256eea5df2901a0428e99e7420e236d79a06529230d3b7958c057455
+size 307244
diff --git a/scripts/testv/spectral_test_4ch_48kHz.wav b/scripts/testv/spectral_test_4ch_48kHz.wav
index 6b9296e281b1c9a798605ef9c6b8f2ebfcfc6dce..00b23a83d8a3864dff94453b699994e2da65a70d 100644
--- a/scripts/testv/spectral_test_4ch_48kHz.wav
+++ b/scripts/testv/spectral_test_4ch_48kHz.wav
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:80437a0e2cbb2adb8d9b6ca8a8fab8da229d88af6a14ce64f1cd703f4645bebf
-size 384080
+oid sha256:651e7150ba2c4eeb358c89631e6d7d5f31677806df980e5a9aeb6d8a86a80ae3
+size 460844
diff --git a/scripts/testv/spectral_test_5ch_16kHz.wav b/scripts/testv/spectral_test_5ch_16kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..0ffc071234fee76cbac7901d12df35bed3f73be4
--- /dev/null
+++ b/scripts/testv/spectral_test_5ch_16kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b50d18cf89507aaa6e340ea4e8cb5cf4d9cb2df1242743e2bf998cf44e3af287
+size 192044
diff --git a/scripts/testv/spectral_test_5ch_32kHz.wav b/scripts/testv/spectral_test_5ch_32kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..e8187f6ec591b53d2461b037e68a924d644cfa8c
--- /dev/null
+++ b/scripts/testv/spectral_test_5ch_32kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1d014540ea0037e3f058a53c075ae661044c55dd846edf9f4e71270da01c4306
+size 384044
diff --git a/scripts/testv/spectral_test_5ch_48kHz.wav b/scripts/testv/spectral_test_5ch_48kHz.wav
index f76de9fb586e76ec540634d05c0bfb9f9738c0d1..12546219972ae3eb4e5fcc3b46fbaaf953e0ff3f 100644
--- a/scripts/testv/spectral_test_5ch_48kHz.wav
+++ b/scripts/testv/spectral_test_5ch_48kHz.wav
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:36254bd6bbc80967d9148635286ae9b192c05c31fe8ae0f2c88203cacf1789ce
-size 480044
+oid sha256:4e19abc074510f7e87d0a9ced4ea84ade519789ecc073feb6bf702680ad81138
+size 576044
diff --git a/scripts/testv/spectral_test_6ch_16kHz.wav b/scripts/testv/spectral_test_6ch_16kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..d3ac05ac20a8533ccf5141f554bdc3a6a56df259
--- /dev/null
+++ b/scripts/testv/spectral_test_6ch_16kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:884b45e3f38a993b7243624f28d69a18542763ba4cfcd5cd7891c3b8b6734272
+size 230444
diff --git a/scripts/testv/spectral_test_6ch_32kHz.wav b/scripts/testv/spectral_test_6ch_32kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..69aa08a250204b427d7365330a9c98ae02195167
--- /dev/null
+++ b/scripts/testv/spectral_test_6ch_32kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54af93d7c91a91dca4936235ceac368899b30601380ec9ae81cb4332c31d995f
+size 460844
diff --git a/scripts/testv/spectral_test_6ch_48kHz.wav b/scripts/testv/spectral_test_6ch_48kHz.wav
index 41ed7967c9402172e88920175139ce84921d268b..ab05758c404a0ec6b6e57db197dde5335e92e589 100644
--- a/scripts/testv/spectral_test_6ch_48kHz.wav
+++ b/scripts/testv/spectral_test_6ch_48kHz.wav
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:28c44d1f897897fa8331889ab4de4464f7cee9bd80ea0936f715e4e9860b1c9f
-size 576080
+oid sha256:206d0754dad7afdbb7e44484868193c82c47e720179ce3d52aab7e91d64d4f45
+size 691244
diff --git a/scripts/testv/spectral_test_7ch_16kHz.wav b/scripts/testv/spectral_test_7ch_16kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..0f3c57b4a9115aa137cd3dafbff1b755a92d0ec6
--- /dev/null
+++ b/scripts/testv/spectral_test_7ch_16kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ef40b88590102dd0b67e93a72f8c190b115d3483bc68be2b0303912994362836
+size 268844
diff --git a/scripts/testv/spectral_test_7ch_32kHz.wav b/scripts/testv/spectral_test_7ch_32kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..b51f0c30a93a6ade898e80195c3d05a9f5c81cb9
--- /dev/null
+++ b/scripts/testv/spectral_test_7ch_32kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:449ea814633d97a6c16bfb2eb2ffa8077e2cabe8433df2a0037193b61a4bb141
+size 537644
diff --git a/scripts/testv/spectral_test_7ch_48kHz.wav b/scripts/testv/spectral_test_7ch_48kHz.wav
index 8edc91421e7eab53874be91d1589242201430f8b..ce96e7177d972a8370df03d85138e56beb59da23 100644
--- a/scripts/testv/spectral_test_7ch_48kHz.wav
+++ b/scripts/testv/spectral_test_7ch_48kHz.wav
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:4eb0a56b818be22c7092006af364f2b58a0513330d60c3e0e2977a5f542f1e47
-size 672044
+oid sha256:ae257bbd5b26228d17eab40d54be3bbb55f3633017642374d4c9538a2a57d0a1
+size 806444
diff --git a/scripts/testv/spectral_test_8ch_16kHz.wav b/scripts/testv/spectral_test_8ch_16kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..dcc81a80995302e87095a67dda5c6539095134c9
--- /dev/null
+++ b/scripts/testv/spectral_test_8ch_16kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:02ec123048db5dfcb32f8dbe3faa224e8ddac06f6aedd49fa8d1c65f1c58c5bb
+size 307244
diff --git a/scripts/testv/spectral_test_8ch_32kHz.wav b/scripts/testv/spectral_test_8ch_32kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..5897e491a0e84e0b3e9d6daa0bdc8ba8a6946258
--- /dev/null
+++ b/scripts/testv/spectral_test_8ch_32kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:af18448fd6e66baeaf9f9013d993324cbc22f1c22e32ef4d6453a152c1bfa9e1
+size 614444
diff --git a/scripts/testv/spectral_test_8ch_48kHz.wav b/scripts/testv/spectral_test_8ch_48kHz.wav
index 6bf42f52fab1e8c68ad068d245012c8d0a084761..639d953b77377c7e86b97aab9dfd72f22dc246b4 100644
--- a/scripts/testv/spectral_test_8ch_48kHz.wav
+++ b/scripts/testv/spectral_test_8ch_48kHz.wav
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:220829574ff2adebece2c38afa607f0e2df00443519c5ffe795ce6db9a329666
-size 768080
+oid sha256:7edd18012757ae8daf612d8d7635d65e1d51aa34b623c1a90b9a8c2faa879ad3
+size 921644
diff --git a/scripts/testv/spectral_test_9ch_16kHz.wav b/scripts/testv/spectral_test_9ch_16kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..f0a05945bb362ad221af2c4f7c3038012a3c2aac
--- /dev/null
+++ b/scripts/testv/spectral_test_9ch_16kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a07ecf93b5d8e169080e8b3c47f04a32d1f9ffc3dfd7c567acbda8bfb9ce24aa
+size 345644
diff --git a/scripts/testv/spectral_test_9ch_32kHz.wav b/scripts/testv/spectral_test_9ch_32kHz.wav
new file mode 100644
index 0000000000000000000000000000000000000000..d54a5f50ba15c807ca08a703d3a0fc561a79de7a
--- /dev/null
+++ b/scripts/testv/spectral_test_9ch_32kHz.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6fbf36b7dd3f1807d2e8be1714730ae563e8d8ffb8f493dcd32fa7ef06ccac9a
+size 691244
diff --git a/scripts/testv/spectral_test_9ch_48kHz.wav b/scripts/testv/spectral_test_9ch_48kHz.wav
index 5c7d9f2a711e6fc34e70f57cafdc002706b161a3..d5b2a44761baaa8c9bf0218905802edf74911164 100644
--- a/scripts/testv/spectral_test_9ch_48kHz.wav
+++ b/scripts/testv/spectral_test_9ch_48kHz.wav
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:a99522fe24aa91c8be4cca8aaa9b6817e85bdf3e255f8705dee1b82b4e39dbab
-size 864080
+oid sha256:1d089476de299c2eaf1c343ae6757f6ec0bb96bde3fcebb11a8fc2ace0ce02ef
+size 1036844
diff --git a/scripts/testv/stv1ISM16s.wav b/scripts/testv/stv1ISM16s.wav
new file mode 100644
index 0000000000000000000000000000000000000000..34967e4179b57f7d7463451f48d999b365594386
--- /dev/null
+++ b/scripts/testv/stv1ISM16s.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d6e4b82b810e1bc599b566f701a27d7fc830880c063c39f54aedfdd5a8e8623f
+size 960044
diff --git a/scripts/testv/stv1ISM32s.wav b/scripts/testv/stv1ISM32s.wav
new file mode 100644
index 0000000000000000000000000000000000000000..7859a4b9fdf4b8e77b20c8081f1c031cf5bfd19b
--- /dev/null
+++ b/scripts/testv/stv1ISM32s.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:910cbe1007e3f1d075a53bc0169a00320ecddca9f96e414adcda86a218af5d36
+size 1920044
diff --git a/scripts/testv/stv2ISM16s.wav b/scripts/testv/stv2ISM16s.wav
new file mode 100644
index 0000000000000000000000000000000000000000..82a3e8d86489f14304ef083e0e2b250cf858a3fa
--- /dev/null
+++ b/scripts/testv/stv2ISM16s.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7ebacbedba37caef6da1e303c18a08e0d2246291c6a39555bc306ae9cf370669
+size 1920044
diff --git a/scripts/testv/stv2ISM32s.wav b/scripts/testv/stv2ISM32s.wav
new file mode 100644
index 0000000000000000000000000000000000000000..47383055f166d34d9269321c4942db68349090a1
--- /dev/null
+++ b/scripts/testv/stv2ISM32s.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7e69278e5fc62b13f0d51486689217a48c584079f6ad062af42f693ce36e5884
+size 3840044
diff --git a/scripts/testv/stv3ISM16s.wav b/scripts/testv/stv3ISM16s.wav
new file mode 100644
index 0000000000000000000000000000000000000000..ec6a1c0c5bf48f39845e57933762faf0c4ea142f
--- /dev/null
+++ b/scripts/testv/stv3ISM16s.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:11ab0ebf626eea9c47dd8a3e4fc6a645d2d34cb92fde2eaca2674e070245503a
+size 2880080
diff --git a/scripts/testv/stv3ISM32s.wav b/scripts/testv/stv3ISM32s.wav
new file mode 100644
index 0000000000000000000000000000000000000000..ca26cf8443937aa0020b895f085cfba1052b80d3
--- /dev/null
+++ b/scripts/testv/stv3ISM32s.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:14bd28f1d05cf13ae88a43ee9951a23afb5d18c768032ff6b73a543d81c0e20a
+size 5760080
diff --git a/scripts/testv/stv3OA48c_mono.wav b/scripts/testv/stv3OA48c_mono.wav
new file mode 100644
index 0000000000000000000000000000000000000000..32ae0033011f88117c58a9827dcbcc16f49650dc
--- /dev/null
+++ b/scripts/testv/stv3OA48c_mono.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c8acde6119ad9a2f2daab08912da7ff2b580447f94a7961b4ab9747eb84a134a
+size 30720844
diff --git a/scripts/testv/stv4ISM16s.wav b/scripts/testv/stv4ISM16s.wav
new file mode 100644
index 0000000000000000000000000000000000000000..b86adad4157bc1810ab4ebe9c9aa27c04c605773
--- /dev/null
+++ b/scripts/testv/stv4ISM16s.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7819679af57a883048c23dec9624e0e2362edde9d91d285feccf1f3431966fee
+size 3840080
diff --git a/scripts/testv/stv4ISM32s.wav b/scripts/testv/stv4ISM32s.wav
new file mode 100644
index 0000000000000000000000000000000000000000..5c0c8c208b38404f17ce4537979cf3bca3561b5b
--- /dev/null
+++ b/scripts/testv/stv4ISM32s.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ad58be9dbb83163300832ea2af55ad98fb050e56bd03dbbf949ff64762f6926c
+size 7680080
diff --git a/scripts/testv/stv512MC16c.wav b/scripts/testv/stv512MC16c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..9c6d2e766363d8c8217c0511dc611948c93284c2
--- /dev/null
+++ b/scripts/testv/stv512MC16c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b06cb427a52de9e368d2e94be36e6ff5193a8bc265d035f429d1b631baa55d72
+size 768080
diff --git a/scripts/testv/stv512MC32c.wav b/scripts/testv/stv512MC32c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..3e8542bf1aeb8843693e06c678e872b9929b74c0
--- /dev/null
+++ b/scripts/testv/stv512MC32c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:de8d3726e565c0198ddf9b9ddd93ea6594dc39a8ee1eb7471f9e5a3bd290710e
+size 1536080
diff --git a/scripts/testv/stv514MC16c.wav b/scripts/testv/stv514MC16c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..71188ea1e25d4b62ec5cf22b9070b4a52fe22f20
--- /dev/null
+++ b/scripts/testv/stv514MC16c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7850f0d36254ad9c038b69216993c49d317f0852d2ca85e320e33c27b06e2f66
+size 960080
diff --git a/scripts/testv/stv514MC32c.wav b/scripts/testv/stv514MC32c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..6e79e4e418e921d9d6dc61e49cbe74fa9f36e340
--- /dev/null
+++ b/scripts/testv/stv514MC32c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1df8fea325f6f9deb9157f80e80b4ee1e127e0438a863327bc6dd51e97a59bc5
+size 1920080
diff --git a/scripts/testv/stv51MC16c.wav b/scripts/testv/stv51MC16c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..ffba13d84fdec8db7bdb46b64e5c1e26bf76c0a6
--- /dev/null
+++ b/scripts/testv/stv51MC16c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:49fd942a6c4ebb52c1f8ca231588d3c0fd6561739d440a60ef4859e867a01a32
+size 3840080
diff --git a/scripts/testv/stv714MC16c.wav b/scripts/testv/stv714MC16c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..a4ee86d2fb3eb787afa343e251e6366c091b10f1
--- /dev/null
+++ b/scripts/testv/stv714MC16c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:25e5a8c847e572d3fa26658c2bfd6fa782e2dbea84f4b8f0edfb70758ec7c850
+size 1152080
diff --git a/scripts/testv/stv714MC32c.wav b/scripts/testv/stv714MC32c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..faedba157de479b1bf2be0b509733cb35bc2d646
--- /dev/null
+++ b/scripts/testv/stv714MC32c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b91c0dd73f763af5422e65c276c83742165f383c5dea9e5fd4e9db9cf020c819
+size 2304080
diff --git a/scripts/testv/stv71MC16c.wav b/scripts/testv/stv71MC16c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..5d617361ad32c5785d34c487eee038732b5ad84e
--- /dev/null
+++ b/scripts/testv/stv71MC16c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d834a53f11b316649ac707e6bd948712145c08244caad351ddcedf89ff7ed341
+size 768080
diff --git a/scripts/testv/stv71MC32c.wav b/scripts/testv/stv71MC32c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..6e2dfc17600a6337a2d63a87d2a02880a9a6c47b
--- /dev/null
+++ b/scripts/testv/stv71MC32c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:32ead6d82b6a444f9cb7ced597df7e896ccb594eabd54b7769f97a0548ee2343
+size 1536080
diff --git a/scripts/testv/stvOMASA_1ISM_1MASA1TC16c.met b/scripts/testv/stvOMASA_1ISM_1MASA1TC16c.met
new file mode 100644
index 0000000000000000000000000000000000000000..f2ce23bd2054140614b7d2ad88769d5d2db77990
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_1MASA1TC16c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6349efe3448d28979b80744bcdc29d57f1c025704939b42d7b913d7fc3f23ccc
+size 102300
diff --git a/scripts/testv/stvOMASA_1ISM_1MASA1TC16c.wav b/scripts/testv/stvOMASA_1ISM_1MASA1TC16c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..c2a042824fa91150753757d8e0fbeea83b8f670d
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_1MASA1TC16c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9c56cac93352b2a385ba40190bbbd90bb94cc9915b4ad5e28649647e5512a123
+size 192044
diff --git a/scripts/testv/stvOMASA_1ISM_1MASA1TC16c_ISM1.csv b/scripts/testv/stvOMASA_1ISM_1MASA1TC16c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_1MASA1TC16c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_1ISM_1MASA1TC32c.met b/scripts/testv/stvOMASA_1ISM_1MASA1TC32c.met
new file mode 100644
index 0000000000000000000000000000000000000000..f2ce23bd2054140614b7d2ad88769d5d2db77990
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_1MASA1TC32c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6349efe3448d28979b80744bcdc29d57f1c025704939b42d7b913d7fc3f23ccc
+size 102300
diff --git a/scripts/testv/stvOMASA_1ISM_1MASA1TC32c.wav b/scripts/testv/stvOMASA_1ISM_1MASA1TC32c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..44c05587f8fcf73766c989f679cdd89faf3ad6a3
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_1MASA1TC32c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2b42e9ea7939632e618477f0b397cec2989dd3a16d6f8e3995a41c59a0f696e2
+size 384044
diff --git a/scripts/testv/stvOMASA_1ISM_1MASA1TC32c_ISM1.csv b/scripts/testv/stvOMASA_1ISM_1MASA1TC32c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_1MASA1TC32c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_1ISM_1MASA1TC48c.met b/scripts/testv/stvOMASA_1ISM_1MASA1TC48c.met
new file mode 100644
index 0000000000000000000000000000000000000000..f2ce23bd2054140614b7d2ad88769d5d2db77990
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_1MASA1TC48c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6349efe3448d28979b80744bcdc29d57f1c025704939b42d7b913d7fc3f23ccc
+size 102300
diff --git a/scripts/testv/stvOMASA_1ISM_1MASA1TC48c.wav b/scripts/testv/stvOMASA_1ISM_1MASA1TC48c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..10ad690c7086a86ee080ee2a9fea57fd90d6c9e2
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_1MASA1TC48c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e99552fd0ced5c2e429643a52b9da587ac565ad4e9443ab2dadc70dcd97c4edb
+size 576044
diff --git a/scripts/testv/stvOMASA_1ISM_1MASA1TC48c_ISM1.csv b/scripts/testv/stvOMASA_1ISM_1MASA1TC48c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_1MASA1TC48c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_1ISM_1MASA2TC16c.met b/scripts/testv/stvOMASA_1ISM_1MASA2TC16c.met
new file mode 100644
index 0000000000000000000000000000000000000000..00acdae5394c5d40e9193d7dd9cd1fee6d182c24
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_1MASA2TC16c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5a1f87bfe360dbd221a94583aa68a58ef050e968a63351730d643f2dc2cac4e1
+size 204600
diff --git a/scripts/testv/stvOMASA_1ISM_1MASA2TC16c.wav b/scripts/testv/stvOMASA_1ISM_1MASA2TC16c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..e199a8315f97dbe511e9f12a36e4c5cb48cc1dcc
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_1MASA2TC16c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:14c5871edbd033f8c379e4eaf0c0a248ebb61809e96449f2278352c223cf26cf
+size 576080
diff --git a/scripts/testv/stvOMASA_1ISM_1MASA2TC16c_ISM1.csv b/scripts/testv/stvOMASA_1ISM_1MASA2TC16c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_1MASA2TC16c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_1ISM_1MASA2TC32c.met b/scripts/testv/stvOMASA_1ISM_1MASA2TC32c.met
new file mode 100644
index 0000000000000000000000000000000000000000..00acdae5394c5d40e9193d7dd9cd1fee6d182c24
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_1MASA2TC32c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5a1f87bfe360dbd221a94583aa68a58ef050e968a63351730d643f2dc2cac4e1
+size 204600
diff --git a/scripts/testv/stvOMASA_1ISM_1MASA2TC32c.wav b/scripts/testv/stvOMASA_1ISM_1MASA2TC32c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..a99f9d1b177a4de71d810f20c145c236472f1492
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_1MASA2TC32c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d538cc9f95fc7462a031912f8954029daf77190acd0a4041d4537f34f77f281b
+size 1152080
diff --git a/scripts/testv/stvOMASA_1ISM_1MASA2TC32c_ISM1.csv b/scripts/testv/stvOMASA_1ISM_1MASA2TC32c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_1MASA2TC32c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_1ISM_1MASA2TC48c.met b/scripts/testv/stvOMASA_1ISM_1MASA2TC48c.met
new file mode 100644
index 0000000000000000000000000000000000000000..00acdae5394c5d40e9193d7dd9cd1fee6d182c24
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_1MASA2TC48c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5a1f87bfe360dbd221a94583aa68a58ef050e968a63351730d643f2dc2cac4e1
+size 204600
diff --git a/scripts/testv/stvOMASA_1ISM_1MASA2TC48c_ISM1.csv b/scripts/testv/stvOMASA_1ISM_1MASA2TC48c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_1MASA2TC48c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_1ISM_2MASA1TC16c.met b/scripts/testv/stvOMASA_1ISM_2MASA1TC16c.met
new file mode 100644
index 0000000000000000000000000000000000000000..64688774087538a671ebfda830ff11b4f836f438
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_2MASA1TC16c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d125a4c4e3989ac55f9c2617f464431feae4ede9b2e15d087d3271c0a4a56303
+size 319800
diff --git a/scripts/testv/stvOMASA_1ISM_2MASA1TC16c.wav b/scripts/testv/stvOMASA_1ISM_2MASA1TC16c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..46a49f4ad7308e48112e7a739cb538060b30eb98
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_2MASA1TC16c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e6a112c927d875df5fe654b63f3f92c04557db4944f5c1390caf7e3f34b53e34
+size 384044
diff --git a/scripts/testv/stvOMASA_1ISM_2MASA1TC16c_ISM1.csv b/scripts/testv/stvOMASA_1ISM_2MASA1TC16c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_2MASA1TC16c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_1ISM_2MASA1TC32c.met b/scripts/testv/stvOMASA_1ISM_2MASA1TC32c.met
new file mode 100644
index 0000000000000000000000000000000000000000..64688774087538a671ebfda830ff11b4f836f438
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_2MASA1TC32c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d125a4c4e3989ac55f9c2617f464431feae4ede9b2e15d087d3271c0a4a56303
+size 319800
diff --git a/scripts/testv/stvOMASA_1ISM_2MASA1TC32c_ISM1.csv b/scripts/testv/stvOMASA_1ISM_2MASA1TC32c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_2MASA1TC32c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_1ISM_2MASA1TC48c.met b/scripts/testv/stvOMASA_1ISM_2MASA1TC48c.met
new file mode 100644
index 0000000000000000000000000000000000000000..64688774087538a671ebfda830ff11b4f836f438
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_2MASA1TC48c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d125a4c4e3989ac55f9c2617f464431feae4ede9b2e15d087d3271c0a4a56303
+size 319800
diff --git a/scripts/testv/stvOMASA_1ISM_2MASA1TC48c.wav b/scripts/testv/stvOMASA_1ISM_2MASA1TC48c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..58aeba91f623f381f9f9c02b7b6efb3daad945fb
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_2MASA1TC48c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3a2d0fdda7b509cead8f4259ef6cd5a77dc1413d31a0c6aaf5937897c31f92e6
+size 1152044
diff --git a/scripts/testv/stvOMASA_1ISM_2MASA1TC48c_ISM1.csv b/scripts/testv/stvOMASA_1ISM_2MASA1TC48c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_2MASA1TC48c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_1ISM_2MASA2TC16c.met b/scripts/testv/stvOMASA_1ISM_2MASA2TC16c.met
new file mode 100644
index 0000000000000000000000000000000000000000..1b62022af572fc4f198e4212cca88d51913ec3c4
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_2MASA2TC16c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2eb412d646d7a32c77413dea54dc44cf45dc49e6d8c2de19abe4f4b93a91fa4a
+size 159900
diff --git a/scripts/testv/stvOMASA_1ISM_2MASA2TC16c.wav b/scripts/testv/stvOMASA_1ISM_2MASA2TC16c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..aa1d31a2e0286dd78a00ade156b4f6845325aed5
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_2MASA2TC16c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e947718dec05ad627498172337750a08c5cc8405196cdcd2e59d2a1fe483c40e
+size 288080
diff --git a/scripts/testv/stvOMASA_1ISM_2MASA2TC16c_ISM1.csv b/scripts/testv/stvOMASA_1ISM_2MASA2TC16c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_2MASA2TC16c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_1ISM_2MASA2TC32c.met b/scripts/testv/stvOMASA_1ISM_2MASA2TC32c.met
new file mode 100644
index 0000000000000000000000000000000000000000..1b62022af572fc4f198e4212cca88d51913ec3c4
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_2MASA2TC32c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2eb412d646d7a32c77413dea54dc44cf45dc49e6d8c2de19abe4f4b93a91fa4a
+size 159900
diff --git a/scripts/testv/stvOMASA_1ISM_2MASA2TC32c.wav b/scripts/testv/stvOMASA_1ISM_2MASA2TC32c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..e80d302e4a998922992271fb467d8a2cc5252050
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_2MASA2TC32c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:980c1e3a03b954dabcd310f5ba8bb65020818926589ecb576586a3b17dc131db
+size 576080
diff --git a/scripts/testv/stvOMASA_1ISM_2MASA2TC32c_ISM1.csv b/scripts/testv/stvOMASA_1ISM_2MASA2TC32c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_2MASA2TC32c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_1ISM_2MASA2TC48c.met b/scripts/testv/stvOMASA_1ISM_2MASA2TC48c.met
new file mode 100644
index 0000000000000000000000000000000000000000..1b62022af572fc4f198e4212cca88d51913ec3c4
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_2MASA2TC48c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2eb412d646d7a32c77413dea54dc44cf45dc49e6d8c2de19abe4f4b93a91fa4a
+size 159900
diff --git a/scripts/testv/stvOMASA_1ISM_2MASA2TC48c_ISM1.csv b/scripts/testv/stvOMASA_1ISM_2MASA2TC48c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_1ISM_2MASA2TC48c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_2ISM_1MASA1TC16c.met b/scripts/testv/stvOMASA_2ISM_1MASA1TC16c.met
new file mode 100644
index 0000000000000000000000000000000000000000..f2ce23bd2054140614b7d2ad88769d5d2db77990
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_1MASA1TC16c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6349efe3448d28979b80744bcdc29d57f1c025704939b42d7b913d7fc3f23ccc
+size 102300
diff --git a/scripts/testv/stvOMASA_2ISM_1MASA1TC16c_ISM1.csv b/scripts/testv/stvOMASA_2ISM_1MASA1TC16c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_1MASA1TC16c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_2ISM_1MASA1TC16c_ISM2.csv b/scripts/testv/stvOMASA_2ISM_1MASA1TC16c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_1MASA1TC16c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_2ISM_1MASA1TC32c.met b/scripts/testv/stvOMASA_2ISM_1MASA1TC32c.met
new file mode 100644
index 0000000000000000000000000000000000000000..f2ce23bd2054140614b7d2ad88769d5d2db77990
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_1MASA1TC32c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6349efe3448d28979b80744bcdc29d57f1c025704939b42d7b913d7fc3f23ccc
+size 102300
diff --git a/scripts/testv/stvOMASA_2ISM_1MASA1TC32c.wav b/scripts/testv/stvOMASA_2ISM_1MASA1TC32c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..ab42d5c5716fc3ebf1364914721d65e4b2b5e784
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_1MASA1TC32c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a47a7a39fa8dea28b6aef65da7e379d2d5c9ebde026bf80796092857ab0b751c
+size 576080
diff --git a/scripts/testv/stvOMASA_2ISM_1MASA1TC32c_ISM1.csv b/scripts/testv/stvOMASA_2ISM_1MASA1TC32c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_1MASA1TC32c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_2ISM_1MASA1TC32c_ISM2.csv b/scripts/testv/stvOMASA_2ISM_1MASA1TC32c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_1MASA1TC32c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_2ISM_1MASA1TC48c.met b/scripts/testv/stvOMASA_2ISM_1MASA1TC48c.met
new file mode 100644
index 0000000000000000000000000000000000000000..f2ce23bd2054140614b7d2ad88769d5d2db77990
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_1MASA1TC48c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6349efe3448d28979b80744bcdc29d57f1c025704939b42d7b913d7fc3f23ccc
+size 102300
diff --git a/scripts/testv/stvOMASA_2ISM_1MASA1TC48c.wav b/scripts/testv/stvOMASA_2ISM_1MASA1TC48c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..60056d87779916863f21188c79f9a5899f8c1a69
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_1MASA1TC48c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a044d92d95c132aa8a74a6ee64e9331e62c605038bc87b33839a9e1f8c3c86ba
+size 864044
diff --git a/scripts/testv/stvOMASA_2ISM_1MASA1TC48c_ISM1.csv b/scripts/testv/stvOMASA_2ISM_1MASA1TC48c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_1MASA1TC48c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_2ISM_1MASA1TC48c_ISM2.csv b/scripts/testv/stvOMASA_2ISM_1MASA1TC48c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_1MASA1TC48c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_2ISM_1MASA2TC16c.met b/scripts/testv/stvOMASA_2ISM_1MASA2TC16c.met
new file mode 100644
index 0000000000000000000000000000000000000000..00acdae5394c5d40e9193d7dd9cd1fee6d182c24
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_1MASA2TC16c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5a1f87bfe360dbd221a94583aa68a58ef050e968a63351730d643f2dc2cac4e1
+size 204600
diff --git a/scripts/testv/stvOMASA_2ISM_1MASA2TC16c.wav b/scripts/testv/stvOMASA_2ISM_1MASA2TC16c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..14a7d3a29f4417db8b1e59af76f75a5d81cafbd0
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_1MASA2TC16c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:53e6c4c0b5bddaa2cb1ba5b990941bc15d6a4ba5f65510a89061283acbf336bc
+size 768080
diff --git a/scripts/testv/stvOMASA_2ISM_1MASA2TC16c_ISM1.csv b/scripts/testv/stvOMASA_2ISM_1MASA2TC16c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_1MASA2TC16c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_2ISM_1MASA2TC16c_ISM2.csv b/scripts/testv/stvOMASA_2ISM_1MASA2TC16c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_1MASA2TC16c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_2ISM_1MASA2TC32c.met b/scripts/testv/stvOMASA_2ISM_1MASA2TC32c.met
new file mode 100644
index 0000000000000000000000000000000000000000..00acdae5394c5d40e9193d7dd9cd1fee6d182c24
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_1MASA2TC32c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5a1f87bfe360dbd221a94583aa68a58ef050e968a63351730d643f2dc2cac4e1
+size 204600
diff --git a/scripts/testv/stvOMASA_2ISM_1MASA2TC32c.wav b/scripts/testv/stvOMASA_2ISM_1MASA2TC32c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..37c6bcc4c8f92869334c6a1f37afb0968617803b
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_1MASA2TC32c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:62a9ad87028d71e8874fe47ffc38ec64d9c4a7f1bfb3af364f29e617dde10f5c
+size 1536080
diff --git a/scripts/testv/stvOMASA_2ISM_1MASA2TC32c_ISM1.csv b/scripts/testv/stvOMASA_2ISM_1MASA2TC32c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_1MASA2TC32c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_2ISM_1MASA2TC32c_ISM2.csv b/scripts/testv/stvOMASA_2ISM_1MASA2TC32c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_1MASA2TC32c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_2ISM_1MASA2TC48c.met b/scripts/testv/stvOMASA_2ISM_1MASA2TC48c.met
new file mode 100644
index 0000000000000000000000000000000000000000..00acdae5394c5d40e9193d7dd9cd1fee6d182c24
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_1MASA2TC48c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5a1f87bfe360dbd221a94583aa68a58ef050e968a63351730d643f2dc2cac4e1
+size 204600
diff --git a/scripts/testv/stvOMASA_2ISM_1MASA2TC48c_ISM1.csv b/scripts/testv/stvOMASA_2ISM_1MASA2TC48c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_1MASA2TC48c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_2ISM_1MASA2TC48c_ISM2.csv b/scripts/testv/stvOMASA_2ISM_1MASA2TC48c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_1MASA2TC48c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_2ISM_2MASA1TC16c.met b/scripts/testv/stvOMASA_2ISM_2MASA1TC16c.met
new file mode 100644
index 0000000000000000000000000000000000000000..64688774087538a671ebfda830ff11b4f836f438
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_2MASA1TC16c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d125a4c4e3989ac55f9c2617f464431feae4ede9b2e15d087d3271c0a4a56303
+size 319800
diff --git a/scripts/testv/stvOMASA_2ISM_2MASA1TC16c.wav b/scripts/testv/stvOMASA_2ISM_2MASA1TC16c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..99d998c3270fa7fd7a22f0dcd8261f1cd4f347e7
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_2MASA1TC16c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9ea7dcffa69781e75b89f18c0d22f6c6dd2f1c27fd8b788ac766d55323cc5a92
+size 576080
diff --git a/scripts/testv/stvOMASA_2ISM_2MASA1TC16c_ISM1.csv b/scripts/testv/stvOMASA_2ISM_2MASA1TC16c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_2MASA1TC16c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_2ISM_2MASA1TC16c_ISM2.csv b/scripts/testv/stvOMASA_2ISM_2MASA1TC16c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_2MASA1TC16c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_2ISM_2MASA1TC32c.met b/scripts/testv/stvOMASA_2ISM_2MASA1TC32c.met
new file mode 100644
index 0000000000000000000000000000000000000000..64688774087538a671ebfda830ff11b4f836f438
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_2MASA1TC32c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d125a4c4e3989ac55f9c2617f464431feae4ede9b2e15d087d3271c0a4a56303
+size 319800
diff --git a/scripts/testv/stvOMASA_2ISM_2MASA1TC32c.wav b/scripts/testv/stvOMASA_2ISM_2MASA1TC32c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..a888f097b08041d77a888adf6fbb9c025fed686c
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_2MASA1TC32c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c00e210a239ff0ef104886c3a0795cf1fdfb0f974db5f3f2f380357767c91817
+size 1152080
diff --git a/scripts/testv/stvOMASA_2ISM_2MASA1TC32c_ISM1.csv b/scripts/testv/stvOMASA_2ISM_2MASA1TC32c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_2MASA1TC32c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_2ISM_2MASA1TC32c_ISM2.csv b/scripts/testv/stvOMASA_2ISM_2MASA1TC32c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_2MASA1TC32c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_2ISM_2MASA1TC48c.met b/scripts/testv/stvOMASA_2ISM_2MASA1TC48c.met
new file mode 100644
index 0000000000000000000000000000000000000000..64688774087538a671ebfda830ff11b4f836f438
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_2MASA1TC48c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d125a4c4e3989ac55f9c2617f464431feae4ede9b2e15d087d3271c0a4a56303
+size 319800
diff --git a/scripts/testv/stvOMASA_2ISM_2MASA1TC48c.wav b/scripts/testv/stvOMASA_2ISM_2MASA1TC48c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..d644d114d7124c55e464330e9fcbcf439012e252
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_2MASA1TC48c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a44d6de1721b3436053ce7e98a2529cf7ed51087c170b03ca1343a1081e552ac
+size 1728044
diff --git a/scripts/testv/stvOMASA_2ISM_2MASA1TC48c_ISM1.csv b/scripts/testv/stvOMASA_2ISM_2MASA1TC48c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_2MASA1TC48c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_2ISM_2MASA1TC48c_ISM2.csv b/scripts/testv/stvOMASA_2ISM_2MASA1TC48c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_2MASA1TC48c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_2ISM_2MASA2TC16c.met b/scripts/testv/stvOMASA_2ISM_2MASA2TC16c.met
new file mode 100644
index 0000000000000000000000000000000000000000..1b62022af572fc4f198e4212cca88d51913ec3c4
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_2MASA2TC16c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2eb412d646d7a32c77413dea54dc44cf45dc49e6d8c2de19abe4f4b93a91fa4a
+size 159900
diff --git a/scripts/testv/stvOMASA_2ISM_2MASA2TC16c.wav b/scripts/testv/stvOMASA_2ISM_2MASA2TC16c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..aa03f733ec8392a7d42f49de77995d51b250fe42
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_2MASA2TC16c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a73c8201153b5a39b51cd65c7994013bf33da9d2729fdc021e7e0256b0e979c3
+size 384080
diff --git a/scripts/testv/stvOMASA_2ISM_2MASA2TC16c_ISM1.csv b/scripts/testv/stvOMASA_2ISM_2MASA2TC16c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_2MASA2TC16c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_2ISM_2MASA2TC16c_ISM2.csv b/scripts/testv/stvOMASA_2ISM_2MASA2TC16c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_2MASA2TC16c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_2ISM_2MASA2TC32c.met b/scripts/testv/stvOMASA_2ISM_2MASA2TC32c.met
new file mode 100644
index 0000000000000000000000000000000000000000..1b62022af572fc4f198e4212cca88d51913ec3c4
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_2MASA2TC32c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2eb412d646d7a32c77413dea54dc44cf45dc49e6d8c2de19abe4f4b93a91fa4a
+size 159900
diff --git a/scripts/testv/stvOMASA_2ISM_2MASA2TC32c.wav b/scripts/testv/stvOMASA_2ISM_2MASA2TC32c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..95e9dc0d2b86eb01bb34552d677dd0701f20a467
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_2MASA2TC32c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ccf509280a4d55f8ce373d84e831a025bf140e62ccbaa824cec70b7bf014a985
+size 768080
diff --git a/scripts/testv/stvOMASA_2ISM_2MASA2TC32c_ISM1.csv b/scripts/testv/stvOMASA_2ISM_2MASA2TC32c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_2MASA2TC32c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_2ISM_2MASA2TC32c_ISM2.csv b/scripts/testv/stvOMASA_2ISM_2MASA2TC32c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_2MASA2TC32c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_2ISM_2MASA2TC48c.met b/scripts/testv/stvOMASA_2ISM_2MASA2TC48c.met
new file mode 100644
index 0000000000000000000000000000000000000000..1b62022af572fc4f198e4212cca88d51913ec3c4
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_2MASA2TC48c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2eb412d646d7a32c77413dea54dc44cf45dc49e6d8c2de19abe4f4b93a91fa4a
+size 159900
diff --git a/scripts/testv/stvOMASA_2ISM_2MASA2TC48c_ISM1.csv b/scripts/testv/stvOMASA_2ISM_2MASA2TC48c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_2MASA2TC48c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_2ISM_2MASA2TC48c_ISM2.csv b/scripts/testv/stvOMASA_2ISM_2MASA2TC48c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_2ISM_2MASA2TC48c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_3ISM_1MASA1TC16c.met b/scripts/testv/stvOMASA_3ISM_1MASA1TC16c.met
new file mode 100644
index 0000000000000000000000000000000000000000..f2ce23bd2054140614b7d2ad88769d5d2db77990
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_1MASA1TC16c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6349efe3448d28979b80744bcdc29d57f1c025704939b42d7b913d7fc3f23ccc
+size 102300
diff --git a/scripts/testv/stvOMASA_3ISM_1MASA1TC16c.wav b/scripts/testv/stvOMASA_3ISM_1MASA1TC16c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..1374d409b813c1c75adb5d0ada2c206453068a64
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_1MASA1TC16c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:fd9745f6ef3cdcd2a67a40207883baa6e23bc8290441dfb1f4fc7cabd0e72428
+size 384080
diff --git a/scripts/testv/stvOMASA_3ISM_1MASA1TC16c_ISM1.csv b/scripts/testv/stvOMASA_3ISM_1MASA1TC16c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_1MASA1TC16c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_3ISM_1MASA1TC16c_ISM2.csv b/scripts/testv/stvOMASA_3ISM_1MASA1TC16c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_1MASA1TC16c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_3ISM_1MASA1TC16c_ISM3.csv b/scripts/testv/stvOMASA_3ISM_1MASA1TC16c_ISM3.csv
new file mode 100644
index 0000000000000000000000000000000000000000..14eee9b693b536fa2fd22d2813d7f588b8930b06
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_1MASA1TC16c_ISM3.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0
+-177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0
+4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0
+-168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0
+14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0
+-163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0
+19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0
+-153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0
+28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0
+-148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0
+38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0
+-139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0
+48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0
+-124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0
+57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0
+-115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0
+72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0
+-100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0
+86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0
+-86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0
+100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0
+-76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0
+110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0
+-62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0
+124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0
+-52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0
+134.40,33.60,0.28,0.00,1.00,177.60,0.00,0
+-38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0
+144.00,28.80,0.30,0.00,1.00,177.60,0.00,0
+-33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0
+153.60,24.00,0.32,0.00,1.00,177.60,0.00,0
+-24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0
+158.40,19.20,0.34,0.00,1.00,177.60,0.00,0
+-14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0
+168.00,9.60,0.36,0.00,1.00,177.60,0.00,0
+-9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0
+172.80,4.80,0.38,0.00,1.00,177.60,0.00,0
+-0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0
+-177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0
+4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0
+14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0
+19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0
+-158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0
+28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0
+-148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0
+33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0
+-139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0
+43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0
+-129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0
+57.60,38.40,15.47,0.00,1.00,177.60,0.00,0
+-120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0
+67.20,43.20,15.44,0.00,1.00,177.60,0.00,0
+-105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0
+81.60,43.20,15.42,0.00,1.00,177.60,0.00,0
+-91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0
+96.00,43.20,15.40,0.00,1.00,0.00,0.00,0
+-76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0
+110.40,43.20,15.38,0.00,1.00,0.00,0.00,0
+-67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0
+120.00,38.40,15.36,0.00,1.00,0.00,0.00,0
+-52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0
+129.60,38.40,15.34,0.00,1.00,0.00,0.00,0
+-43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0
+144.00,33.60,15.32,0.00,1.00,0.00,0.00,0
+-33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0
+148.80,24.00,15.30,0.00,1.00,0.00,0.00,0
+-24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0
+158.40,19.20,15.27,0.00,1.00,0.00,0.00,0
+-19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0
+168.00,14.40,15.25,0.00,1.00,0.00,0.00,0
+-9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0
+172.80,4.80,15.23,0.00,1.00,0.00,0.00,0
+-4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0
+0.00,0.00,15.21,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0
+9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0
+14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0
+-163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0
+24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0
+-153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0
+28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0
+-144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0
+38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0
+-134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0
+48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0
+-124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0
+62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0
+-115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0
+72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0
+-100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0
+86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0
+-86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0
+96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0
+-76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0
+110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0
+-62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0
+120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0
+-52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0
+134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0
+-43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0
+144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0
+-33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0
+148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0
+-24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0
+158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0
+-19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0
+168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0
+-9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0
+172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0
+4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0
+14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0
+19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0
+-153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0
+28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0
+-148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0
+38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0
+-139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0
+48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0
+-124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0
+57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0
+-115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0
+72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0
+-105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0
+81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0
+-91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0
+96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0
+-76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0
+105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0
+-67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0
+120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0
+-57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0
+129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0
+-43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0
+139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0
+-33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0
+148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0
+-28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0
+158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0
+-19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0
+163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0
+-9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0
+172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0
+0.00,0.00,1.60,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0
+9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0
+14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0
+-158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0
+24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0
+-153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0
+33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0
+-144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0
+43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0
+-134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0
+52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0
+-124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0
+62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0
+-110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0
+72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0
+-100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0
+86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0
+-86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0
+96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0
+-76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0
+110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0
+-67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0
+120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0
+-52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0
+129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0
+-43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0
+139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0
+-33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0
+148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0
+-24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0
+158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0
+-19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0
+168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0
+172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0
+14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0
+-163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0
+24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0
+-153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0
+28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0
+-144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0
+38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0
+-134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0
+48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0
+-124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0
+62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0
+-115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0
+72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0
+-100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0
+81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0
+-91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0
+96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0
+-81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0
+105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0
+-67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0
+115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0
+-57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0
+129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0
+-48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0
+139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0
+-38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0
+148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0
+-28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0
+153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0
+-19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0
+163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0
+-9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0
+172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0
+0.00,0.00,13.61,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0
+9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0
+-168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0
+24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0
+-148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0
+33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0
+-139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0
+43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0
+-129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0
+52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0
+-120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0
+62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0
+-110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0
+76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0
+-100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0
+86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0
+-86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0
+96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0
+-76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0
+105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0
+-67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0
+120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0
+-57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0
+129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0
+-48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0
+139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0
+-38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0
+148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0
+158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0
+-19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0
+163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0
+172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0
+4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0
+14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0
+-163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0
+24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0
+-153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0
+33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0
+-144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0
+43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0
+-134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0
+52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0
+-124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0
+62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0
+-115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0
+72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0
+-100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0
+81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0
+-91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0
+96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0
+-81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0
+105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0
+-67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0
+115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0
+-57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0
+124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0
+-48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0
+134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0
+-38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0
+144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0
+-28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0
+153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0
+-19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0
+163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0
+-14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0
+172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0
+-4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0
+0.00,0.00,3.20,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0
+9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0
+19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0
+24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0
+-148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0
+33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0
+-139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0
+43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0
+-129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0
+52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0
+-120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0
+67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0
+-110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0
+76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0
+-100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0
+86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0
+-86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0
+96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0
+-76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0
+105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0
+-67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0
+115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0
+-57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0
+129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0
+-48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0
+139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0
+-38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0
+148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0
+153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0
+-19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0
+163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0
+172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0
+4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0
+14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0
+24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0
+-153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0
+33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0
+-144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0
+43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0
+-134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0
+52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0
+-124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0
+62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0
+-110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0
+72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0
+-100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0
+81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0
+-91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0
+96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0
+-81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0
+105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0
+-72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0
+115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0
+-57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0
+124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0
+-48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0
+134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0
+-38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0
+144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0
+-28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0
+153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0
+-24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0
+163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0
+-14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0
+172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,12.01,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0
+9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0
+-158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0
+28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0
+-148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0
+38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0
+-139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0
+48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0
+-129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0
+57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0
+-120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0
+67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0
+-110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0
+76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0
+-100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0
+86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0
+-86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0
+96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0
+-76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0
+105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0
+-67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0
+115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0
+-57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0
+124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0
+-48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0
+134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0
+-38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0
+144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0
+-28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0
+153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0
+-19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0
+163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0
+172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0
+4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0
+14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0
+24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0
+-148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0
+33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0
+-139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0
+43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0
+-129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0
+52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0
+-120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0
+62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0
+-110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0
+72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0
+-100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0
+81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0
+-91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0
+96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0
+-81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0
+105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0
+-72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0
+115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0
+-62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0
+124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0
+-52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0
+134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0
+-43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0
+144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0
+-33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0
+153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0
+-24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0
+163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0
+172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0
+0.00,0.00,4.81,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0
+9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0
+19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0
+28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0
+-148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0
+38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0
+-139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0
+48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0
+-129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0
+57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0
+-120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0
+67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0
+-110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0
+76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0
+-100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0
+86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0
+-86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0
+96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0
+-76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0
+105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0
+-67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0
+115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0
+-57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0
+124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0
+-48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0
+134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0
+-38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0
+144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0
+-28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0
+153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0
+-19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0
+163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0
+-9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0
+172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0
+4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0
+14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0
+24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0
+-148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0
+33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0
+-139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0
+43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0
+-129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0
+52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0
+-120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0
+62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0
+-110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0
+72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0
+-100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0
+81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0
+-91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0
+96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0
+-81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0
+105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0
+-72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0
+115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0
+-62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0
+124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0
+-52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0
+134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0
+-43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0
+144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0
+-33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0
+153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0
+-24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0
+163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0
+172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+0.00,0.00,10.40,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0
+9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0
+19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0
+28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0
+-148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0
+38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0
+-139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0
+48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0
+-129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0
+57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0
+-120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0
+67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0
+-110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0
+76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0
+-100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0
+86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0
+-86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0
+96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0
+-76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0
+105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0
+-67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0
+115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0
+-57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0
+124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0
+-48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0
+134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0
+-38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0
+144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0
+-28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0
+153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0
+163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0
+-9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0
+172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0
+4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0
+14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0
+24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0
+33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0
+-139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0
+43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0
+-129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0
+52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0
+-120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0
+62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0
+-110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0
+72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0
+-100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0
+81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0
+-91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0
+96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0
+-81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0
+105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0
+-72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0
+115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0
+-62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0
+124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0
+-52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0
+134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0
+-43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0
+144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0
+-33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0
+153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0
+-24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0
+163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0
+172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,6.41,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0
+9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0
+19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0
+-158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0
+28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0
+-148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0
+38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0
+-139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0
+48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0
+-129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0
+57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0
+-120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0
+67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0
+-110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0
+76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0
+-100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0
+86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0
+-86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0
+96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0
+-76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0
+105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0
+-67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0
+115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0
+-57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0
+124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0
+-48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0
+134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0
+-38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0
+144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0
+-28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0
+153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0
+163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0
+172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0
+4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0
+14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0
+-158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0
+24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0
+33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0
+-139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0
+43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0
+-129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0
+52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0
+-120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0
+62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0
+-110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0
+72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0
+-100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0
+81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0
+-91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0
+96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0
+-81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0
+105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0
+-72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0
+115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0
+-62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0
+124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0
+-52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0
+134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0
+-43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0
+144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0
+-33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0
+153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0
+-24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0
+163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0
+-14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0
+172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.80,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0
+9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0
+19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0
+-158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0
+28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0
+-148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0
+38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0
+-139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0
+48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0
+-129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0
+57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0
+-120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0
+67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0
+-110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0
+76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0
+-100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0
+86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0
+-86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0
+96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0
+-76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0
+105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0
+-67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0
+115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0
+-57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0
+124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0
+-48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0
+134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0
+-38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0
+144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0
+-28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0
+153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0
+-19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0
+163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0
+172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0
+-0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0
+4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0
+-168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0
+14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0
+-158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0
+24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0
+-148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0
+33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0
+-139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0
+43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0
+-129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0
+52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0
+-120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0
+62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0
+-110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0
+72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0
+-100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0
+81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0
+-91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0
+96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0
+-81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0
+105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0
+-72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0
+115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0
+-62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0
+124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0
+-52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0
+134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0
+-43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0
+144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0
+-33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0
+153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0
+-24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0
+163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0
+-14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0
+172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.01,0.00,1.00,0.00,0.00,0
+-177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0
+-168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0
+19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0
+-158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0
+28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0
+-148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0
+38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0
+-139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0
+48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0
+-129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0
+57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0
+-120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0
+67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0
+-110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0
+76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0
+-100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0
+86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0
+-86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0
+96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0
+-76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0
+105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0
+-67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0
+115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0
+-57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0
+124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0
+-48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0
+134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0
+-38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0
+144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0
+-28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0
+153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0
+-19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0
+163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0
+172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0
+14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0
+-158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0
+24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0
+-148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0
+33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0
+-139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0
+43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0
+-129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0
+52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0
+-120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0
+62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0
+-110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0
+72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0
+-100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0
+81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0
+-91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0
+96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0
+-81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0
+105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0
+-72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0
+115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0
+-62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0
+124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0
+-52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0
+134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0
+-43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0
+144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0
+-33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0
+153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0
+-24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0
+163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0
+-4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0
+0.00,0.00,7.20,0.00,1.00,0.00,0.00,0
+-177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0
+-168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0
+19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0
+38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0
+-139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0
+48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0
+-129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0
+57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0
+-120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0
+67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0
+-110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0
+76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0
+-100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0
+86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0
+-86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0
+96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0
+-76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0
+105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0
+-67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0
+115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0
+-57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0
+124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0
+-48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0
+134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0
+-38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0
+144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0
+-19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0
+163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0
+14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0
+-148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0
+33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0
+-139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0
+43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0
+-129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0
+52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0
+-120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0
+62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0
+72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0
+-100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0
+81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0
+-91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0
+96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0
+-81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0
+105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0
+-72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0
+115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0
+-62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0
+124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0
+-52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0
+134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0
+-43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0
+144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0
+-33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0
+153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0
+0.00,0.00,9.61,0.00,1.00,0.00,0.00,0
+-177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0
+48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0
+-129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0
+57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0
+-120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0
+67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0
+-110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0
+76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0
+-100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0
+86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0
+-86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0
+96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0
+-76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0
+105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0
+-67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0
+115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0
+-57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0
+124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0
+-48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0
+134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0
+163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0
+-9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0
+-148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0
+33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0
+-139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0
+43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0
+-129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0
+52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0
+-120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0
+62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0
+72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0
+-100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0
+81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0
+-91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0
+96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0
+-81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0
+105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0
+-72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0
+115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0
+-62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0
+124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0
+-52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0
+134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0
+-43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0
+144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0
+-33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0
+153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0
+-14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0
+172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0
+0.00,0.00,5.60,0.00,1.00,0.00,0.00,0
+-177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0
+-158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0
+28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0
+-148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0
+48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0
+-129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0
+57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0
+-120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0
+67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0
+-110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0
+76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0
+-100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0
+86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0
+-86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0
+96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0
+-76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0
+105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0
+-67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0
+115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0
+-57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0
+124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0
+-48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0
+134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0
+-28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0
+153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0
+-158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0
+-148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0
+33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0
+-139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0
+43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0
+-129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0
+52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0
+-120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0
+62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0
+-110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0
+72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0
+-100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0
+81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0
+-91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0
+96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0
+-81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0
+105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0
+-72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0
+115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0
+-62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0
+124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0
+-52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0
+134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0
+-43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0
+144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0
+-33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0
+153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0
+0.00,0.00,11.21,0.00,1.00,0.00,0.00,0
+-177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0
+28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0
+-148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0
+38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0
+-139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0
+48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0
+57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0
+-120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0
+67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0
+-110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0
+76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0
+-100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0
+86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0
+-86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0
+96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0
+-76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0
+105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0
+-67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0
+115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0
+-57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0
+124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0
+-48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0
+134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0
+-38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0
+144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0
+-28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0
+153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0
+-148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0
+-139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0
+43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0
+-129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0
+52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0
+-120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0
+62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0
+-110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0
+72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0
+-100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0
+81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0
+-91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0
+96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0
+-81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0
+105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0
+-72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0
+115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0
+-62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0
+124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0
+-52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0
+134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0
+-43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0
+-33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0
+153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0
+-24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0
+163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,3.99,0.00,1.00,0.00,0.00,0
+-177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0
+19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0
+-148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0
+33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0
+43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0
+52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0
+-120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0
+62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0
+-110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0
+76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0
+-100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0
+86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0
+-86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0
+96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0
+-76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0
+105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0
+-67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0
+120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0
+-57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0
+-48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0
+139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0
+148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0
+158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0
+163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0
+43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0
+-134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0
+-124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0
+62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0
+-110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0
+72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0
+-100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0
+81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0
+-91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0
+96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0
+-81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0
+105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0
+-72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0
+115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0
+-57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0
+124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0
+-48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0
+134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0
+-38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0
+-28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0
+-24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,12.82,0.00,1.00,0.00,0.00,0
+-177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0
+-148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0
+33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0
+-129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0
+-120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0
+62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0
+-110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0
+76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0
+-100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0
+86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0
+-86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0
+96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0
+-76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0
+110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0
+-67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0
+120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0
+-57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0
+-48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0
+-163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0
+33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0
+43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0
+-134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0
+62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0
+-115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0
+72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0
+-100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0
+81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0
+-91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0
+96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0
+-81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0
+105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0
+-67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0
+115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0
+-57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0
+124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0
+-48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0
+134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0
+-38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0
+144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0
+-14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,2.39,0.00,1.00,0.00,0.00,0
+-177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0
+33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0
+-144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0
+-134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0
+62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0
+-110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0
+72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0
+-100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0
+86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0
+-86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0
+96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0
+-76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0
+110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0
+-67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0
+120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0
+-52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0
+129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0
+-19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0
+28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0
+-144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0
+38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0
+-134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0
+48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0
+57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0
+-115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0
+72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0
+-105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0
+81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0
+-91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0
+96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0
+-81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0
+105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0
+-67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0
+120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0
+-57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0
+129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0
+-48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0
+139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0
+-38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0
+158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0
+0.00,0.00,14.42,0.00,1.00,0.00,0.00,0
+-177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0
+-163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0
+24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0
+28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0
+-144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0
+38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0
+-134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0
+48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0
+62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0
+-115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0
+72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0
+86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0
+-86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0
+96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0
+-76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0
+110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0
+-62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0
+120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0
+-52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0
+134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0
+158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0
+-148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0
+38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0
+-139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0
+48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0
+-129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0
+-115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0
+67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0
+-105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0
+81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0
+-91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0
+96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0
+105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0
+-67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0
+120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0
+-52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0
+129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0
+139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0
+163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0
+0.00,0.00,0.79,0.00,1.00,0.00,0.00,0
+-177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0
+4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0
+-163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0
+19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0
+-153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0
+28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0
+-148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0
+38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0
+-139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0
+48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0
+-124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0
+57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0
+-115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0
+72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0
+86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0
+-86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0
+100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0
+-76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0
+110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0
+-62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0
+124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0
+-48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0
+134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0
+-38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0
+-28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0
+-24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0
+163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0
+168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0
+9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0
+-158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0
+-148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0
+33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0
+-139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0
+43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0
+-129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0
+-120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0
+67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0
+-105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0
+81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0
+-91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0
+96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0
+110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0
+-67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0
+120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0
+-52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0
+134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0
+144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0
+153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0
+-24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0
+-19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0
+168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0
diff --git a/scripts/testv/stvOMASA_3ISM_1MASA1TC32c.met b/scripts/testv/stvOMASA_3ISM_1MASA1TC32c.met
new file mode 100644
index 0000000000000000000000000000000000000000..f2ce23bd2054140614b7d2ad88769d5d2db77990
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_1MASA1TC32c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6349efe3448d28979b80744bcdc29d57f1c025704939b42d7b913d7fc3f23ccc
+size 102300
diff --git a/scripts/testv/stvOMASA_3ISM_1MASA1TC32c_ISM1.csv b/scripts/testv/stvOMASA_3ISM_1MASA1TC32c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_1MASA1TC32c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_3ISM_1MASA1TC32c_ISM2.csv b/scripts/testv/stvOMASA_3ISM_1MASA1TC32c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_1MASA1TC32c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_3ISM_1MASA1TC32c_ISM3.csv b/scripts/testv/stvOMASA_3ISM_1MASA1TC32c_ISM3.csv
new file mode 100644
index 0000000000000000000000000000000000000000..14eee9b693b536fa2fd22d2813d7f588b8930b06
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_1MASA1TC32c_ISM3.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0
+-177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0
+4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0
+-168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0
+14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0
+-163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0
+19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0
+-153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0
+28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0
+-148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0
+38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0
+-139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0
+48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0
+-124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0
+57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0
+-115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0
+72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0
+-100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0
+86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0
+-86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0
+100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0
+-76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0
+110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0
+-62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0
+124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0
+-52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0
+134.40,33.60,0.28,0.00,1.00,177.60,0.00,0
+-38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0
+144.00,28.80,0.30,0.00,1.00,177.60,0.00,0
+-33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0
+153.60,24.00,0.32,0.00,1.00,177.60,0.00,0
+-24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0
+158.40,19.20,0.34,0.00,1.00,177.60,0.00,0
+-14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0
+168.00,9.60,0.36,0.00,1.00,177.60,0.00,0
+-9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0
+172.80,4.80,0.38,0.00,1.00,177.60,0.00,0
+-0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0
+-177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0
+4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0
+14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0
+19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0
+-158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0
+28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0
+-148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0
+33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0
+-139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0
+43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0
+-129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0
+57.60,38.40,15.47,0.00,1.00,177.60,0.00,0
+-120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0
+67.20,43.20,15.44,0.00,1.00,177.60,0.00,0
+-105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0
+81.60,43.20,15.42,0.00,1.00,177.60,0.00,0
+-91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0
+96.00,43.20,15.40,0.00,1.00,0.00,0.00,0
+-76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0
+110.40,43.20,15.38,0.00,1.00,0.00,0.00,0
+-67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0
+120.00,38.40,15.36,0.00,1.00,0.00,0.00,0
+-52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0
+129.60,38.40,15.34,0.00,1.00,0.00,0.00,0
+-43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0
+144.00,33.60,15.32,0.00,1.00,0.00,0.00,0
+-33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0
+148.80,24.00,15.30,0.00,1.00,0.00,0.00,0
+-24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0
+158.40,19.20,15.27,0.00,1.00,0.00,0.00,0
+-19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0
+168.00,14.40,15.25,0.00,1.00,0.00,0.00,0
+-9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0
+172.80,4.80,15.23,0.00,1.00,0.00,0.00,0
+-4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0
+0.00,0.00,15.21,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0
+9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0
+14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0
+-163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0
+24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0
+-153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0
+28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0
+-144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0
+38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0
+-134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0
+48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0
+-124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0
+62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0
+-115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0
+72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0
+-100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0
+86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0
+-86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0
+96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0
+-76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0
+110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0
+-62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0
+120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0
+-52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0
+134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0
+-43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0
+144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0
+-33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0
+148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0
+-24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0
+158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0
+-19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0
+168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0
+-9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0
+172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0
+4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0
+14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0
+19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0
+-153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0
+28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0
+-148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0
+38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0
+-139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0
+48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0
+-124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0
+57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0
+-115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0
+72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0
+-105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0
+81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0
+-91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0
+96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0
+-76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0
+105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0
+-67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0
+120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0
+-57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0
+129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0
+-43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0
+139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0
+-33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0
+148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0
+-28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0
+158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0
+-19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0
+163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0
+-9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0
+172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0
+0.00,0.00,1.60,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0
+9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0
+14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0
+-158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0
+24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0
+-153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0
+33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0
+-144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0
+43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0
+-134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0
+52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0
+-124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0
+62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0
+-110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0
+72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0
+-100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0
+86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0
+-86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0
+96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0
+-76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0
+110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0
+-67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0
+120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0
+-52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0
+129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0
+-43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0
+139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0
+-33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0
+148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0
+-24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0
+158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0
+-19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0
+168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0
+172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0
+14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0
+-163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0
+24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0
+-153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0
+28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0
+-144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0
+38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0
+-134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0
+48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0
+-124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0
+62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0
+-115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0
+72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0
+-100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0
+81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0
+-91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0
+96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0
+-81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0
+105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0
+-67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0
+115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0
+-57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0
+129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0
+-48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0
+139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0
+-38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0
+148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0
+-28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0
+153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0
+-19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0
+163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0
+-9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0
+172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0
+0.00,0.00,13.61,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0
+9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0
+-168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0
+24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0
+-148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0
+33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0
+-139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0
+43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0
+-129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0
+52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0
+-120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0
+62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0
+-110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0
+76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0
+-100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0
+86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0
+-86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0
+96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0
+-76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0
+105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0
+-67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0
+120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0
+-57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0
+129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0
+-48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0
+139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0
+-38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0
+148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0
+158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0
+-19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0
+163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0
+172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0
+4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0
+14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0
+-163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0
+24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0
+-153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0
+33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0
+-144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0
+43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0
+-134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0
+52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0
+-124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0
+62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0
+-115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0
+72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0
+-100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0
+81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0
+-91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0
+96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0
+-81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0
+105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0
+-67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0
+115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0
+-57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0
+124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0
+-48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0
+134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0
+-38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0
+144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0
+-28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0
+153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0
+-19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0
+163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0
+-14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0
+172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0
+-4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0
+0.00,0.00,3.20,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0
+9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0
+19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0
+24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0
+-148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0
+33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0
+-139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0
+43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0
+-129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0
+52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0
+-120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0
+67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0
+-110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0
+76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0
+-100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0
+86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0
+-86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0
+96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0
+-76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0
+105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0
+-67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0
+115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0
+-57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0
+129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0
+-48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0
+139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0
+-38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0
+148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0
+153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0
+-19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0
+163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0
+172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0
+4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0
+14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0
+24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0
+-153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0
+33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0
+-144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0
+43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0
+-134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0
+52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0
+-124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0
+62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0
+-110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0
+72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0
+-100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0
+81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0
+-91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0
+96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0
+-81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0
+105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0
+-72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0
+115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0
+-57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0
+124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0
+-48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0
+134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0
+-38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0
+144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0
+-28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0
+153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0
+-24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0
+163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0
+-14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0
+172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,12.01,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0
+9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0
+-158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0
+28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0
+-148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0
+38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0
+-139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0
+48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0
+-129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0
+57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0
+-120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0
+67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0
+-110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0
+76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0
+-100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0
+86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0
+-86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0
+96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0
+-76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0
+105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0
+-67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0
+115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0
+-57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0
+124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0
+-48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0
+134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0
+-38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0
+144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0
+-28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0
+153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0
+-19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0
+163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0
+172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0
+4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0
+14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0
+24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0
+-148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0
+33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0
+-139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0
+43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0
+-129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0
+52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0
+-120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0
+62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0
+-110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0
+72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0
+-100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0
+81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0
+-91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0
+96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0
+-81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0
+105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0
+-72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0
+115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0
+-62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0
+124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0
+-52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0
+134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0
+-43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0
+144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0
+-33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0
+153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0
+-24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0
+163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0
+172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0
+0.00,0.00,4.81,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0
+9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0
+19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0
+28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0
+-148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0
+38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0
+-139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0
+48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0
+-129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0
+57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0
+-120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0
+67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0
+-110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0
+76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0
+-100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0
+86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0
+-86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0
+96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0
+-76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0
+105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0
+-67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0
+115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0
+-57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0
+124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0
+-48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0
+134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0
+-38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0
+144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0
+-28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0
+153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0
+-19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0
+163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0
+-9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0
+172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0
+4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0
+14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0
+24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0
+-148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0
+33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0
+-139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0
+43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0
+-129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0
+52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0
+-120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0
+62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0
+-110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0
+72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0
+-100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0
+81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0
+-91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0
+96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0
+-81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0
+105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0
+-72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0
+115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0
+-62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0
+124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0
+-52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0
+134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0
+-43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0
+144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0
+-33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0
+153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0
+-24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0
+163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0
+172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+0.00,0.00,10.40,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0
+9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0
+19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0
+28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0
+-148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0
+38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0
+-139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0
+48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0
+-129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0
+57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0
+-120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0
+67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0
+-110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0
+76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0
+-100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0
+86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0
+-86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0
+96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0
+-76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0
+105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0
+-67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0
+115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0
+-57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0
+124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0
+-48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0
+134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0
+-38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0
+144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0
+-28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0
+153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0
+163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0
+-9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0
+172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0
+4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0
+14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0
+24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0
+33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0
+-139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0
+43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0
+-129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0
+52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0
+-120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0
+62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0
+-110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0
+72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0
+-100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0
+81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0
+-91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0
+96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0
+-81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0
+105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0
+-72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0
+115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0
+-62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0
+124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0
+-52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0
+134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0
+-43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0
+144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0
+-33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0
+153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0
+-24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0
+163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0
+172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,6.41,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0
+9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0
+19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0
+-158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0
+28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0
+-148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0
+38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0
+-139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0
+48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0
+-129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0
+57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0
+-120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0
+67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0
+-110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0
+76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0
+-100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0
+86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0
+-86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0
+96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0
+-76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0
+105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0
+-67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0
+115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0
+-57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0
+124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0
+-48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0
+134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0
+-38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0
+144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0
+-28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0
+153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0
+163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0
+172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0
+4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0
+14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0
+-158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0
+24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0
+33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0
+-139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0
+43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0
+-129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0
+52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0
+-120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0
+62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0
+-110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0
+72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0
+-100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0
+81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0
+-91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0
+96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0
+-81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0
+105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0
+-72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0
+115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0
+-62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0
+124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0
+-52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0
+134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0
+-43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0
+144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0
+-33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0
+153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0
+-24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0
+163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0
+-14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0
+172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.80,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0
+9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0
+19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0
+-158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0
+28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0
+-148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0
+38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0
+-139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0
+48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0
+-129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0
+57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0
+-120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0
+67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0
+-110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0
+76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0
+-100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0
+86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0
+-86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0
+96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0
+-76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0
+105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0
+-67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0
+115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0
+-57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0
+124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0
+-48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0
+134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0
+-38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0
+144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0
+-28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0
+153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0
+-19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0
+163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0
+172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0
+-0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0
+4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0
+-168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0
+14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0
+-158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0
+24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0
+-148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0
+33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0
+-139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0
+43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0
+-129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0
+52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0
+-120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0
+62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0
+-110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0
+72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0
+-100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0
+81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0
+-91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0
+96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0
+-81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0
+105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0
+-72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0
+115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0
+-62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0
+124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0
+-52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0
+134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0
+-43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0
+144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0
+-33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0
+153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0
+-24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0
+163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0
+-14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0
+172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.01,0.00,1.00,0.00,0.00,0
+-177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0
+-168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0
+19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0
+-158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0
+28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0
+-148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0
+38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0
+-139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0
+48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0
+-129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0
+57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0
+-120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0
+67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0
+-110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0
+76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0
+-100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0
+86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0
+-86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0
+96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0
+-76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0
+105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0
+-67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0
+115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0
+-57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0
+124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0
+-48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0
+134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0
+-38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0
+144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0
+-28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0
+153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0
+-19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0
+163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0
+172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0
+14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0
+-158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0
+24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0
+-148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0
+33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0
+-139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0
+43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0
+-129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0
+52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0
+-120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0
+62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0
+-110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0
+72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0
+-100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0
+81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0
+-91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0
+96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0
+-81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0
+105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0
+-72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0
+115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0
+-62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0
+124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0
+-52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0
+134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0
+-43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0
+144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0
+-33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0
+153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0
+-24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0
+163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0
+-4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0
+0.00,0.00,7.20,0.00,1.00,0.00,0.00,0
+-177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0
+-168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0
+19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0
+38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0
+-139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0
+48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0
+-129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0
+57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0
+-120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0
+67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0
+-110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0
+76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0
+-100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0
+86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0
+-86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0
+96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0
+-76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0
+105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0
+-67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0
+115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0
+-57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0
+124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0
+-48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0
+134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0
+-38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0
+144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0
+-19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0
+163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0
+14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0
+-148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0
+33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0
+-139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0
+43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0
+-129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0
+52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0
+-120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0
+62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0
+72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0
+-100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0
+81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0
+-91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0
+96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0
+-81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0
+105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0
+-72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0
+115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0
+-62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0
+124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0
+-52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0
+134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0
+-43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0
+144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0
+-33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0
+153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0
+0.00,0.00,9.61,0.00,1.00,0.00,0.00,0
+-177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0
+48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0
+-129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0
+57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0
+-120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0
+67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0
+-110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0
+76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0
+-100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0
+86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0
+-86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0
+96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0
+-76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0
+105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0
+-67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0
+115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0
+-57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0
+124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0
+-48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0
+134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0
+163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0
+-9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0
+-148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0
+33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0
+-139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0
+43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0
+-129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0
+52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0
+-120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0
+62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0
+72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0
+-100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0
+81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0
+-91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0
+96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0
+-81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0
+105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0
+-72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0
+115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0
+-62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0
+124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0
+-52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0
+134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0
+-43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0
+144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0
+-33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0
+153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0
+-14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0
+172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0
+0.00,0.00,5.60,0.00,1.00,0.00,0.00,0
+-177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0
+-158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0
+28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0
+-148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0
+48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0
+-129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0
+57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0
+-120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0
+67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0
+-110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0
+76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0
+-100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0
+86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0
+-86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0
+96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0
+-76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0
+105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0
+-67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0
+115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0
+-57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0
+124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0
+-48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0
+134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0
+-28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0
+153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0
+-158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0
+-148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0
+33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0
+-139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0
+43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0
+-129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0
+52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0
+-120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0
+62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0
+-110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0
+72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0
+-100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0
+81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0
+-91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0
+96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0
+-81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0
+105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0
+-72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0
+115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0
+-62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0
+124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0
+-52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0
+134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0
+-43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0
+144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0
+-33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0
+153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0
+0.00,0.00,11.21,0.00,1.00,0.00,0.00,0
+-177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0
+28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0
+-148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0
+38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0
+-139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0
+48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0
+57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0
+-120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0
+67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0
+-110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0
+76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0
+-100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0
+86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0
+-86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0
+96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0
+-76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0
+105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0
+-67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0
+115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0
+-57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0
+124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0
+-48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0
+134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0
+-38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0
+144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0
+-28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0
+153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0
+-148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0
+-139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0
+43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0
+-129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0
+52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0
+-120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0
+62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0
+-110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0
+72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0
+-100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0
+81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0
+-91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0
+96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0
+-81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0
+105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0
+-72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0
+115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0
+-62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0
+124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0
+-52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0
+134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0
+-43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0
+-33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0
+153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0
+-24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0
+163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,3.99,0.00,1.00,0.00,0.00,0
+-177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0
+19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0
+-148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0
+33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0
+43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0
+52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0
+-120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0
+62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0
+-110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0
+76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0
+-100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0
+86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0
+-86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0
+96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0
+-76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0
+105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0
+-67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0
+120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0
+-57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0
+-48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0
+139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0
+148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0
+158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0
+163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0
+43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0
+-134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0
+-124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0
+62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0
+-110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0
+72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0
+-100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0
+81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0
+-91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0
+96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0
+-81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0
+105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0
+-72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0
+115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0
+-57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0
+124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0
+-48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0
+134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0
+-38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0
+-28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0
+-24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,12.82,0.00,1.00,0.00,0.00,0
+-177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0
+-148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0
+33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0
+-129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0
+-120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0
+62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0
+-110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0
+76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0
+-100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0
+86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0
+-86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0
+96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0
+-76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0
+110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0
+-67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0
+120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0
+-57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0
+-48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0
+-163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0
+33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0
+43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0
+-134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0
+62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0
+-115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0
+72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0
+-100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0
+81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0
+-91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0
+96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0
+-81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0
+105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0
+-67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0
+115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0
+-57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0
+124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0
+-48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0
+134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0
+-38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0
+144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0
+-14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,2.39,0.00,1.00,0.00,0.00,0
+-177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0
+33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0
+-144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0
+-134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0
+62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0
+-110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0
+72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0
+-100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0
+86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0
+-86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0
+96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0
+-76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0
+110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0
+-67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0
+120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0
+-52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0
+129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0
+-19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0
+28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0
+-144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0
+38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0
+-134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0
+48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0
+57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0
+-115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0
+72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0
+-105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0
+81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0
+-91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0
+96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0
+-81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0
+105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0
+-67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0
+120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0
+-57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0
+129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0
+-48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0
+139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0
+-38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0
+158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0
+0.00,0.00,14.42,0.00,1.00,0.00,0.00,0
+-177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0
+-163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0
+24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0
+28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0
+-144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0
+38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0
+-134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0
+48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0
+62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0
+-115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0
+72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0
+86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0
+-86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0
+96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0
+-76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0
+110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0
+-62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0
+120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0
+-52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0
+134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0
+158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0
+-148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0
+38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0
+-139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0
+48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0
+-129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0
+-115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0
+67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0
+-105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0
+81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0
+-91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0
+96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0
+105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0
+-67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0
+120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0
+-52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0
+129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0
+139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0
+163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0
+0.00,0.00,0.79,0.00,1.00,0.00,0.00,0
+-177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0
+4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0
+-163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0
+19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0
+-153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0
+28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0
+-148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0
+38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0
+-139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0
+48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0
+-124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0
+57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0
+-115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0
+72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0
+86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0
+-86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0
+100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0
+-76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0
+110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0
+-62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0
+124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0
+-48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0
+134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0
+-38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0
+-28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0
+-24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0
+163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0
+168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0
+9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0
+-158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0
+-148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0
+33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0
+-139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0
+43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0
+-129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0
+-120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0
+67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0
+-105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0
+81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0
+-91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0
+96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0
+110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0
+-67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0
+120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0
+-52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0
+134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0
+144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0
+153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0
+-24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0
+-19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0
+168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0
diff --git a/scripts/testv/stvOMASA_3ISM_1MASA1TC48c.met b/scripts/testv/stvOMASA_3ISM_1MASA1TC48c.met
new file mode 100644
index 0000000000000000000000000000000000000000..f2ce23bd2054140614b7d2ad88769d5d2db77990
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_1MASA1TC48c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6349efe3448d28979b80744bcdc29d57f1c025704939b42d7b913d7fc3f23ccc
+size 102300
diff --git a/scripts/testv/stvOMASA_3ISM_1MASA1TC48c.wav b/scripts/testv/stvOMASA_3ISM_1MASA1TC48c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..9dad15472ae70197c104123cc5e1b4eda462ad7d
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_1MASA1TC48c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:73cd441451698055767d5d8f2bfa2566747d154657468284b5f2018872ed8165
+size 1152044
diff --git a/scripts/testv/stvOMASA_3ISM_1MASA1TC48c_ISM1.csv b/scripts/testv/stvOMASA_3ISM_1MASA1TC48c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_1MASA1TC48c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_3ISM_1MASA1TC48c_ISM2.csv b/scripts/testv/stvOMASA_3ISM_1MASA1TC48c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_1MASA1TC48c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_3ISM_1MASA1TC48c_ISM3.csv b/scripts/testv/stvOMASA_3ISM_1MASA1TC48c_ISM3.csv
new file mode 100644
index 0000000000000000000000000000000000000000..14eee9b693b536fa2fd22d2813d7f588b8930b06
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_1MASA1TC48c_ISM3.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0
+-177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0
+4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0
+-168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0
+14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0
+-163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0
+19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0
+-153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0
+28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0
+-148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0
+38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0
+-139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0
+48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0
+-124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0
+57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0
+-115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0
+72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0
+-100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0
+86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0
+-86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0
+100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0
+-76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0
+110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0
+-62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0
+124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0
+-52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0
+134.40,33.60,0.28,0.00,1.00,177.60,0.00,0
+-38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0
+144.00,28.80,0.30,0.00,1.00,177.60,0.00,0
+-33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0
+153.60,24.00,0.32,0.00,1.00,177.60,0.00,0
+-24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0
+158.40,19.20,0.34,0.00,1.00,177.60,0.00,0
+-14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0
+168.00,9.60,0.36,0.00,1.00,177.60,0.00,0
+-9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0
+172.80,4.80,0.38,0.00,1.00,177.60,0.00,0
+-0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0
+-177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0
+4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0
+14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0
+19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0
+-158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0
+28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0
+-148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0
+33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0
+-139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0
+43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0
+-129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0
+57.60,38.40,15.47,0.00,1.00,177.60,0.00,0
+-120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0
+67.20,43.20,15.44,0.00,1.00,177.60,0.00,0
+-105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0
+81.60,43.20,15.42,0.00,1.00,177.60,0.00,0
+-91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0
+96.00,43.20,15.40,0.00,1.00,0.00,0.00,0
+-76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0
+110.40,43.20,15.38,0.00,1.00,0.00,0.00,0
+-67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0
+120.00,38.40,15.36,0.00,1.00,0.00,0.00,0
+-52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0
+129.60,38.40,15.34,0.00,1.00,0.00,0.00,0
+-43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0
+144.00,33.60,15.32,0.00,1.00,0.00,0.00,0
+-33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0
+148.80,24.00,15.30,0.00,1.00,0.00,0.00,0
+-24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0
+158.40,19.20,15.27,0.00,1.00,0.00,0.00,0
+-19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0
+168.00,14.40,15.25,0.00,1.00,0.00,0.00,0
+-9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0
+172.80,4.80,15.23,0.00,1.00,0.00,0.00,0
+-4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0
+0.00,0.00,15.21,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0
+9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0
+14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0
+-163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0
+24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0
+-153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0
+28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0
+-144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0
+38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0
+-134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0
+48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0
+-124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0
+62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0
+-115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0
+72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0
+-100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0
+86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0
+-86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0
+96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0
+-76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0
+110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0
+-62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0
+120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0
+-52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0
+134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0
+-43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0
+144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0
+-33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0
+148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0
+-24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0
+158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0
+-19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0
+168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0
+-9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0
+172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0
+4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0
+14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0
+19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0
+-153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0
+28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0
+-148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0
+38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0
+-139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0
+48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0
+-124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0
+57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0
+-115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0
+72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0
+-105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0
+81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0
+-91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0
+96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0
+-76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0
+105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0
+-67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0
+120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0
+-57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0
+129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0
+-43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0
+139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0
+-33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0
+148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0
+-28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0
+158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0
+-19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0
+163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0
+-9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0
+172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0
+0.00,0.00,1.60,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0
+9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0
+14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0
+-158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0
+24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0
+-153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0
+33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0
+-144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0
+43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0
+-134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0
+52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0
+-124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0
+62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0
+-110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0
+72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0
+-100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0
+86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0
+-86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0
+96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0
+-76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0
+110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0
+-67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0
+120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0
+-52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0
+129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0
+-43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0
+139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0
+-33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0
+148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0
+-24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0
+158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0
+-19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0
+168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0
+172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0
+14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0
+-163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0
+24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0
+-153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0
+28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0
+-144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0
+38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0
+-134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0
+48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0
+-124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0
+62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0
+-115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0
+72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0
+-100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0
+81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0
+-91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0
+96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0
+-81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0
+105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0
+-67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0
+115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0
+-57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0
+129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0
+-48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0
+139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0
+-38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0
+148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0
+-28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0
+153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0
+-19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0
+163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0
+-9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0
+172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0
+0.00,0.00,13.61,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0
+9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0
+-168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0
+24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0
+-148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0
+33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0
+-139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0
+43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0
+-129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0
+52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0
+-120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0
+62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0
+-110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0
+76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0
+-100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0
+86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0
+-86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0
+96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0
+-76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0
+105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0
+-67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0
+120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0
+-57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0
+129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0
+-48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0
+139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0
+-38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0
+148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0
+158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0
+-19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0
+163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0
+172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0
+4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0
+14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0
+-163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0
+24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0
+-153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0
+33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0
+-144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0
+43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0
+-134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0
+52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0
+-124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0
+62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0
+-115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0
+72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0
+-100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0
+81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0
+-91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0
+96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0
+-81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0
+105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0
+-67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0
+115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0
+-57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0
+124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0
+-48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0
+134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0
+-38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0
+144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0
+-28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0
+153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0
+-19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0
+163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0
+-14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0
+172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0
+-4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0
+0.00,0.00,3.20,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0
+9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0
+19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0
+24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0
+-148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0
+33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0
+-139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0
+43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0
+-129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0
+52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0
+-120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0
+67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0
+-110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0
+76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0
+-100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0
+86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0
+-86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0
+96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0
+-76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0
+105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0
+-67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0
+115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0
+-57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0
+129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0
+-48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0
+139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0
+-38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0
+148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0
+153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0
+-19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0
+163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0
+172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0
+4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0
+14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0
+24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0
+-153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0
+33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0
+-144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0
+43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0
+-134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0
+52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0
+-124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0
+62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0
+-110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0
+72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0
+-100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0
+81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0
+-91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0
+96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0
+-81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0
+105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0
+-72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0
+115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0
+-57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0
+124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0
+-48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0
+134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0
+-38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0
+144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0
+-28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0
+153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0
+-24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0
+163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0
+-14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0
+172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,12.01,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0
+9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0
+-158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0
+28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0
+-148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0
+38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0
+-139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0
+48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0
+-129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0
+57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0
+-120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0
+67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0
+-110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0
+76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0
+-100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0
+86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0
+-86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0
+96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0
+-76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0
+105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0
+-67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0
+115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0
+-57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0
+124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0
+-48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0
+134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0
+-38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0
+144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0
+-28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0
+153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0
+-19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0
+163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0
+172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0
+4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0
+14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0
+24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0
+-148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0
+33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0
+-139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0
+43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0
+-129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0
+52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0
+-120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0
+62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0
+-110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0
+72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0
+-100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0
+81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0
+-91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0
+96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0
+-81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0
+105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0
+-72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0
+115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0
+-62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0
+124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0
+-52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0
+134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0
+-43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0
+144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0
+-33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0
+153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0
+-24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0
+163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0
+172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0
+0.00,0.00,4.81,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0
+9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0
+19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0
+28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0
+-148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0
+38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0
+-139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0
+48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0
+-129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0
+57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0
+-120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0
+67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0
+-110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0
+76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0
+-100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0
+86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0
+-86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0
+96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0
+-76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0
+105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0
+-67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0
+115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0
+-57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0
+124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0
+-48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0
+134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0
+-38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0
+144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0
+-28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0
+153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0
+-19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0
+163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0
+-9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0
+172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0
+4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0
+14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0
+24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0
+-148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0
+33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0
+-139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0
+43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0
+-129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0
+52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0
+-120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0
+62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0
+-110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0
+72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0
+-100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0
+81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0
+-91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0
+96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0
+-81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0
+105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0
+-72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0
+115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0
+-62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0
+124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0
+-52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0
+134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0
+-43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0
+144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0
+-33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0
+153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0
+-24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0
+163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0
+172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+0.00,0.00,10.40,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0
+9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0
+19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0
+28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0
+-148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0
+38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0
+-139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0
+48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0
+-129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0
+57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0
+-120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0
+67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0
+-110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0
+76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0
+-100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0
+86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0
+-86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0
+96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0
+-76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0
+105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0
+-67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0
+115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0
+-57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0
+124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0
+-48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0
+134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0
+-38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0
+144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0
+-28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0
+153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0
+163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0
+-9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0
+172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0
+4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0
+14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0
+24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0
+33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0
+-139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0
+43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0
+-129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0
+52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0
+-120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0
+62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0
+-110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0
+72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0
+-100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0
+81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0
+-91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0
+96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0
+-81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0
+105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0
+-72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0
+115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0
+-62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0
+124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0
+-52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0
+134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0
+-43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0
+144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0
+-33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0
+153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0
+-24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0
+163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0
+172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,6.41,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0
+9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0
+19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0
+-158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0
+28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0
+-148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0
+38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0
+-139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0
+48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0
+-129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0
+57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0
+-120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0
+67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0
+-110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0
+76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0
+-100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0
+86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0
+-86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0
+96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0
+-76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0
+105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0
+-67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0
+115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0
+-57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0
+124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0
+-48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0
+134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0
+-38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0
+144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0
+-28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0
+153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0
+163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0
+172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0
+4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0
+14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0
+-158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0
+24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0
+33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0
+-139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0
+43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0
+-129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0
+52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0
+-120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0
+62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0
+-110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0
+72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0
+-100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0
+81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0
+-91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0
+96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0
+-81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0
+105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0
+-72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0
+115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0
+-62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0
+124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0
+-52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0
+134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0
+-43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0
+144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0
+-33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0
+153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0
+-24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0
+163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0
+-14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0
+172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.80,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0
+9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0
+19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0
+-158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0
+28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0
+-148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0
+38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0
+-139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0
+48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0
+-129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0
+57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0
+-120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0
+67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0
+-110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0
+76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0
+-100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0
+86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0
+-86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0
+96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0
+-76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0
+105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0
+-67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0
+115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0
+-57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0
+124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0
+-48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0
+134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0
+-38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0
+144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0
+-28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0
+153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0
+-19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0
+163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0
+172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0
+-0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0
+4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0
+-168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0
+14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0
+-158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0
+24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0
+-148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0
+33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0
+-139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0
+43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0
+-129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0
+52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0
+-120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0
+62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0
+-110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0
+72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0
+-100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0
+81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0
+-91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0
+96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0
+-81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0
+105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0
+-72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0
+115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0
+-62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0
+124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0
+-52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0
+134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0
+-43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0
+144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0
+-33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0
+153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0
+-24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0
+163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0
+-14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0
+172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.01,0.00,1.00,0.00,0.00,0
+-177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0
+-168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0
+19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0
+-158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0
+28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0
+-148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0
+38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0
+-139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0
+48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0
+-129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0
+57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0
+-120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0
+67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0
+-110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0
+76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0
+-100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0
+86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0
+-86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0
+96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0
+-76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0
+105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0
+-67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0
+115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0
+-57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0
+124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0
+-48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0
+134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0
+-38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0
+144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0
+-28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0
+153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0
+-19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0
+163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0
+172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0
+14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0
+-158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0
+24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0
+-148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0
+33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0
+-139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0
+43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0
+-129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0
+52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0
+-120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0
+62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0
+-110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0
+72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0
+-100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0
+81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0
+-91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0
+96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0
+-81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0
+105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0
+-72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0
+115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0
+-62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0
+124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0
+-52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0
+134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0
+-43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0
+144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0
+-33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0
+153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0
+-24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0
+163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0
+-4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0
+0.00,0.00,7.20,0.00,1.00,0.00,0.00,0
+-177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0
+-168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0
+19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0
+38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0
+-139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0
+48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0
+-129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0
+57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0
+-120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0
+67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0
+-110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0
+76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0
+-100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0
+86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0
+-86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0
+96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0
+-76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0
+105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0
+-67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0
+115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0
+-57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0
+124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0
+-48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0
+134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0
+-38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0
+144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0
+-19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0
+163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0
+14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0
+-148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0
+33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0
+-139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0
+43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0
+-129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0
+52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0
+-120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0
+62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0
+72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0
+-100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0
+81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0
+-91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0
+96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0
+-81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0
+105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0
+-72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0
+115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0
+-62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0
+124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0
+-52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0
+134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0
+-43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0
+144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0
+-33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0
+153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0
+0.00,0.00,9.61,0.00,1.00,0.00,0.00,0
+-177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0
+48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0
+-129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0
+57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0
+-120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0
+67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0
+-110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0
+76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0
+-100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0
+86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0
+-86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0
+96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0
+-76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0
+105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0
+-67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0
+115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0
+-57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0
+124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0
+-48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0
+134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0
+163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0
+-9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0
+-148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0
+33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0
+-139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0
+43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0
+-129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0
+52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0
+-120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0
+62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0
+72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0
+-100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0
+81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0
+-91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0
+96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0
+-81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0
+105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0
+-72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0
+115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0
+-62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0
+124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0
+-52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0
+134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0
+-43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0
+144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0
+-33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0
+153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0
+-14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0
+172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0
+0.00,0.00,5.60,0.00,1.00,0.00,0.00,0
+-177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0
+-158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0
+28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0
+-148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0
+48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0
+-129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0
+57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0
+-120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0
+67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0
+-110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0
+76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0
+-100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0
+86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0
+-86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0
+96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0
+-76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0
+105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0
+-67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0
+115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0
+-57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0
+124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0
+-48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0
+134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0
+-28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0
+153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0
+-158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0
+-148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0
+33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0
+-139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0
+43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0
+-129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0
+52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0
+-120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0
+62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0
+-110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0
+72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0
+-100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0
+81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0
+-91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0
+96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0
+-81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0
+105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0
+-72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0
+115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0
+-62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0
+124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0
+-52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0
+134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0
+-43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0
+144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0
+-33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0
+153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0
+0.00,0.00,11.21,0.00,1.00,0.00,0.00,0
+-177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0
+28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0
+-148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0
+38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0
+-139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0
+48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0
+57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0
+-120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0
+67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0
+-110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0
+76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0
+-100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0
+86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0
+-86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0
+96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0
+-76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0
+105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0
+-67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0
+115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0
+-57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0
+124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0
+-48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0
+134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0
+-38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0
+144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0
+-28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0
+153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0
+-148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0
+-139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0
+43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0
+-129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0
+52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0
+-120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0
+62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0
+-110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0
+72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0
+-100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0
+81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0
+-91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0
+96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0
+-81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0
+105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0
+-72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0
+115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0
+-62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0
+124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0
+-52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0
+134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0
+-43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0
+-33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0
+153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0
+-24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0
+163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,3.99,0.00,1.00,0.00,0.00,0
+-177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0
+19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0
+-148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0
+33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0
+43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0
+52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0
+-120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0
+62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0
+-110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0
+76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0
+-100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0
+86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0
+-86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0
+96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0
+-76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0
+105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0
+-67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0
+120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0
+-57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0
+-48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0
+139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0
+148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0
+158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0
+163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0
+43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0
+-134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0
+-124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0
+62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0
+-110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0
+72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0
+-100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0
+81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0
+-91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0
+96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0
+-81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0
+105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0
+-72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0
+115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0
+-57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0
+124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0
+-48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0
+134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0
+-38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0
+-28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0
+-24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,12.82,0.00,1.00,0.00,0.00,0
+-177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0
+-148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0
+33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0
+-129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0
+-120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0
+62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0
+-110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0
+76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0
+-100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0
+86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0
+-86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0
+96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0
+-76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0
+110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0
+-67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0
+120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0
+-57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0
+-48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0
+-163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0
+33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0
+43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0
+-134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0
+62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0
+-115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0
+72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0
+-100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0
+81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0
+-91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0
+96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0
+-81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0
+105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0
+-67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0
+115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0
+-57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0
+124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0
+-48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0
+134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0
+-38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0
+144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0
+-14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,2.39,0.00,1.00,0.00,0.00,0
+-177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0
+33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0
+-144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0
+-134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0
+62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0
+-110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0
+72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0
+-100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0
+86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0
+-86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0
+96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0
+-76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0
+110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0
+-67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0
+120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0
+-52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0
+129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0
+-19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0
+28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0
+-144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0
+38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0
+-134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0
+48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0
+57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0
+-115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0
+72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0
+-105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0
+81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0
+-91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0
+96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0
+-81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0
+105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0
+-67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0
+120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0
+-57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0
+129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0
+-48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0
+139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0
+-38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0
+158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0
+0.00,0.00,14.42,0.00,1.00,0.00,0.00,0
+-177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0
+-163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0
+24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0
+28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0
+-144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0
+38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0
+-134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0
+48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0
+62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0
+-115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0
+72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0
+86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0
+-86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0
+96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0
+-76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0
+110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0
+-62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0
+120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0
+-52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0
+134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0
+158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0
+-148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0
+38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0
+-139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0
+48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0
+-129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0
+-115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0
+67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0
+-105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0
+81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0
+-91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0
+96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0
+105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0
+-67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0
+120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0
+-52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0
+129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0
+139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0
+163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0
+0.00,0.00,0.79,0.00,1.00,0.00,0.00,0
+-177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0
+4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0
+-163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0
+19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0
+-153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0
+28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0
+-148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0
+38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0
+-139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0
+48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0
+-124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0
+57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0
+-115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0
+72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0
+86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0
+-86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0
+100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0
+-76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0
+110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0
+-62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0
+124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0
+-48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0
+134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0
+-38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0
+-28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0
+-24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0
+163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0
+168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0
+9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0
+-158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0
+-148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0
+33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0
+-139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0
+43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0
+-129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0
+-120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0
+67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0
+-105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0
+81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0
+-91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0
+96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0
+110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0
+-67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0
+120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0
+-52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0
+134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0
+144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0
+153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0
+-24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0
+-19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0
+168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0
diff --git a/scripts/testv/stvOMASA_3ISM_1MASA2TC16c.met b/scripts/testv/stvOMASA_3ISM_1MASA2TC16c.met
new file mode 100644
index 0000000000000000000000000000000000000000..00acdae5394c5d40e9193d7dd9cd1fee6d182c24
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_1MASA2TC16c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5a1f87bfe360dbd221a94583aa68a58ef050e968a63351730d643f2dc2cac4e1
+size 204600
diff --git a/scripts/testv/stvOMASA_3ISM_1MASA2TC16c_ISM1.csv b/scripts/testv/stvOMASA_3ISM_1MASA2TC16c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_1MASA2TC16c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_3ISM_1MASA2TC16c_ISM2.csv b/scripts/testv/stvOMASA_3ISM_1MASA2TC16c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_1MASA2TC16c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_3ISM_1MASA2TC16c_ISM3.csv b/scripts/testv/stvOMASA_3ISM_1MASA2TC16c_ISM3.csv
new file mode 100644
index 0000000000000000000000000000000000000000..14eee9b693b536fa2fd22d2813d7f588b8930b06
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_1MASA2TC16c_ISM3.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0
+-177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0
+4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0
+-168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0
+14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0
+-163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0
+19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0
+-153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0
+28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0
+-148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0
+38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0
+-139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0
+48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0
+-124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0
+57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0
+-115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0
+72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0
+-100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0
+86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0
+-86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0
+100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0
+-76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0
+110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0
+-62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0
+124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0
+-52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0
+134.40,33.60,0.28,0.00,1.00,177.60,0.00,0
+-38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0
+144.00,28.80,0.30,0.00,1.00,177.60,0.00,0
+-33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0
+153.60,24.00,0.32,0.00,1.00,177.60,0.00,0
+-24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0
+158.40,19.20,0.34,0.00,1.00,177.60,0.00,0
+-14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0
+168.00,9.60,0.36,0.00,1.00,177.60,0.00,0
+-9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0
+172.80,4.80,0.38,0.00,1.00,177.60,0.00,0
+-0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0
+-177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0
+4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0
+14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0
+19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0
+-158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0
+28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0
+-148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0
+33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0
+-139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0
+43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0
+-129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0
+57.60,38.40,15.47,0.00,1.00,177.60,0.00,0
+-120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0
+67.20,43.20,15.44,0.00,1.00,177.60,0.00,0
+-105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0
+81.60,43.20,15.42,0.00,1.00,177.60,0.00,0
+-91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0
+96.00,43.20,15.40,0.00,1.00,0.00,0.00,0
+-76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0
+110.40,43.20,15.38,0.00,1.00,0.00,0.00,0
+-67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0
+120.00,38.40,15.36,0.00,1.00,0.00,0.00,0
+-52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0
+129.60,38.40,15.34,0.00,1.00,0.00,0.00,0
+-43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0
+144.00,33.60,15.32,0.00,1.00,0.00,0.00,0
+-33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0
+148.80,24.00,15.30,0.00,1.00,0.00,0.00,0
+-24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0
+158.40,19.20,15.27,0.00,1.00,0.00,0.00,0
+-19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0
+168.00,14.40,15.25,0.00,1.00,0.00,0.00,0
+-9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0
+172.80,4.80,15.23,0.00,1.00,0.00,0.00,0
+-4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0
+0.00,0.00,15.21,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0
+9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0
+14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0
+-163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0
+24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0
+-153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0
+28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0
+-144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0
+38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0
+-134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0
+48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0
+-124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0
+62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0
+-115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0
+72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0
+-100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0
+86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0
+-86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0
+96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0
+-76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0
+110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0
+-62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0
+120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0
+-52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0
+134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0
+-43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0
+144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0
+-33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0
+148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0
+-24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0
+158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0
+-19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0
+168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0
+-9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0
+172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0
+4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0
+14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0
+19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0
+-153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0
+28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0
+-148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0
+38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0
+-139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0
+48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0
+-124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0
+57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0
+-115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0
+72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0
+-105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0
+81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0
+-91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0
+96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0
+-76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0
+105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0
+-67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0
+120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0
+-57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0
+129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0
+-43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0
+139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0
+-33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0
+148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0
+-28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0
+158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0
+-19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0
+163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0
+-9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0
+172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0
+0.00,0.00,1.60,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0
+9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0
+14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0
+-158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0
+24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0
+-153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0
+33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0
+-144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0
+43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0
+-134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0
+52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0
+-124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0
+62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0
+-110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0
+72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0
+-100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0
+86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0
+-86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0
+96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0
+-76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0
+110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0
+-67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0
+120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0
+-52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0
+129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0
+-43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0
+139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0
+-33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0
+148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0
+-24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0
+158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0
+-19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0
+168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0
+172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0
+14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0
+-163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0
+24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0
+-153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0
+28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0
+-144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0
+38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0
+-134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0
+48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0
+-124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0
+62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0
+-115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0
+72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0
+-100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0
+81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0
+-91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0
+96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0
+-81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0
+105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0
+-67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0
+115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0
+-57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0
+129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0
+-48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0
+139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0
+-38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0
+148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0
+-28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0
+153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0
+-19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0
+163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0
+-9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0
+172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0
+0.00,0.00,13.61,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0
+9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0
+-168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0
+24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0
+-148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0
+33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0
+-139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0
+43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0
+-129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0
+52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0
+-120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0
+62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0
+-110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0
+76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0
+-100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0
+86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0
+-86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0
+96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0
+-76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0
+105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0
+-67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0
+120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0
+-57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0
+129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0
+-48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0
+139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0
+-38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0
+148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0
+158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0
+-19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0
+163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0
+172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0
+4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0
+14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0
+-163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0
+24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0
+-153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0
+33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0
+-144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0
+43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0
+-134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0
+52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0
+-124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0
+62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0
+-115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0
+72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0
+-100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0
+81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0
+-91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0
+96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0
+-81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0
+105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0
+-67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0
+115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0
+-57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0
+124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0
+-48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0
+134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0
+-38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0
+144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0
+-28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0
+153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0
+-19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0
+163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0
+-14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0
+172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0
+-4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0
+0.00,0.00,3.20,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0
+9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0
+19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0
+24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0
+-148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0
+33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0
+-139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0
+43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0
+-129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0
+52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0
+-120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0
+67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0
+-110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0
+76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0
+-100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0
+86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0
+-86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0
+96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0
+-76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0
+105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0
+-67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0
+115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0
+-57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0
+129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0
+-48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0
+139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0
+-38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0
+148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0
+153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0
+-19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0
+163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0
+172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0
+4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0
+14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0
+24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0
+-153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0
+33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0
+-144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0
+43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0
+-134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0
+52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0
+-124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0
+62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0
+-110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0
+72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0
+-100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0
+81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0
+-91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0
+96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0
+-81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0
+105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0
+-72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0
+115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0
+-57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0
+124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0
+-48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0
+134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0
+-38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0
+144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0
+-28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0
+153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0
+-24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0
+163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0
+-14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0
+172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,12.01,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0
+9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0
+-158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0
+28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0
+-148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0
+38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0
+-139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0
+48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0
+-129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0
+57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0
+-120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0
+67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0
+-110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0
+76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0
+-100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0
+86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0
+-86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0
+96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0
+-76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0
+105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0
+-67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0
+115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0
+-57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0
+124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0
+-48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0
+134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0
+-38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0
+144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0
+-28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0
+153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0
+-19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0
+163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0
+172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0
+4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0
+14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0
+24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0
+-148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0
+33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0
+-139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0
+43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0
+-129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0
+52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0
+-120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0
+62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0
+-110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0
+72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0
+-100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0
+81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0
+-91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0
+96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0
+-81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0
+105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0
+-72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0
+115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0
+-62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0
+124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0
+-52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0
+134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0
+-43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0
+144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0
+-33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0
+153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0
+-24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0
+163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0
+172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0
+0.00,0.00,4.81,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0
+9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0
+19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0
+28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0
+-148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0
+38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0
+-139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0
+48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0
+-129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0
+57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0
+-120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0
+67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0
+-110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0
+76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0
+-100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0
+86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0
+-86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0
+96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0
+-76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0
+105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0
+-67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0
+115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0
+-57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0
+124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0
+-48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0
+134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0
+-38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0
+144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0
+-28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0
+153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0
+-19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0
+163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0
+-9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0
+172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0
+4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0
+14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0
+24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0
+-148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0
+33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0
+-139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0
+43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0
+-129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0
+52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0
+-120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0
+62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0
+-110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0
+72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0
+-100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0
+81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0
+-91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0
+96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0
+-81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0
+105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0
+-72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0
+115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0
+-62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0
+124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0
+-52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0
+134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0
+-43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0
+144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0
+-33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0
+153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0
+-24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0
+163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0
+172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+0.00,0.00,10.40,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0
+9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0
+19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0
+28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0
+-148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0
+38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0
+-139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0
+48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0
+-129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0
+57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0
+-120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0
+67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0
+-110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0
+76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0
+-100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0
+86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0
+-86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0
+96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0
+-76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0
+105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0
+-67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0
+115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0
+-57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0
+124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0
+-48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0
+134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0
+-38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0
+144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0
+-28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0
+153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0
+163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0
+-9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0
+172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0
+4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0
+14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0
+24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0
+33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0
+-139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0
+43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0
+-129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0
+52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0
+-120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0
+62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0
+-110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0
+72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0
+-100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0
+81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0
+-91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0
+96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0
+-81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0
+105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0
+-72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0
+115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0
+-62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0
+124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0
+-52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0
+134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0
+-43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0
+144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0
+-33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0
+153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0
+-24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0
+163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0
+172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,6.41,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0
+9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0
+19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0
+-158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0
+28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0
+-148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0
+38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0
+-139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0
+48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0
+-129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0
+57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0
+-120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0
+67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0
+-110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0
+76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0
+-100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0
+86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0
+-86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0
+96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0
+-76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0
+105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0
+-67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0
+115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0
+-57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0
+124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0
+-48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0
+134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0
+-38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0
+144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0
+-28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0
+153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0
+163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0
+172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0
+4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0
+14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0
+-158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0
+24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0
+33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0
+-139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0
+43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0
+-129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0
+52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0
+-120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0
+62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0
+-110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0
+72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0
+-100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0
+81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0
+-91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0
+96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0
+-81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0
+105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0
+-72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0
+115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0
+-62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0
+124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0
+-52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0
+134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0
+-43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0
+144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0
+-33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0
+153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0
+-24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0
+163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0
+-14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0
+172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.80,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0
+9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0
+19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0
+-158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0
+28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0
+-148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0
+38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0
+-139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0
+48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0
+-129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0
+57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0
+-120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0
+67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0
+-110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0
+76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0
+-100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0
+86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0
+-86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0
+96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0
+-76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0
+105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0
+-67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0
+115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0
+-57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0
+124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0
+-48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0
+134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0
+-38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0
+144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0
+-28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0
+153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0
+-19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0
+163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0
+172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0
+-0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0
+4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0
+-168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0
+14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0
+-158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0
+24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0
+-148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0
+33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0
+-139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0
+43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0
+-129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0
+52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0
+-120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0
+62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0
+-110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0
+72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0
+-100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0
+81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0
+-91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0
+96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0
+-81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0
+105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0
+-72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0
+115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0
+-62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0
+124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0
+-52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0
+134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0
+-43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0
+144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0
+-33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0
+153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0
+-24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0
+163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0
+-14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0
+172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.01,0.00,1.00,0.00,0.00,0
+-177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0
+-168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0
+19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0
+-158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0
+28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0
+-148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0
+38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0
+-139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0
+48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0
+-129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0
+57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0
+-120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0
+67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0
+-110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0
+76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0
+-100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0
+86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0
+-86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0
+96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0
+-76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0
+105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0
+-67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0
+115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0
+-57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0
+124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0
+-48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0
+134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0
+-38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0
+144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0
+-28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0
+153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0
+-19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0
+163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0
+172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0
+14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0
+-158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0
+24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0
+-148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0
+33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0
+-139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0
+43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0
+-129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0
+52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0
+-120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0
+62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0
+-110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0
+72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0
+-100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0
+81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0
+-91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0
+96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0
+-81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0
+105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0
+-72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0
+115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0
+-62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0
+124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0
+-52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0
+134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0
+-43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0
+144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0
+-33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0
+153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0
+-24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0
+163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0
+-4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0
+0.00,0.00,7.20,0.00,1.00,0.00,0.00,0
+-177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0
+-168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0
+19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0
+38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0
+-139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0
+48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0
+-129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0
+57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0
+-120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0
+67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0
+-110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0
+76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0
+-100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0
+86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0
+-86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0
+96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0
+-76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0
+105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0
+-67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0
+115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0
+-57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0
+124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0
+-48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0
+134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0
+-38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0
+144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0
+-19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0
+163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0
+14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0
+-148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0
+33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0
+-139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0
+43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0
+-129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0
+52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0
+-120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0
+62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0
+72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0
+-100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0
+81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0
+-91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0
+96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0
+-81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0
+105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0
+-72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0
+115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0
+-62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0
+124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0
+-52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0
+134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0
+-43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0
+144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0
+-33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0
+153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0
+0.00,0.00,9.61,0.00,1.00,0.00,0.00,0
+-177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0
+48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0
+-129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0
+57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0
+-120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0
+67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0
+-110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0
+76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0
+-100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0
+86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0
+-86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0
+96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0
+-76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0
+105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0
+-67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0
+115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0
+-57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0
+124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0
+-48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0
+134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0
+163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0
+-9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0
+-148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0
+33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0
+-139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0
+43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0
+-129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0
+52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0
+-120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0
+62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0
+72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0
+-100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0
+81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0
+-91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0
+96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0
+-81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0
+105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0
+-72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0
+115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0
+-62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0
+124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0
+-52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0
+134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0
+-43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0
+144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0
+-33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0
+153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0
+-14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0
+172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0
+0.00,0.00,5.60,0.00,1.00,0.00,0.00,0
+-177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0
+-158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0
+28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0
+-148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0
+48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0
+-129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0
+57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0
+-120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0
+67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0
+-110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0
+76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0
+-100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0
+86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0
+-86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0
+96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0
+-76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0
+105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0
+-67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0
+115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0
+-57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0
+124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0
+-48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0
+134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0
+-28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0
+153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0
+-158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0
+-148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0
+33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0
+-139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0
+43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0
+-129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0
+52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0
+-120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0
+62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0
+-110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0
+72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0
+-100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0
+81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0
+-91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0
+96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0
+-81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0
+105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0
+-72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0
+115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0
+-62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0
+124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0
+-52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0
+134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0
+-43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0
+144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0
+-33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0
+153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0
+0.00,0.00,11.21,0.00,1.00,0.00,0.00,0
+-177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0
+28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0
+-148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0
+38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0
+-139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0
+48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0
+57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0
+-120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0
+67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0
+-110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0
+76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0
+-100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0
+86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0
+-86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0
+96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0
+-76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0
+105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0
+-67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0
+115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0
+-57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0
+124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0
+-48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0
+134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0
+-38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0
+144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0
+-28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0
+153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0
+-148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0
+-139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0
+43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0
+-129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0
+52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0
+-120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0
+62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0
+-110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0
+72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0
+-100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0
+81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0
+-91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0
+96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0
+-81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0
+105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0
+-72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0
+115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0
+-62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0
+124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0
+-52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0
+134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0
+-43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0
+-33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0
+153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0
+-24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0
+163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,3.99,0.00,1.00,0.00,0.00,0
+-177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0
+19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0
+-148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0
+33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0
+43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0
+52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0
+-120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0
+62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0
+-110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0
+76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0
+-100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0
+86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0
+-86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0
+96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0
+-76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0
+105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0
+-67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0
+120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0
+-57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0
+-48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0
+139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0
+148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0
+158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0
+163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0
+43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0
+-134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0
+-124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0
+62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0
+-110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0
+72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0
+-100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0
+81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0
+-91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0
+96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0
+-81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0
+105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0
+-72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0
+115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0
+-57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0
+124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0
+-48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0
+134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0
+-38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0
+-28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0
+-24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,12.82,0.00,1.00,0.00,0.00,0
+-177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0
+-148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0
+33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0
+-129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0
+-120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0
+62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0
+-110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0
+76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0
+-100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0
+86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0
+-86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0
+96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0
+-76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0
+110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0
+-67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0
+120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0
+-57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0
+-48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0
+-163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0
+33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0
+43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0
+-134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0
+62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0
+-115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0
+72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0
+-100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0
+81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0
+-91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0
+96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0
+-81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0
+105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0
+-67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0
+115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0
+-57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0
+124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0
+-48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0
+134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0
+-38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0
+144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0
+-14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,2.39,0.00,1.00,0.00,0.00,0
+-177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0
+33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0
+-144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0
+-134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0
+62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0
+-110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0
+72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0
+-100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0
+86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0
+-86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0
+96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0
+-76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0
+110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0
+-67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0
+120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0
+-52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0
+129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0
+-19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0
+28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0
+-144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0
+38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0
+-134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0
+48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0
+57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0
+-115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0
+72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0
+-105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0
+81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0
+-91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0
+96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0
+-81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0
+105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0
+-67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0
+120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0
+-57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0
+129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0
+-48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0
+139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0
+-38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0
+158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0
+0.00,0.00,14.42,0.00,1.00,0.00,0.00,0
+-177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0
+-163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0
+24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0
+28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0
+-144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0
+38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0
+-134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0
+48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0
+62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0
+-115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0
+72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0
+86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0
+-86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0
+96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0
+-76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0
+110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0
+-62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0
+120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0
+-52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0
+134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0
+158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0
+-148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0
+38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0
+-139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0
+48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0
+-129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0
+-115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0
+67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0
+-105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0
+81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0
+-91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0
+96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0
+105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0
+-67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0
+120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0
+-52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0
+129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0
+139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0
+163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0
+0.00,0.00,0.79,0.00,1.00,0.00,0.00,0
+-177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0
+4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0
+-163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0
+19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0
+-153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0
+28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0
+-148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0
+38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0
+-139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0
+48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0
+-124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0
+57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0
+-115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0
+72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0
+86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0
+-86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0
+100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0
+-76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0
+110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0
+-62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0
+124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0
+-48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0
+134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0
+-38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0
+-28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0
+-24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0
+163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0
+168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0
+9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0
+-158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0
+-148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0
+33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0
+-139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0
+43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0
+-129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0
+-120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0
+67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0
+-105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0
+81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0
+-91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0
+96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0
+110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0
+-67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0
+120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0
+-52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0
+134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0
+144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0
+153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0
+-24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0
+-19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0
+168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0
diff --git a/scripts/testv/stvOMASA_3ISM_1MASA2TC32c.met b/scripts/testv/stvOMASA_3ISM_1MASA2TC32c.met
new file mode 100644
index 0000000000000000000000000000000000000000..00acdae5394c5d40e9193d7dd9cd1fee6d182c24
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_1MASA2TC32c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5a1f87bfe360dbd221a94583aa68a58ef050e968a63351730d643f2dc2cac4e1
+size 204600
diff --git a/scripts/testv/stvOMASA_3ISM_1MASA2TC32c_ISM1.csv b/scripts/testv/stvOMASA_3ISM_1MASA2TC32c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_1MASA2TC32c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_3ISM_1MASA2TC32c_ISM2.csv b/scripts/testv/stvOMASA_3ISM_1MASA2TC32c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_1MASA2TC32c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_3ISM_1MASA2TC32c_ISM3.csv b/scripts/testv/stvOMASA_3ISM_1MASA2TC32c_ISM3.csv
new file mode 100644
index 0000000000000000000000000000000000000000..14eee9b693b536fa2fd22d2813d7f588b8930b06
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_1MASA2TC32c_ISM3.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0
+-177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0
+4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0
+-168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0
+14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0
+-163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0
+19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0
+-153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0
+28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0
+-148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0
+38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0
+-139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0
+48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0
+-124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0
+57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0
+-115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0
+72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0
+-100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0
+86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0
+-86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0
+100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0
+-76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0
+110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0
+-62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0
+124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0
+-52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0
+134.40,33.60,0.28,0.00,1.00,177.60,0.00,0
+-38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0
+144.00,28.80,0.30,0.00,1.00,177.60,0.00,0
+-33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0
+153.60,24.00,0.32,0.00,1.00,177.60,0.00,0
+-24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0
+158.40,19.20,0.34,0.00,1.00,177.60,0.00,0
+-14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0
+168.00,9.60,0.36,0.00,1.00,177.60,0.00,0
+-9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0
+172.80,4.80,0.38,0.00,1.00,177.60,0.00,0
+-0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0
+-177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0
+4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0
+14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0
+19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0
+-158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0
+28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0
+-148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0
+33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0
+-139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0
+43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0
+-129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0
+57.60,38.40,15.47,0.00,1.00,177.60,0.00,0
+-120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0
+67.20,43.20,15.44,0.00,1.00,177.60,0.00,0
+-105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0
+81.60,43.20,15.42,0.00,1.00,177.60,0.00,0
+-91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0
+96.00,43.20,15.40,0.00,1.00,0.00,0.00,0
+-76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0
+110.40,43.20,15.38,0.00,1.00,0.00,0.00,0
+-67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0
+120.00,38.40,15.36,0.00,1.00,0.00,0.00,0
+-52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0
+129.60,38.40,15.34,0.00,1.00,0.00,0.00,0
+-43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0
+144.00,33.60,15.32,0.00,1.00,0.00,0.00,0
+-33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0
+148.80,24.00,15.30,0.00,1.00,0.00,0.00,0
+-24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0
+158.40,19.20,15.27,0.00,1.00,0.00,0.00,0
+-19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0
+168.00,14.40,15.25,0.00,1.00,0.00,0.00,0
+-9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0
+172.80,4.80,15.23,0.00,1.00,0.00,0.00,0
+-4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0
+0.00,0.00,15.21,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0
+9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0
+14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0
+-163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0
+24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0
+-153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0
+28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0
+-144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0
+38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0
+-134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0
+48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0
+-124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0
+62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0
+-115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0
+72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0
+-100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0
+86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0
+-86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0
+96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0
+-76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0
+110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0
+-62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0
+120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0
+-52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0
+134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0
+-43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0
+144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0
+-33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0
+148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0
+-24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0
+158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0
+-19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0
+168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0
+-9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0
+172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0
+4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0
+14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0
+19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0
+-153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0
+28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0
+-148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0
+38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0
+-139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0
+48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0
+-124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0
+57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0
+-115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0
+72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0
+-105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0
+81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0
+-91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0
+96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0
+-76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0
+105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0
+-67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0
+120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0
+-57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0
+129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0
+-43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0
+139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0
+-33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0
+148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0
+-28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0
+158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0
+-19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0
+163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0
+-9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0
+172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0
+0.00,0.00,1.60,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0
+9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0
+14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0
+-158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0
+24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0
+-153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0
+33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0
+-144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0
+43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0
+-134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0
+52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0
+-124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0
+62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0
+-110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0
+72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0
+-100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0
+86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0
+-86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0
+96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0
+-76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0
+110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0
+-67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0
+120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0
+-52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0
+129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0
+-43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0
+139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0
+-33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0
+148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0
+-24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0
+158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0
+-19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0
+168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0
+172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0
+14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0
+-163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0
+24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0
+-153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0
+28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0
+-144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0
+38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0
+-134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0
+48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0
+-124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0
+62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0
+-115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0
+72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0
+-100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0
+81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0
+-91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0
+96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0
+-81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0
+105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0
+-67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0
+115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0
+-57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0
+129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0
+-48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0
+139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0
+-38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0
+148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0
+-28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0
+153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0
+-19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0
+163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0
+-9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0
+172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0
+0.00,0.00,13.61,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0
+9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0
+-168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0
+24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0
+-148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0
+33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0
+-139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0
+43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0
+-129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0
+52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0
+-120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0
+62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0
+-110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0
+76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0
+-100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0
+86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0
+-86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0
+96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0
+-76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0
+105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0
+-67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0
+120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0
+-57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0
+129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0
+-48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0
+139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0
+-38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0
+148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0
+158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0
+-19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0
+163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0
+172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0
+4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0
+14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0
+-163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0
+24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0
+-153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0
+33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0
+-144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0
+43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0
+-134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0
+52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0
+-124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0
+62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0
+-115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0
+72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0
+-100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0
+81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0
+-91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0
+96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0
+-81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0
+105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0
+-67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0
+115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0
+-57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0
+124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0
+-48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0
+134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0
+-38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0
+144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0
+-28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0
+153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0
+-19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0
+163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0
+-14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0
+172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0
+-4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0
+0.00,0.00,3.20,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0
+9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0
+19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0
+24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0
+-148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0
+33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0
+-139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0
+43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0
+-129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0
+52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0
+-120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0
+67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0
+-110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0
+76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0
+-100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0
+86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0
+-86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0
+96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0
+-76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0
+105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0
+-67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0
+115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0
+-57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0
+129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0
+-48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0
+139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0
+-38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0
+148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0
+153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0
+-19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0
+163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0
+172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0
+4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0
+14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0
+24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0
+-153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0
+33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0
+-144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0
+43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0
+-134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0
+52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0
+-124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0
+62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0
+-110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0
+72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0
+-100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0
+81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0
+-91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0
+96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0
+-81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0
+105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0
+-72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0
+115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0
+-57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0
+124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0
+-48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0
+134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0
+-38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0
+144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0
+-28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0
+153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0
+-24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0
+163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0
+-14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0
+172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,12.01,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0
+9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0
+-158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0
+28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0
+-148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0
+38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0
+-139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0
+48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0
+-129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0
+57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0
+-120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0
+67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0
+-110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0
+76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0
+-100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0
+86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0
+-86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0
+96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0
+-76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0
+105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0
+-67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0
+115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0
+-57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0
+124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0
+-48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0
+134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0
+-38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0
+144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0
+-28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0
+153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0
+-19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0
+163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0
+172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0
+4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0
+14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0
+24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0
+-148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0
+33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0
+-139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0
+43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0
+-129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0
+52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0
+-120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0
+62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0
+-110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0
+72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0
+-100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0
+81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0
+-91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0
+96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0
+-81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0
+105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0
+-72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0
+115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0
+-62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0
+124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0
+-52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0
+134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0
+-43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0
+144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0
+-33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0
+153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0
+-24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0
+163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0
+172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0
+0.00,0.00,4.81,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0
+9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0
+19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0
+28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0
+-148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0
+38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0
+-139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0
+48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0
+-129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0
+57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0
+-120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0
+67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0
+-110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0
+76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0
+-100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0
+86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0
+-86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0
+96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0
+-76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0
+105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0
+-67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0
+115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0
+-57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0
+124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0
+-48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0
+134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0
+-38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0
+144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0
+-28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0
+153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0
+-19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0
+163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0
+-9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0
+172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0
+4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0
+14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0
+24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0
+-148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0
+33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0
+-139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0
+43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0
+-129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0
+52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0
+-120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0
+62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0
+-110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0
+72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0
+-100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0
+81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0
+-91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0
+96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0
+-81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0
+105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0
+-72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0
+115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0
+-62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0
+124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0
+-52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0
+134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0
+-43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0
+144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0
+-33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0
+153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0
+-24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0
+163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0
+172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+0.00,0.00,10.40,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0
+9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0
+19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0
+28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0
+-148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0
+38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0
+-139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0
+48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0
+-129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0
+57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0
+-120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0
+67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0
+-110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0
+76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0
+-100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0
+86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0
+-86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0
+96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0
+-76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0
+105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0
+-67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0
+115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0
+-57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0
+124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0
+-48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0
+134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0
+-38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0
+144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0
+-28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0
+153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0
+163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0
+-9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0
+172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0
+4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0
+14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0
+24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0
+33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0
+-139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0
+43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0
+-129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0
+52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0
+-120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0
+62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0
+-110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0
+72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0
+-100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0
+81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0
+-91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0
+96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0
+-81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0
+105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0
+-72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0
+115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0
+-62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0
+124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0
+-52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0
+134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0
+-43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0
+144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0
+-33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0
+153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0
+-24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0
+163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0
+172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,6.41,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0
+9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0
+19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0
+-158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0
+28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0
+-148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0
+38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0
+-139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0
+48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0
+-129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0
+57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0
+-120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0
+67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0
+-110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0
+76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0
+-100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0
+86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0
+-86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0
+96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0
+-76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0
+105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0
+-67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0
+115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0
+-57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0
+124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0
+-48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0
+134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0
+-38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0
+144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0
+-28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0
+153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0
+163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0
+172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0
+4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0
+14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0
+-158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0
+24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0
+33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0
+-139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0
+43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0
+-129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0
+52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0
+-120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0
+62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0
+-110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0
+72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0
+-100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0
+81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0
+-91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0
+96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0
+-81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0
+105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0
+-72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0
+115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0
+-62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0
+124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0
+-52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0
+134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0
+-43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0
+144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0
+-33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0
+153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0
+-24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0
+163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0
+-14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0
+172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.80,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0
+9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0
+19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0
+-158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0
+28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0
+-148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0
+38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0
+-139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0
+48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0
+-129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0
+57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0
+-120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0
+67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0
+-110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0
+76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0
+-100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0
+86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0
+-86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0
+96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0
+-76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0
+105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0
+-67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0
+115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0
+-57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0
+124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0
+-48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0
+134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0
+-38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0
+144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0
+-28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0
+153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0
+-19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0
+163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0
+172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0
+-0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0
+4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0
+-168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0
+14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0
+-158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0
+24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0
+-148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0
+33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0
+-139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0
+43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0
+-129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0
+52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0
+-120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0
+62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0
+-110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0
+72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0
+-100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0
+81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0
+-91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0
+96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0
+-81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0
+105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0
+-72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0
+115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0
+-62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0
+124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0
+-52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0
+134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0
+-43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0
+144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0
+-33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0
+153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0
+-24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0
+163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0
+-14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0
+172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.01,0.00,1.00,0.00,0.00,0
+-177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0
+-168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0
+19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0
+-158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0
+28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0
+-148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0
+38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0
+-139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0
+48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0
+-129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0
+57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0
+-120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0
+67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0
+-110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0
+76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0
+-100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0
+86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0
+-86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0
+96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0
+-76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0
+105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0
+-67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0
+115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0
+-57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0
+124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0
+-48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0
+134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0
+-38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0
+144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0
+-28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0
+153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0
+-19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0
+163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0
+172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0
+14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0
+-158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0
+24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0
+-148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0
+33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0
+-139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0
+43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0
+-129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0
+52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0
+-120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0
+62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0
+-110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0
+72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0
+-100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0
+81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0
+-91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0
+96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0
+-81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0
+105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0
+-72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0
+115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0
+-62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0
+124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0
+-52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0
+134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0
+-43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0
+144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0
+-33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0
+153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0
+-24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0
+163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0
+-4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0
+0.00,0.00,7.20,0.00,1.00,0.00,0.00,0
+-177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0
+-168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0
+19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0
+38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0
+-139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0
+48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0
+-129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0
+57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0
+-120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0
+67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0
+-110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0
+76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0
+-100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0
+86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0
+-86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0
+96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0
+-76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0
+105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0
+-67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0
+115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0
+-57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0
+124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0
+-48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0
+134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0
+-38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0
+144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0
+-19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0
+163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0
+14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0
+-148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0
+33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0
+-139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0
+43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0
+-129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0
+52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0
+-120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0
+62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0
+72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0
+-100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0
+81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0
+-91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0
+96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0
+-81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0
+105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0
+-72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0
+115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0
+-62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0
+124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0
+-52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0
+134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0
+-43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0
+144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0
+-33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0
+153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0
+0.00,0.00,9.61,0.00,1.00,0.00,0.00,0
+-177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0
+48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0
+-129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0
+57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0
+-120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0
+67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0
+-110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0
+76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0
+-100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0
+86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0
+-86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0
+96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0
+-76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0
+105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0
+-67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0
+115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0
+-57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0
+124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0
+-48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0
+134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0
+163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0
+-9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0
+-148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0
+33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0
+-139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0
+43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0
+-129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0
+52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0
+-120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0
+62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0
+72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0
+-100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0
+81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0
+-91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0
+96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0
+-81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0
+105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0
+-72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0
+115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0
+-62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0
+124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0
+-52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0
+134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0
+-43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0
+144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0
+-33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0
+153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0
+-14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0
+172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0
+0.00,0.00,5.60,0.00,1.00,0.00,0.00,0
+-177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0
+-158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0
+28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0
+-148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0
+48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0
+-129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0
+57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0
+-120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0
+67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0
+-110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0
+76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0
+-100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0
+86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0
+-86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0
+96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0
+-76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0
+105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0
+-67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0
+115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0
+-57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0
+124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0
+-48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0
+134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0
+-28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0
+153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0
+-158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0
+-148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0
+33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0
+-139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0
+43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0
+-129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0
+52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0
+-120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0
+62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0
+-110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0
+72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0
+-100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0
+81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0
+-91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0
+96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0
+-81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0
+105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0
+-72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0
+115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0
+-62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0
+124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0
+-52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0
+134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0
+-43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0
+144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0
+-33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0
+153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0
+0.00,0.00,11.21,0.00,1.00,0.00,0.00,0
+-177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0
+28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0
+-148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0
+38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0
+-139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0
+48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0
+57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0
+-120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0
+67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0
+-110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0
+76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0
+-100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0
+86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0
+-86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0
+96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0
+-76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0
+105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0
+-67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0
+115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0
+-57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0
+124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0
+-48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0
+134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0
+-38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0
+144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0
+-28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0
+153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0
+-148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0
+-139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0
+43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0
+-129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0
+52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0
+-120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0
+62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0
+-110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0
+72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0
+-100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0
+81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0
+-91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0
+96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0
+-81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0
+105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0
+-72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0
+115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0
+-62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0
+124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0
+-52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0
+134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0
+-43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0
+-33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0
+153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0
+-24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0
+163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,3.99,0.00,1.00,0.00,0.00,0
+-177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0
+19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0
+-148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0
+33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0
+43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0
+52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0
+-120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0
+62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0
+-110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0
+76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0
+-100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0
+86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0
+-86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0
+96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0
+-76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0
+105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0
+-67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0
+120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0
+-57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0
+-48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0
+139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0
+148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0
+158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0
+163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0
+43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0
+-134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0
+-124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0
+62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0
+-110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0
+72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0
+-100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0
+81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0
+-91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0
+96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0
+-81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0
+105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0
+-72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0
+115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0
+-57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0
+124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0
+-48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0
+134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0
+-38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0
+-28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0
+-24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,12.82,0.00,1.00,0.00,0.00,0
+-177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0
+-148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0
+33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0
+-129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0
+-120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0
+62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0
+-110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0
+76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0
+-100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0
+86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0
+-86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0
+96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0
+-76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0
+110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0
+-67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0
+120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0
+-57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0
+-48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0
+-163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0
+33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0
+43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0
+-134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0
+62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0
+-115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0
+72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0
+-100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0
+81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0
+-91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0
+96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0
+-81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0
+105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0
+-67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0
+115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0
+-57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0
+124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0
+-48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0
+134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0
+-38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0
+144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0
+-14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,2.39,0.00,1.00,0.00,0.00,0
+-177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0
+33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0
+-144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0
+-134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0
+62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0
+-110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0
+72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0
+-100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0
+86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0
+-86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0
+96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0
+-76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0
+110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0
+-67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0
+120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0
+-52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0
+129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0
+-19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0
+28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0
+-144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0
+38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0
+-134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0
+48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0
+57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0
+-115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0
+72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0
+-105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0
+81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0
+-91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0
+96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0
+-81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0
+105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0
+-67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0
+120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0
+-57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0
+129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0
+-48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0
+139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0
+-38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0
+158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0
+0.00,0.00,14.42,0.00,1.00,0.00,0.00,0
+-177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0
+-163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0
+24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0
+28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0
+-144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0
+38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0
+-134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0
+48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0
+62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0
+-115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0
+72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0
+86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0
+-86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0
+96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0
+-76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0
+110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0
+-62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0
+120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0
+-52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0
+134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0
+158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0
+-148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0
+38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0
+-139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0
+48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0
+-129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0
+-115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0
+67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0
+-105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0
+81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0
+-91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0
+96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0
+105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0
+-67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0
+120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0
+-52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0
+129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0
+139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0
+163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0
+0.00,0.00,0.79,0.00,1.00,0.00,0.00,0
+-177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0
+4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0
+-163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0
+19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0
+-153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0
+28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0
+-148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0
+38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0
+-139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0
+48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0
+-124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0
+57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0
+-115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0
+72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0
+86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0
+-86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0
+100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0
+-76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0
+110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0
+-62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0
+124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0
+-48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0
+134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0
+-38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0
+-28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0
+-24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0
+163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0
+168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0
+9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0
+-158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0
+-148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0
+33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0
+-139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0
+43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0
+-129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0
+-120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0
+67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0
+-105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0
+81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0
+-91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0
+96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0
+110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0
+-67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0
+120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0
+-52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0
+134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0
+144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0
+153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0
+-24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0
+-19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0
+168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0
diff --git a/scripts/testv/stvOMASA_3ISM_1MASA2TC48c.met b/scripts/testv/stvOMASA_3ISM_1MASA2TC48c.met
new file mode 100644
index 0000000000000000000000000000000000000000..00acdae5394c5d40e9193d7dd9cd1fee6d182c24
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_1MASA2TC48c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5a1f87bfe360dbd221a94583aa68a58ef050e968a63351730d643f2dc2cac4e1
+size 204600
diff --git a/scripts/testv/stvOMASA_3ISM_1MASA2TC48c_ISM1.csv b/scripts/testv/stvOMASA_3ISM_1MASA2TC48c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_1MASA2TC48c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_3ISM_1MASA2TC48c_ISM2.csv b/scripts/testv/stvOMASA_3ISM_1MASA2TC48c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_1MASA2TC48c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_3ISM_1MASA2TC48c_ISM3.csv b/scripts/testv/stvOMASA_3ISM_1MASA2TC48c_ISM3.csv
new file mode 100644
index 0000000000000000000000000000000000000000..14eee9b693b536fa2fd22d2813d7f588b8930b06
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_1MASA2TC48c_ISM3.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0
+-177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0
+4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0
+-168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0
+14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0
+-163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0
+19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0
+-153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0
+28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0
+-148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0
+38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0
+-139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0
+48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0
+-124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0
+57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0
+-115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0
+72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0
+-100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0
+86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0
+-86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0
+100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0
+-76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0
+110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0
+-62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0
+124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0
+-52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0
+134.40,33.60,0.28,0.00,1.00,177.60,0.00,0
+-38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0
+144.00,28.80,0.30,0.00,1.00,177.60,0.00,0
+-33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0
+153.60,24.00,0.32,0.00,1.00,177.60,0.00,0
+-24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0
+158.40,19.20,0.34,0.00,1.00,177.60,0.00,0
+-14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0
+168.00,9.60,0.36,0.00,1.00,177.60,0.00,0
+-9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0
+172.80,4.80,0.38,0.00,1.00,177.60,0.00,0
+-0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0
+-177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0
+4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0
+14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0
+19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0
+-158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0
+28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0
+-148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0
+33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0
+-139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0
+43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0
+-129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0
+57.60,38.40,15.47,0.00,1.00,177.60,0.00,0
+-120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0
+67.20,43.20,15.44,0.00,1.00,177.60,0.00,0
+-105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0
+81.60,43.20,15.42,0.00,1.00,177.60,0.00,0
+-91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0
+96.00,43.20,15.40,0.00,1.00,0.00,0.00,0
+-76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0
+110.40,43.20,15.38,0.00,1.00,0.00,0.00,0
+-67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0
+120.00,38.40,15.36,0.00,1.00,0.00,0.00,0
+-52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0
+129.60,38.40,15.34,0.00,1.00,0.00,0.00,0
+-43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0
+144.00,33.60,15.32,0.00,1.00,0.00,0.00,0
+-33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0
+148.80,24.00,15.30,0.00,1.00,0.00,0.00,0
+-24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0
+158.40,19.20,15.27,0.00,1.00,0.00,0.00,0
+-19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0
+168.00,14.40,15.25,0.00,1.00,0.00,0.00,0
+-9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0
+172.80,4.80,15.23,0.00,1.00,0.00,0.00,0
+-4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0
+0.00,0.00,15.21,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0
+9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0
+14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0
+-163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0
+24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0
+-153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0
+28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0
+-144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0
+38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0
+-134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0
+48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0
+-124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0
+62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0
+-115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0
+72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0
+-100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0
+86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0
+-86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0
+96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0
+-76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0
+110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0
+-62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0
+120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0
+-52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0
+134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0
+-43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0
+144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0
+-33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0
+148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0
+-24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0
+158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0
+-19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0
+168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0
+-9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0
+172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0
+4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0
+14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0
+19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0
+-153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0
+28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0
+-148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0
+38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0
+-139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0
+48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0
+-124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0
+57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0
+-115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0
+72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0
+-105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0
+81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0
+-91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0
+96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0
+-76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0
+105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0
+-67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0
+120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0
+-57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0
+129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0
+-43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0
+139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0
+-33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0
+148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0
+-28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0
+158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0
+-19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0
+163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0
+-9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0
+172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0
+0.00,0.00,1.60,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0
+9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0
+14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0
+-158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0
+24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0
+-153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0
+33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0
+-144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0
+43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0
+-134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0
+52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0
+-124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0
+62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0
+-110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0
+72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0
+-100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0
+86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0
+-86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0
+96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0
+-76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0
+110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0
+-67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0
+120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0
+-52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0
+129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0
+-43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0
+139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0
+-33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0
+148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0
+-24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0
+158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0
+-19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0
+168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0
+172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0
+14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0
+-163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0
+24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0
+-153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0
+28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0
+-144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0
+38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0
+-134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0
+48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0
+-124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0
+62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0
+-115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0
+72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0
+-100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0
+81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0
+-91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0
+96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0
+-81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0
+105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0
+-67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0
+115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0
+-57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0
+129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0
+-48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0
+139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0
+-38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0
+148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0
+-28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0
+153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0
+-19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0
+163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0
+-9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0
+172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0
+0.00,0.00,13.61,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0
+9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0
+-168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0
+24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0
+-148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0
+33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0
+-139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0
+43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0
+-129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0
+52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0
+-120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0
+62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0
+-110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0
+76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0
+-100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0
+86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0
+-86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0
+96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0
+-76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0
+105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0
+-67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0
+120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0
+-57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0
+129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0
+-48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0
+139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0
+-38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0
+148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0
+158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0
+-19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0
+163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0
+172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0
+4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0
+14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0
+-163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0
+24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0
+-153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0
+33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0
+-144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0
+43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0
+-134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0
+52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0
+-124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0
+62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0
+-115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0
+72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0
+-100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0
+81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0
+-91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0
+96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0
+-81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0
+105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0
+-67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0
+115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0
+-57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0
+124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0
+-48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0
+134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0
+-38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0
+144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0
+-28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0
+153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0
+-19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0
+163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0
+-14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0
+172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0
+-4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0
+0.00,0.00,3.20,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0
+9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0
+19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0
+24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0
+-148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0
+33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0
+-139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0
+43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0
+-129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0
+52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0
+-120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0
+67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0
+-110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0
+76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0
+-100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0
+86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0
+-86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0
+96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0
+-76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0
+105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0
+-67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0
+115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0
+-57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0
+129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0
+-48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0
+139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0
+-38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0
+148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0
+153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0
+-19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0
+163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0
+172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0
+4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0
+14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0
+24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0
+-153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0
+33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0
+-144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0
+43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0
+-134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0
+52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0
+-124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0
+62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0
+-110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0
+72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0
+-100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0
+81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0
+-91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0
+96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0
+-81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0
+105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0
+-72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0
+115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0
+-57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0
+124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0
+-48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0
+134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0
+-38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0
+144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0
+-28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0
+153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0
+-24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0
+163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0
+-14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0
+172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,12.01,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0
+9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0
+-158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0
+28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0
+-148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0
+38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0
+-139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0
+48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0
+-129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0
+57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0
+-120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0
+67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0
+-110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0
+76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0
+-100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0
+86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0
+-86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0
+96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0
+-76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0
+105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0
+-67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0
+115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0
+-57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0
+124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0
+-48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0
+134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0
+-38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0
+144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0
+-28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0
+153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0
+-19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0
+163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0
+172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0
+4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0
+14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0
+24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0
+-148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0
+33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0
+-139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0
+43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0
+-129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0
+52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0
+-120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0
+62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0
+-110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0
+72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0
+-100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0
+81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0
+-91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0
+96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0
+-81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0
+105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0
+-72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0
+115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0
+-62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0
+124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0
+-52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0
+134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0
+-43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0
+144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0
+-33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0
+153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0
+-24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0
+163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0
+172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0
+0.00,0.00,4.81,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0
+9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0
+19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0
+28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0
+-148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0
+38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0
+-139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0
+48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0
+-129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0
+57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0
+-120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0
+67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0
+-110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0
+76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0
+-100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0
+86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0
+-86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0
+96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0
+-76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0
+105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0
+-67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0
+115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0
+-57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0
+124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0
+-48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0
+134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0
+-38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0
+144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0
+-28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0
+153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0
+-19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0
+163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0
+-9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0
+172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0
+4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0
+14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0
+24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0
+-148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0
+33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0
+-139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0
+43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0
+-129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0
+52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0
+-120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0
+62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0
+-110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0
+72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0
+-100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0
+81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0
+-91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0
+96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0
+-81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0
+105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0
+-72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0
+115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0
+-62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0
+124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0
+-52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0
+134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0
+-43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0
+144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0
+-33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0
+153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0
+-24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0
+163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0
+172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+0.00,0.00,10.40,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0
+9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0
+19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0
+28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0
+-148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0
+38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0
+-139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0
+48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0
+-129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0
+57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0
+-120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0
+67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0
+-110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0
+76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0
+-100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0
+86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0
+-86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0
+96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0
+-76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0
+105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0
+-67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0
+115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0
+-57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0
+124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0
+-48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0
+134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0
+-38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0
+144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0
+-28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0
+153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0
+163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0
+-9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0
+172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0
+4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0
+14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0
+24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0
+33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0
+-139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0
+43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0
+-129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0
+52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0
+-120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0
+62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0
+-110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0
+72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0
+-100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0
+81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0
+-91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0
+96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0
+-81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0
+105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0
+-72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0
+115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0
+-62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0
+124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0
+-52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0
+134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0
+-43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0
+144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0
+-33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0
+153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0
+-24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0
+163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0
+172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,6.41,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0
+9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0
+19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0
+-158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0
+28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0
+-148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0
+38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0
+-139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0
+48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0
+-129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0
+57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0
+-120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0
+67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0
+-110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0
+76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0
+-100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0
+86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0
+-86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0
+96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0
+-76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0
+105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0
+-67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0
+115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0
+-57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0
+124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0
+-48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0
+134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0
+-38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0
+144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0
+-28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0
+153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0
+163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0
+172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0
+4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0
+14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0
+-158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0
+24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0
+33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0
+-139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0
+43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0
+-129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0
+52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0
+-120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0
+62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0
+-110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0
+72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0
+-100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0
+81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0
+-91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0
+96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0
+-81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0
+105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0
+-72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0
+115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0
+-62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0
+124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0
+-52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0
+134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0
+-43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0
+144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0
+-33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0
+153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0
+-24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0
+163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0
+-14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0
+172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.80,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0
+9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0
+19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0
+-158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0
+28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0
+-148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0
+38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0
+-139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0
+48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0
+-129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0
+57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0
+-120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0
+67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0
+-110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0
+76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0
+-100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0
+86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0
+-86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0
+96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0
+-76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0
+105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0
+-67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0
+115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0
+-57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0
+124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0
+-48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0
+134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0
+-38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0
+144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0
+-28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0
+153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0
+-19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0
+163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0
+172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0
+-0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0
+4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0
+-168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0
+14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0
+-158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0
+24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0
+-148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0
+33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0
+-139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0
+43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0
+-129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0
+52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0
+-120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0
+62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0
+-110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0
+72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0
+-100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0
+81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0
+-91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0
+96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0
+-81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0
+105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0
+-72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0
+115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0
+-62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0
+124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0
+-52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0
+134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0
+-43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0
+144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0
+-33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0
+153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0
+-24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0
+163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0
+-14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0
+172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.01,0.00,1.00,0.00,0.00,0
+-177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0
+-168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0
+19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0
+-158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0
+28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0
+-148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0
+38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0
+-139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0
+48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0
+-129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0
+57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0
+-120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0
+67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0
+-110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0
+76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0
+-100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0
+86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0
+-86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0
+96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0
+-76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0
+105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0
+-67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0
+115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0
+-57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0
+124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0
+-48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0
+134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0
+-38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0
+144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0
+-28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0
+153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0
+-19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0
+163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0
+172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0
+14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0
+-158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0
+24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0
+-148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0
+33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0
+-139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0
+43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0
+-129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0
+52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0
+-120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0
+62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0
+-110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0
+72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0
+-100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0
+81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0
+-91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0
+96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0
+-81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0
+105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0
+-72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0
+115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0
+-62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0
+124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0
+-52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0
+134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0
+-43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0
+144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0
+-33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0
+153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0
+-24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0
+163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0
+-4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0
+0.00,0.00,7.20,0.00,1.00,0.00,0.00,0
+-177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0
+-168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0
+19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0
+38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0
+-139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0
+48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0
+-129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0
+57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0
+-120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0
+67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0
+-110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0
+76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0
+-100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0
+86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0
+-86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0
+96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0
+-76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0
+105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0
+-67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0
+115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0
+-57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0
+124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0
+-48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0
+134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0
+-38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0
+144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0
+-19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0
+163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0
+14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0
+-148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0
+33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0
+-139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0
+43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0
+-129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0
+52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0
+-120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0
+62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0
+72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0
+-100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0
+81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0
+-91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0
+96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0
+-81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0
+105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0
+-72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0
+115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0
+-62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0
+124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0
+-52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0
+134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0
+-43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0
+144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0
+-33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0
+153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0
+0.00,0.00,9.61,0.00,1.00,0.00,0.00,0
+-177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0
+48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0
+-129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0
+57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0
+-120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0
+67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0
+-110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0
+76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0
+-100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0
+86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0
+-86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0
+96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0
+-76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0
+105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0
+-67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0
+115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0
+-57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0
+124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0
+-48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0
+134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0
+163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0
+-9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0
+-148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0
+33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0
+-139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0
+43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0
+-129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0
+52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0
+-120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0
+62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0
+72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0
+-100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0
+81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0
+-91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0
+96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0
+-81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0
+105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0
+-72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0
+115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0
+-62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0
+124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0
+-52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0
+134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0
+-43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0
+144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0
+-33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0
+153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0
+-14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0
+172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0
+0.00,0.00,5.60,0.00,1.00,0.00,0.00,0
+-177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0
+-158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0
+28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0
+-148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0
+48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0
+-129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0
+57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0
+-120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0
+67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0
+-110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0
+76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0
+-100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0
+86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0
+-86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0
+96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0
+-76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0
+105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0
+-67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0
+115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0
+-57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0
+124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0
+-48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0
+134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0
+-28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0
+153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0
+-158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0
+-148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0
+33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0
+-139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0
+43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0
+-129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0
+52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0
+-120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0
+62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0
+-110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0
+72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0
+-100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0
+81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0
+-91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0
+96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0
+-81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0
+105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0
+-72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0
+115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0
+-62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0
+124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0
+-52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0
+134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0
+-43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0
+144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0
+-33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0
+153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0
+0.00,0.00,11.21,0.00,1.00,0.00,0.00,0
+-177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0
+28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0
+-148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0
+38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0
+-139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0
+48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0
+57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0
+-120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0
+67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0
+-110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0
+76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0
+-100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0
+86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0
+-86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0
+96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0
+-76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0
+105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0
+-67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0
+115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0
+-57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0
+124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0
+-48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0
+134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0
+-38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0
+144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0
+-28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0
+153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0
+-148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0
+-139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0
+43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0
+-129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0
+52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0
+-120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0
+62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0
+-110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0
+72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0
+-100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0
+81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0
+-91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0
+96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0
+-81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0
+105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0
+-72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0
+115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0
+-62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0
+124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0
+-52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0
+134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0
+-43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0
+-33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0
+153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0
+-24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0
+163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,3.99,0.00,1.00,0.00,0.00,0
+-177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0
+19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0
+-148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0
+33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0
+43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0
+52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0
+-120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0
+62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0
+-110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0
+76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0
+-100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0
+86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0
+-86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0
+96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0
+-76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0
+105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0
+-67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0
+120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0
+-57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0
+-48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0
+139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0
+148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0
+158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0
+163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0
+43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0
+-134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0
+-124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0
+62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0
+-110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0
+72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0
+-100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0
+81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0
+-91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0
+96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0
+-81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0
+105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0
+-72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0
+115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0
+-57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0
+124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0
+-48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0
+134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0
+-38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0
+-28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0
+-24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,12.82,0.00,1.00,0.00,0.00,0
+-177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0
+-148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0
+33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0
+-129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0
+-120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0
+62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0
+-110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0
+76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0
+-100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0
+86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0
+-86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0
+96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0
+-76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0
+110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0
+-67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0
+120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0
+-57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0
+-48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0
+-163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0
+33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0
+43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0
+-134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0
+62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0
+-115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0
+72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0
+-100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0
+81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0
+-91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0
+96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0
+-81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0
+105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0
+-67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0
+115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0
+-57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0
+124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0
+-48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0
+134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0
+-38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0
+144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0
+-14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,2.39,0.00,1.00,0.00,0.00,0
+-177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0
+33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0
+-144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0
+-134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0
+62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0
+-110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0
+72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0
+-100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0
+86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0
+-86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0
+96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0
+-76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0
+110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0
+-67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0
+120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0
+-52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0
+129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0
+-19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0
+28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0
+-144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0
+38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0
+-134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0
+48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0
+57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0
+-115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0
+72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0
+-105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0
+81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0
+-91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0
+96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0
+-81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0
+105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0
+-67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0
+120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0
+-57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0
+129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0
+-48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0
+139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0
+-38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0
+158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0
+0.00,0.00,14.42,0.00,1.00,0.00,0.00,0
+-177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0
+-163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0
+24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0
+28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0
+-144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0
+38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0
+-134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0
+48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0
+62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0
+-115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0
+72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0
+86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0
+-86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0
+96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0
+-76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0
+110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0
+-62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0
+120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0
+-52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0
+134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0
+158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0
+-148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0
+38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0
+-139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0
+48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0
+-129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0
+-115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0
+67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0
+-105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0
+81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0
+-91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0
+96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0
+105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0
+-67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0
+120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0
+-52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0
+129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0
+139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0
+163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0
+0.00,0.00,0.79,0.00,1.00,0.00,0.00,0
+-177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0
+4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0
+-163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0
+19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0
+-153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0
+28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0
+-148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0
+38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0
+-139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0
+48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0
+-124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0
+57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0
+-115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0
+72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0
+86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0
+-86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0
+100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0
+-76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0
+110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0
+-62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0
+124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0
+-48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0
+134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0
+-38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0
+-28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0
+-24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0
+163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0
+168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0
+9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0
+-158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0
+-148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0
+33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0
+-139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0
+43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0
+-129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0
+-120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0
+67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0
+-105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0
+81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0
+-91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0
+96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0
+110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0
+-67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0
+120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0
+-52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0
+134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0
+144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0
+153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0
+-24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0
+-19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0
+168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0
diff --git a/scripts/testv/stvOMASA_3ISM_2MASA1TC16c.met b/scripts/testv/stvOMASA_3ISM_2MASA1TC16c.met
new file mode 100644
index 0000000000000000000000000000000000000000..64688774087538a671ebfda830ff11b4f836f438
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_2MASA1TC16c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d125a4c4e3989ac55f9c2617f464431feae4ede9b2e15d087d3271c0a4a56303
+size 319800
diff --git a/scripts/testv/stvOMASA_3ISM_2MASA1TC16c.wav b/scripts/testv/stvOMASA_3ISM_2MASA1TC16c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..d502e4ded02867b86c0ff69461e9ecb3c81cbf4e
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_2MASA1TC16c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:69f7fb85cca5022d9f158d6765214c28d125a35bb62778f9015f37fff68dbc32
+size 768080
diff --git a/scripts/testv/stvOMASA_3ISM_2MASA1TC16c_ISM1.csv b/scripts/testv/stvOMASA_3ISM_2MASA1TC16c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_2MASA1TC16c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_3ISM_2MASA1TC16c_ISM2.csv b/scripts/testv/stvOMASA_3ISM_2MASA1TC16c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_2MASA1TC16c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_3ISM_2MASA1TC16c_ISM3.csv b/scripts/testv/stvOMASA_3ISM_2MASA1TC16c_ISM3.csv
new file mode 100644
index 0000000000000000000000000000000000000000..14eee9b693b536fa2fd22d2813d7f588b8930b06
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_2MASA1TC16c_ISM3.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0
+-177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0
+4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0
+-168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0
+14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0
+-163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0
+19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0
+-153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0
+28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0
+-148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0
+38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0
+-139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0
+48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0
+-124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0
+57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0
+-115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0
+72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0
+-100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0
+86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0
+-86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0
+100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0
+-76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0
+110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0
+-62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0
+124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0
+-52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0
+134.40,33.60,0.28,0.00,1.00,177.60,0.00,0
+-38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0
+144.00,28.80,0.30,0.00,1.00,177.60,0.00,0
+-33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0
+153.60,24.00,0.32,0.00,1.00,177.60,0.00,0
+-24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0
+158.40,19.20,0.34,0.00,1.00,177.60,0.00,0
+-14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0
+168.00,9.60,0.36,0.00,1.00,177.60,0.00,0
+-9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0
+172.80,4.80,0.38,0.00,1.00,177.60,0.00,0
+-0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0
+-177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0
+4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0
+14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0
+19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0
+-158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0
+28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0
+-148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0
+33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0
+-139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0
+43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0
+-129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0
+57.60,38.40,15.47,0.00,1.00,177.60,0.00,0
+-120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0
+67.20,43.20,15.44,0.00,1.00,177.60,0.00,0
+-105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0
+81.60,43.20,15.42,0.00,1.00,177.60,0.00,0
+-91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0
+96.00,43.20,15.40,0.00,1.00,0.00,0.00,0
+-76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0
+110.40,43.20,15.38,0.00,1.00,0.00,0.00,0
+-67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0
+120.00,38.40,15.36,0.00,1.00,0.00,0.00,0
+-52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0
+129.60,38.40,15.34,0.00,1.00,0.00,0.00,0
+-43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0
+144.00,33.60,15.32,0.00,1.00,0.00,0.00,0
+-33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0
+148.80,24.00,15.30,0.00,1.00,0.00,0.00,0
+-24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0
+158.40,19.20,15.27,0.00,1.00,0.00,0.00,0
+-19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0
+168.00,14.40,15.25,0.00,1.00,0.00,0.00,0
+-9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0
+172.80,4.80,15.23,0.00,1.00,0.00,0.00,0
+-4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0
+0.00,0.00,15.21,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0
+9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0
+14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0
+-163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0
+24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0
+-153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0
+28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0
+-144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0
+38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0
+-134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0
+48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0
+-124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0
+62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0
+-115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0
+72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0
+-100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0
+86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0
+-86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0
+96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0
+-76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0
+110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0
+-62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0
+120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0
+-52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0
+134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0
+-43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0
+144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0
+-33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0
+148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0
+-24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0
+158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0
+-19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0
+168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0
+-9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0
+172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0
+4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0
+14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0
+19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0
+-153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0
+28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0
+-148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0
+38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0
+-139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0
+48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0
+-124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0
+57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0
+-115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0
+72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0
+-105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0
+81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0
+-91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0
+96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0
+-76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0
+105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0
+-67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0
+120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0
+-57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0
+129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0
+-43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0
+139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0
+-33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0
+148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0
+-28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0
+158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0
+-19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0
+163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0
+-9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0
+172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0
+0.00,0.00,1.60,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0
+9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0
+14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0
+-158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0
+24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0
+-153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0
+33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0
+-144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0
+43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0
+-134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0
+52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0
+-124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0
+62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0
+-110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0
+72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0
+-100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0
+86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0
+-86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0
+96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0
+-76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0
+110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0
+-67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0
+120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0
+-52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0
+129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0
+-43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0
+139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0
+-33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0
+148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0
+-24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0
+158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0
+-19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0
+168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0
+172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0
+14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0
+-163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0
+24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0
+-153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0
+28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0
+-144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0
+38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0
+-134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0
+48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0
+-124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0
+62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0
+-115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0
+72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0
+-100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0
+81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0
+-91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0
+96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0
+-81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0
+105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0
+-67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0
+115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0
+-57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0
+129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0
+-48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0
+139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0
+-38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0
+148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0
+-28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0
+153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0
+-19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0
+163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0
+-9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0
+172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0
+0.00,0.00,13.61,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0
+9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0
+-168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0
+24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0
+-148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0
+33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0
+-139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0
+43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0
+-129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0
+52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0
+-120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0
+62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0
+-110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0
+76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0
+-100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0
+86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0
+-86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0
+96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0
+-76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0
+105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0
+-67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0
+120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0
+-57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0
+129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0
+-48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0
+139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0
+-38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0
+148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0
+158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0
+-19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0
+163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0
+172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0
+4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0
+14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0
+-163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0
+24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0
+-153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0
+33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0
+-144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0
+43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0
+-134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0
+52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0
+-124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0
+62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0
+-115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0
+72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0
+-100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0
+81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0
+-91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0
+96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0
+-81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0
+105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0
+-67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0
+115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0
+-57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0
+124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0
+-48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0
+134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0
+-38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0
+144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0
+-28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0
+153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0
+-19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0
+163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0
+-14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0
+172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0
+-4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0
+0.00,0.00,3.20,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0
+9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0
+19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0
+24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0
+-148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0
+33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0
+-139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0
+43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0
+-129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0
+52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0
+-120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0
+67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0
+-110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0
+76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0
+-100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0
+86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0
+-86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0
+96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0
+-76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0
+105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0
+-67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0
+115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0
+-57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0
+129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0
+-48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0
+139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0
+-38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0
+148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0
+153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0
+-19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0
+163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0
+172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0
+4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0
+14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0
+24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0
+-153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0
+33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0
+-144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0
+43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0
+-134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0
+52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0
+-124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0
+62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0
+-110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0
+72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0
+-100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0
+81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0
+-91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0
+96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0
+-81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0
+105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0
+-72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0
+115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0
+-57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0
+124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0
+-48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0
+134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0
+-38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0
+144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0
+-28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0
+153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0
+-24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0
+163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0
+-14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0
+172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,12.01,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0
+9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0
+-158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0
+28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0
+-148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0
+38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0
+-139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0
+48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0
+-129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0
+57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0
+-120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0
+67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0
+-110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0
+76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0
+-100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0
+86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0
+-86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0
+96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0
+-76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0
+105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0
+-67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0
+115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0
+-57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0
+124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0
+-48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0
+134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0
+-38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0
+144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0
+-28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0
+153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0
+-19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0
+163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0
+172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0
+4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0
+14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0
+24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0
+-148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0
+33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0
+-139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0
+43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0
+-129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0
+52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0
+-120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0
+62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0
+-110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0
+72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0
+-100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0
+81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0
+-91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0
+96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0
+-81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0
+105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0
+-72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0
+115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0
+-62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0
+124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0
+-52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0
+134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0
+-43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0
+144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0
+-33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0
+153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0
+-24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0
+163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0
+172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0
+0.00,0.00,4.81,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0
+9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0
+19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0
+28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0
+-148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0
+38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0
+-139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0
+48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0
+-129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0
+57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0
+-120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0
+67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0
+-110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0
+76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0
+-100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0
+86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0
+-86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0
+96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0
+-76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0
+105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0
+-67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0
+115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0
+-57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0
+124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0
+-48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0
+134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0
+-38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0
+144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0
+-28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0
+153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0
+-19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0
+163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0
+-9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0
+172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0
+4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0
+14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0
+24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0
+-148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0
+33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0
+-139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0
+43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0
+-129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0
+52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0
+-120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0
+62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0
+-110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0
+72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0
+-100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0
+81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0
+-91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0
+96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0
+-81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0
+105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0
+-72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0
+115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0
+-62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0
+124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0
+-52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0
+134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0
+-43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0
+144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0
+-33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0
+153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0
+-24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0
+163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0
+172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+0.00,0.00,10.40,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0
+9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0
+19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0
+28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0
+-148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0
+38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0
+-139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0
+48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0
+-129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0
+57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0
+-120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0
+67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0
+-110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0
+76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0
+-100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0
+86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0
+-86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0
+96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0
+-76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0
+105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0
+-67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0
+115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0
+-57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0
+124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0
+-48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0
+134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0
+-38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0
+144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0
+-28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0
+153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0
+163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0
+-9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0
+172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0
+4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0
+14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0
+24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0
+33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0
+-139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0
+43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0
+-129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0
+52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0
+-120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0
+62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0
+-110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0
+72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0
+-100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0
+81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0
+-91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0
+96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0
+-81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0
+105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0
+-72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0
+115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0
+-62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0
+124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0
+-52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0
+134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0
+-43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0
+144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0
+-33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0
+153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0
+-24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0
+163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0
+172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,6.41,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0
+9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0
+19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0
+-158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0
+28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0
+-148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0
+38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0
+-139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0
+48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0
+-129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0
+57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0
+-120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0
+67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0
+-110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0
+76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0
+-100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0
+86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0
+-86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0
+96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0
+-76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0
+105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0
+-67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0
+115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0
+-57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0
+124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0
+-48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0
+134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0
+-38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0
+144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0
+-28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0
+153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0
+163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0
+172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0
+4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0
+14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0
+-158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0
+24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0
+33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0
+-139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0
+43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0
+-129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0
+52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0
+-120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0
+62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0
+-110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0
+72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0
+-100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0
+81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0
+-91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0
+96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0
+-81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0
+105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0
+-72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0
+115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0
+-62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0
+124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0
+-52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0
+134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0
+-43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0
+144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0
+-33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0
+153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0
+-24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0
+163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0
+-14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0
+172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.80,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0
+9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0
+19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0
+-158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0
+28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0
+-148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0
+38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0
+-139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0
+48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0
+-129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0
+57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0
+-120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0
+67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0
+-110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0
+76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0
+-100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0
+86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0
+-86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0
+96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0
+-76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0
+105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0
+-67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0
+115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0
+-57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0
+124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0
+-48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0
+134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0
+-38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0
+144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0
+-28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0
+153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0
+-19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0
+163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0
+172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0
+-0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0
+4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0
+-168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0
+14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0
+-158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0
+24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0
+-148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0
+33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0
+-139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0
+43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0
+-129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0
+52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0
+-120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0
+62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0
+-110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0
+72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0
+-100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0
+81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0
+-91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0
+96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0
+-81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0
+105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0
+-72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0
+115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0
+-62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0
+124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0
+-52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0
+134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0
+-43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0
+144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0
+-33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0
+153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0
+-24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0
+163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0
+-14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0
+172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.01,0.00,1.00,0.00,0.00,0
+-177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0
+-168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0
+19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0
+-158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0
+28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0
+-148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0
+38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0
+-139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0
+48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0
+-129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0
+57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0
+-120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0
+67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0
+-110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0
+76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0
+-100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0
+86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0
+-86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0
+96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0
+-76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0
+105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0
+-67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0
+115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0
+-57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0
+124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0
+-48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0
+134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0
+-38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0
+144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0
+-28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0
+153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0
+-19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0
+163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0
+172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0
+14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0
+-158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0
+24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0
+-148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0
+33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0
+-139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0
+43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0
+-129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0
+52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0
+-120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0
+62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0
+-110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0
+72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0
+-100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0
+81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0
+-91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0
+96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0
+-81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0
+105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0
+-72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0
+115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0
+-62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0
+124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0
+-52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0
+134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0
+-43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0
+144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0
+-33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0
+153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0
+-24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0
+163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0
+-4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0
+0.00,0.00,7.20,0.00,1.00,0.00,0.00,0
+-177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0
+-168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0
+19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0
+38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0
+-139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0
+48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0
+-129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0
+57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0
+-120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0
+67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0
+-110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0
+76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0
+-100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0
+86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0
+-86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0
+96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0
+-76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0
+105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0
+-67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0
+115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0
+-57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0
+124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0
+-48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0
+134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0
+-38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0
+144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0
+-19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0
+163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0
+14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0
+-148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0
+33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0
+-139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0
+43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0
+-129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0
+52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0
+-120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0
+62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0
+72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0
+-100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0
+81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0
+-91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0
+96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0
+-81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0
+105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0
+-72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0
+115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0
+-62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0
+124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0
+-52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0
+134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0
+-43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0
+144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0
+-33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0
+153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0
+0.00,0.00,9.61,0.00,1.00,0.00,0.00,0
+-177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0
+48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0
+-129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0
+57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0
+-120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0
+67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0
+-110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0
+76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0
+-100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0
+86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0
+-86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0
+96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0
+-76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0
+105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0
+-67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0
+115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0
+-57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0
+124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0
+-48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0
+134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0
+163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0
+-9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0
+-148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0
+33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0
+-139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0
+43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0
+-129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0
+52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0
+-120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0
+62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0
+72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0
+-100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0
+81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0
+-91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0
+96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0
+-81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0
+105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0
+-72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0
+115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0
+-62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0
+124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0
+-52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0
+134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0
+-43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0
+144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0
+-33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0
+153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0
+-14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0
+172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0
+0.00,0.00,5.60,0.00,1.00,0.00,0.00,0
+-177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0
+-158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0
+28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0
+-148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0
+48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0
+-129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0
+57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0
+-120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0
+67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0
+-110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0
+76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0
+-100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0
+86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0
+-86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0
+96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0
+-76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0
+105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0
+-67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0
+115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0
+-57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0
+124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0
+-48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0
+134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0
+-28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0
+153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0
+-158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0
+-148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0
+33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0
+-139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0
+43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0
+-129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0
+52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0
+-120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0
+62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0
+-110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0
+72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0
+-100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0
+81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0
+-91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0
+96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0
+-81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0
+105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0
+-72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0
+115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0
+-62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0
+124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0
+-52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0
+134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0
+-43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0
+144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0
+-33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0
+153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0
+0.00,0.00,11.21,0.00,1.00,0.00,0.00,0
+-177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0
+28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0
+-148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0
+38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0
+-139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0
+48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0
+57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0
+-120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0
+67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0
+-110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0
+76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0
+-100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0
+86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0
+-86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0
+96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0
+-76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0
+105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0
+-67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0
+115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0
+-57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0
+124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0
+-48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0
+134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0
+-38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0
+144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0
+-28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0
+153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0
+-148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0
+-139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0
+43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0
+-129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0
+52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0
+-120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0
+62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0
+-110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0
+72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0
+-100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0
+81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0
+-91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0
+96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0
+-81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0
+105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0
+-72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0
+115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0
+-62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0
+124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0
+-52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0
+134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0
+-43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0
+-33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0
+153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0
+-24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0
+163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,3.99,0.00,1.00,0.00,0.00,0
+-177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0
+19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0
+-148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0
+33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0
+43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0
+52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0
+-120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0
+62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0
+-110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0
+76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0
+-100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0
+86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0
+-86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0
+96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0
+-76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0
+105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0
+-67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0
+120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0
+-57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0
+-48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0
+139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0
+148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0
+158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0
+163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0
+43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0
+-134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0
+-124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0
+62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0
+-110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0
+72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0
+-100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0
+81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0
+-91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0
+96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0
+-81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0
+105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0
+-72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0
+115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0
+-57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0
+124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0
+-48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0
+134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0
+-38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0
+-28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0
+-24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,12.82,0.00,1.00,0.00,0.00,0
+-177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0
+-148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0
+33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0
+-129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0
+-120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0
+62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0
+-110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0
+76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0
+-100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0
+86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0
+-86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0
+96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0
+-76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0
+110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0
+-67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0
+120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0
+-57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0
+-48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0
+-163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0
+33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0
+43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0
+-134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0
+62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0
+-115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0
+72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0
+-100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0
+81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0
+-91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0
+96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0
+-81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0
+105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0
+-67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0
+115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0
+-57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0
+124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0
+-48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0
+134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0
+-38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0
+144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0
+-14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,2.39,0.00,1.00,0.00,0.00,0
+-177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0
+33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0
+-144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0
+-134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0
+62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0
+-110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0
+72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0
+-100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0
+86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0
+-86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0
+96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0
+-76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0
+110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0
+-67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0
+120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0
+-52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0
+129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0
+-19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0
+28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0
+-144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0
+38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0
+-134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0
+48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0
+57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0
+-115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0
+72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0
+-105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0
+81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0
+-91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0
+96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0
+-81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0
+105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0
+-67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0
+120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0
+-57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0
+129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0
+-48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0
+139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0
+-38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0
+158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0
+0.00,0.00,14.42,0.00,1.00,0.00,0.00,0
+-177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0
+-163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0
+24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0
+28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0
+-144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0
+38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0
+-134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0
+48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0
+62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0
+-115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0
+72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0
+86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0
+-86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0
+96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0
+-76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0
+110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0
+-62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0
+120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0
+-52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0
+134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0
+158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0
+-148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0
+38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0
+-139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0
+48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0
+-129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0
+-115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0
+67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0
+-105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0
+81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0
+-91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0
+96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0
+105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0
+-67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0
+120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0
+-52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0
+129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0
+139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0
+163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0
+0.00,0.00,0.79,0.00,1.00,0.00,0.00,0
+-177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0
+4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0
+-163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0
+19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0
+-153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0
+28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0
+-148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0
+38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0
+-139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0
+48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0
+-124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0
+57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0
+-115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0
+72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0
+86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0
+-86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0
+100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0
+-76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0
+110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0
+-62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0
+124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0
+-48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0
+134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0
+-38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0
+-28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0
+-24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0
+163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0
+168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0
+9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0
+-158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0
+-148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0
+33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0
+-139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0
+43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0
+-129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0
+-120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0
+67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0
+-105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0
+81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0
+-91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0
+96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0
+110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0
+-67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0
+120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0
+-52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0
+134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0
+144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0
+153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0
+-24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0
+-19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0
+168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0
diff --git a/scripts/testv/stvOMASA_3ISM_2MASA1TC32c.met b/scripts/testv/stvOMASA_3ISM_2MASA1TC32c.met
new file mode 100644
index 0000000000000000000000000000000000000000..64688774087538a671ebfda830ff11b4f836f438
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_2MASA1TC32c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d125a4c4e3989ac55f9c2617f464431feae4ede9b2e15d087d3271c0a4a56303
+size 319800
diff --git a/scripts/testv/stvOMASA_3ISM_2MASA1TC32c.wav b/scripts/testv/stvOMASA_3ISM_2MASA1TC32c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..8315f2cabae13bb3d708ed7a64885499d0af88be
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_2MASA1TC32c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:29dd1508bd54d97f3f6d5abe7c91dafbd165c80cac6ea54601bc15f6fdc820b1
+size 1536080
diff --git a/scripts/testv/stvOMASA_3ISM_2MASA1TC32c_ISM1.csv b/scripts/testv/stvOMASA_3ISM_2MASA1TC32c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_2MASA1TC32c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_3ISM_2MASA1TC32c_ISM2.csv b/scripts/testv/stvOMASA_3ISM_2MASA1TC32c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_2MASA1TC32c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_3ISM_2MASA1TC32c_ISM3.csv b/scripts/testv/stvOMASA_3ISM_2MASA1TC32c_ISM3.csv
new file mode 100644
index 0000000000000000000000000000000000000000..14eee9b693b536fa2fd22d2813d7f588b8930b06
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_2MASA1TC32c_ISM3.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0
+-177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0
+4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0
+-168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0
+14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0
+-163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0
+19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0
+-153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0
+28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0
+-148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0
+38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0
+-139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0
+48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0
+-124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0
+57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0
+-115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0
+72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0
+-100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0
+86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0
+-86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0
+100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0
+-76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0
+110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0
+-62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0
+124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0
+-52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0
+134.40,33.60,0.28,0.00,1.00,177.60,0.00,0
+-38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0
+144.00,28.80,0.30,0.00,1.00,177.60,0.00,0
+-33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0
+153.60,24.00,0.32,0.00,1.00,177.60,0.00,0
+-24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0
+158.40,19.20,0.34,0.00,1.00,177.60,0.00,0
+-14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0
+168.00,9.60,0.36,0.00,1.00,177.60,0.00,0
+-9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0
+172.80,4.80,0.38,0.00,1.00,177.60,0.00,0
+-0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0
+-177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0
+4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0
+14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0
+19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0
+-158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0
+28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0
+-148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0
+33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0
+-139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0
+43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0
+-129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0
+57.60,38.40,15.47,0.00,1.00,177.60,0.00,0
+-120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0
+67.20,43.20,15.44,0.00,1.00,177.60,0.00,0
+-105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0
+81.60,43.20,15.42,0.00,1.00,177.60,0.00,0
+-91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0
+96.00,43.20,15.40,0.00,1.00,0.00,0.00,0
+-76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0
+110.40,43.20,15.38,0.00,1.00,0.00,0.00,0
+-67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0
+120.00,38.40,15.36,0.00,1.00,0.00,0.00,0
+-52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0
+129.60,38.40,15.34,0.00,1.00,0.00,0.00,0
+-43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0
+144.00,33.60,15.32,0.00,1.00,0.00,0.00,0
+-33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0
+148.80,24.00,15.30,0.00,1.00,0.00,0.00,0
+-24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0
+158.40,19.20,15.27,0.00,1.00,0.00,0.00,0
+-19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0
+168.00,14.40,15.25,0.00,1.00,0.00,0.00,0
+-9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0
+172.80,4.80,15.23,0.00,1.00,0.00,0.00,0
+-4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0
+0.00,0.00,15.21,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0
+9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0
+14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0
+-163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0
+24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0
+-153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0
+28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0
+-144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0
+38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0
+-134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0
+48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0
+-124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0
+62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0
+-115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0
+72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0
+-100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0
+86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0
+-86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0
+96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0
+-76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0
+110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0
+-62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0
+120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0
+-52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0
+134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0
+-43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0
+144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0
+-33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0
+148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0
+-24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0
+158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0
+-19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0
+168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0
+-9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0
+172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0
+4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0
+14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0
+19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0
+-153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0
+28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0
+-148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0
+38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0
+-139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0
+48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0
+-124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0
+57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0
+-115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0
+72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0
+-105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0
+81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0
+-91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0
+96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0
+-76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0
+105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0
+-67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0
+120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0
+-57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0
+129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0
+-43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0
+139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0
+-33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0
+148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0
+-28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0
+158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0
+-19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0
+163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0
+-9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0
+172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0
+0.00,0.00,1.60,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0
+9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0
+14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0
+-158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0
+24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0
+-153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0
+33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0
+-144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0
+43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0
+-134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0
+52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0
+-124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0
+62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0
+-110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0
+72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0
+-100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0
+86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0
+-86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0
+96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0
+-76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0
+110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0
+-67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0
+120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0
+-52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0
+129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0
+-43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0
+139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0
+-33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0
+148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0
+-24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0
+158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0
+-19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0
+168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0
+172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0
+14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0
+-163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0
+24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0
+-153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0
+28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0
+-144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0
+38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0
+-134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0
+48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0
+-124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0
+62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0
+-115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0
+72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0
+-100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0
+81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0
+-91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0
+96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0
+-81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0
+105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0
+-67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0
+115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0
+-57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0
+129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0
+-48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0
+139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0
+-38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0
+148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0
+-28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0
+153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0
+-19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0
+163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0
+-9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0
+172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0
+0.00,0.00,13.61,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0
+9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0
+-168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0
+24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0
+-148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0
+33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0
+-139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0
+43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0
+-129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0
+52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0
+-120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0
+62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0
+-110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0
+76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0
+-100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0
+86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0
+-86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0
+96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0
+-76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0
+105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0
+-67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0
+120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0
+-57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0
+129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0
+-48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0
+139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0
+-38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0
+148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0
+158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0
+-19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0
+163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0
+172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0
+4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0
+14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0
+-163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0
+24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0
+-153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0
+33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0
+-144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0
+43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0
+-134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0
+52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0
+-124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0
+62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0
+-115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0
+72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0
+-100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0
+81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0
+-91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0
+96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0
+-81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0
+105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0
+-67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0
+115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0
+-57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0
+124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0
+-48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0
+134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0
+-38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0
+144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0
+-28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0
+153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0
+-19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0
+163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0
+-14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0
+172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0
+-4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0
+0.00,0.00,3.20,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0
+9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0
+19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0
+24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0
+-148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0
+33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0
+-139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0
+43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0
+-129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0
+52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0
+-120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0
+67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0
+-110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0
+76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0
+-100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0
+86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0
+-86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0
+96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0
+-76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0
+105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0
+-67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0
+115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0
+-57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0
+129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0
+-48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0
+139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0
+-38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0
+148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0
+153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0
+-19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0
+163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0
+172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0
+4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0
+14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0
+24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0
+-153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0
+33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0
+-144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0
+43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0
+-134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0
+52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0
+-124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0
+62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0
+-110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0
+72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0
+-100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0
+81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0
+-91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0
+96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0
+-81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0
+105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0
+-72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0
+115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0
+-57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0
+124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0
+-48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0
+134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0
+-38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0
+144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0
+-28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0
+153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0
+-24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0
+163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0
+-14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0
+172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,12.01,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0
+9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0
+-158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0
+28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0
+-148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0
+38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0
+-139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0
+48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0
+-129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0
+57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0
+-120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0
+67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0
+-110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0
+76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0
+-100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0
+86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0
+-86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0
+96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0
+-76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0
+105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0
+-67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0
+115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0
+-57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0
+124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0
+-48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0
+134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0
+-38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0
+144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0
+-28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0
+153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0
+-19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0
+163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0
+172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0
+4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0
+14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0
+24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0
+-148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0
+33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0
+-139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0
+43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0
+-129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0
+52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0
+-120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0
+62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0
+-110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0
+72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0
+-100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0
+81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0
+-91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0
+96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0
+-81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0
+105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0
+-72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0
+115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0
+-62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0
+124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0
+-52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0
+134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0
+-43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0
+144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0
+-33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0
+153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0
+-24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0
+163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0
+172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0
+0.00,0.00,4.81,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0
+9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0
+19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0
+28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0
+-148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0
+38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0
+-139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0
+48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0
+-129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0
+57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0
+-120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0
+67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0
+-110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0
+76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0
+-100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0
+86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0
+-86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0
+96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0
+-76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0
+105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0
+-67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0
+115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0
+-57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0
+124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0
+-48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0
+134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0
+-38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0
+144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0
+-28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0
+153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0
+-19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0
+163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0
+-9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0
+172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0
+4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0
+14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0
+24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0
+-148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0
+33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0
+-139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0
+43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0
+-129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0
+52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0
+-120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0
+62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0
+-110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0
+72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0
+-100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0
+81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0
+-91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0
+96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0
+-81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0
+105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0
+-72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0
+115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0
+-62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0
+124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0
+-52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0
+134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0
+-43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0
+144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0
+-33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0
+153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0
+-24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0
+163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0
+172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+0.00,0.00,10.40,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0
+9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0
+19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0
+28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0
+-148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0
+38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0
+-139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0
+48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0
+-129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0
+57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0
+-120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0
+67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0
+-110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0
+76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0
+-100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0
+86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0
+-86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0
+96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0
+-76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0
+105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0
+-67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0
+115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0
+-57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0
+124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0
+-48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0
+134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0
+-38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0
+144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0
+-28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0
+153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0
+163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0
+-9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0
+172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0
+4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0
+14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0
+24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0
+33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0
+-139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0
+43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0
+-129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0
+52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0
+-120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0
+62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0
+-110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0
+72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0
+-100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0
+81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0
+-91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0
+96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0
+-81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0
+105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0
+-72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0
+115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0
+-62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0
+124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0
+-52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0
+134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0
+-43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0
+144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0
+-33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0
+153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0
+-24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0
+163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0
+172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,6.41,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0
+9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0
+19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0
+-158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0
+28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0
+-148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0
+38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0
+-139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0
+48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0
+-129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0
+57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0
+-120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0
+67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0
+-110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0
+76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0
+-100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0
+86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0
+-86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0
+96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0
+-76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0
+105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0
+-67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0
+115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0
+-57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0
+124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0
+-48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0
+134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0
+-38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0
+144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0
+-28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0
+153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0
+163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0
+172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0
+4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0
+14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0
+-158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0
+24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0
+33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0
+-139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0
+43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0
+-129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0
+52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0
+-120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0
+62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0
+-110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0
+72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0
+-100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0
+81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0
+-91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0
+96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0
+-81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0
+105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0
+-72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0
+115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0
+-62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0
+124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0
+-52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0
+134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0
+-43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0
+144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0
+-33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0
+153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0
+-24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0
+163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0
+-14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0
+172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.80,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0
+9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0
+19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0
+-158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0
+28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0
+-148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0
+38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0
+-139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0
+48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0
+-129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0
+57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0
+-120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0
+67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0
+-110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0
+76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0
+-100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0
+86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0
+-86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0
+96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0
+-76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0
+105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0
+-67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0
+115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0
+-57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0
+124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0
+-48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0
+134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0
+-38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0
+144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0
+-28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0
+153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0
+-19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0
+163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0
+172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0
+-0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0
+4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0
+-168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0
+14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0
+-158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0
+24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0
+-148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0
+33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0
+-139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0
+43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0
+-129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0
+52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0
+-120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0
+62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0
+-110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0
+72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0
+-100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0
+81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0
+-91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0
+96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0
+-81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0
+105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0
+-72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0
+115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0
+-62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0
+124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0
+-52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0
+134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0
+-43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0
+144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0
+-33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0
+153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0
+-24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0
+163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0
+-14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0
+172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.01,0.00,1.00,0.00,0.00,0
+-177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0
+-168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0
+19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0
+-158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0
+28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0
+-148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0
+38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0
+-139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0
+48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0
+-129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0
+57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0
+-120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0
+67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0
+-110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0
+76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0
+-100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0
+86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0
+-86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0
+96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0
+-76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0
+105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0
+-67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0
+115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0
+-57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0
+124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0
+-48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0
+134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0
+-38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0
+144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0
+-28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0
+153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0
+-19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0
+163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0
+172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0
+14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0
+-158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0
+24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0
+-148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0
+33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0
+-139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0
+43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0
+-129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0
+52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0
+-120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0
+62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0
+-110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0
+72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0
+-100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0
+81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0
+-91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0
+96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0
+-81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0
+105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0
+-72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0
+115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0
+-62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0
+124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0
+-52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0
+134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0
+-43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0
+144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0
+-33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0
+153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0
+-24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0
+163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0
+-4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0
+0.00,0.00,7.20,0.00,1.00,0.00,0.00,0
+-177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0
+-168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0
+19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0
+38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0
+-139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0
+48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0
+-129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0
+57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0
+-120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0
+67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0
+-110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0
+76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0
+-100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0
+86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0
+-86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0
+96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0
+-76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0
+105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0
+-67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0
+115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0
+-57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0
+124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0
+-48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0
+134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0
+-38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0
+144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0
+-19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0
+163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0
+14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0
+-148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0
+33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0
+-139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0
+43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0
+-129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0
+52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0
+-120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0
+62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0
+72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0
+-100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0
+81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0
+-91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0
+96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0
+-81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0
+105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0
+-72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0
+115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0
+-62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0
+124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0
+-52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0
+134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0
+-43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0
+144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0
+-33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0
+153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0
+0.00,0.00,9.61,0.00,1.00,0.00,0.00,0
+-177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0
+48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0
+-129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0
+57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0
+-120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0
+67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0
+-110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0
+76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0
+-100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0
+86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0
+-86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0
+96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0
+-76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0
+105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0
+-67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0
+115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0
+-57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0
+124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0
+-48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0
+134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0
+163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0
+-9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0
+-148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0
+33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0
+-139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0
+43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0
+-129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0
+52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0
+-120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0
+62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0
+72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0
+-100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0
+81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0
+-91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0
+96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0
+-81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0
+105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0
+-72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0
+115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0
+-62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0
+124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0
+-52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0
+134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0
+-43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0
+144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0
+-33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0
+153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0
+-14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0
+172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0
+0.00,0.00,5.60,0.00,1.00,0.00,0.00,0
+-177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0
+-158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0
+28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0
+-148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0
+48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0
+-129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0
+57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0
+-120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0
+67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0
+-110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0
+76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0
+-100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0
+86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0
+-86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0
+96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0
+-76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0
+105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0
+-67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0
+115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0
+-57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0
+124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0
+-48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0
+134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0
+-28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0
+153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0
+-158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0
+-148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0
+33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0
+-139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0
+43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0
+-129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0
+52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0
+-120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0
+62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0
+-110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0
+72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0
+-100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0
+81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0
+-91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0
+96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0
+-81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0
+105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0
+-72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0
+115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0
+-62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0
+124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0
+-52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0
+134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0
+-43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0
+144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0
+-33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0
+153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0
+0.00,0.00,11.21,0.00,1.00,0.00,0.00,0
+-177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0
+28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0
+-148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0
+38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0
+-139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0
+48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0
+57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0
+-120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0
+67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0
+-110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0
+76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0
+-100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0
+86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0
+-86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0
+96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0
+-76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0
+105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0
+-67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0
+115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0
+-57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0
+124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0
+-48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0
+134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0
+-38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0
+144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0
+-28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0
+153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0
+-148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0
+-139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0
+43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0
+-129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0
+52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0
+-120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0
+62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0
+-110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0
+72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0
+-100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0
+81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0
+-91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0
+96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0
+-81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0
+105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0
+-72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0
+115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0
+-62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0
+124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0
+-52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0
+134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0
+-43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0
+-33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0
+153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0
+-24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0
+163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,3.99,0.00,1.00,0.00,0.00,0
+-177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0
+19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0
+-148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0
+33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0
+43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0
+52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0
+-120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0
+62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0
+-110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0
+76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0
+-100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0
+86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0
+-86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0
+96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0
+-76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0
+105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0
+-67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0
+120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0
+-57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0
+-48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0
+139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0
+148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0
+158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0
+163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0
+43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0
+-134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0
+-124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0
+62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0
+-110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0
+72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0
+-100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0
+81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0
+-91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0
+96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0
+-81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0
+105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0
+-72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0
+115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0
+-57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0
+124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0
+-48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0
+134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0
+-38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0
+-28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0
+-24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,12.82,0.00,1.00,0.00,0.00,0
+-177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0
+-148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0
+33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0
+-129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0
+-120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0
+62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0
+-110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0
+76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0
+-100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0
+86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0
+-86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0
+96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0
+-76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0
+110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0
+-67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0
+120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0
+-57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0
+-48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0
+-163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0
+33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0
+43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0
+-134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0
+62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0
+-115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0
+72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0
+-100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0
+81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0
+-91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0
+96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0
+-81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0
+105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0
+-67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0
+115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0
+-57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0
+124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0
+-48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0
+134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0
+-38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0
+144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0
+-14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,2.39,0.00,1.00,0.00,0.00,0
+-177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0
+33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0
+-144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0
+-134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0
+62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0
+-110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0
+72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0
+-100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0
+86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0
+-86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0
+96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0
+-76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0
+110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0
+-67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0
+120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0
+-52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0
+129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0
+-19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0
+28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0
+-144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0
+38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0
+-134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0
+48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0
+57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0
+-115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0
+72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0
+-105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0
+81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0
+-91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0
+96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0
+-81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0
+105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0
+-67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0
+120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0
+-57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0
+129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0
+-48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0
+139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0
+-38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0
+158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0
+0.00,0.00,14.42,0.00,1.00,0.00,0.00,0
+-177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0
+-163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0
+24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0
+28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0
+-144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0
+38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0
+-134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0
+48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0
+62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0
+-115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0
+72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0
+86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0
+-86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0
+96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0
+-76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0
+110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0
+-62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0
+120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0
+-52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0
+134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0
+158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0
+-148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0
+38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0
+-139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0
+48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0
+-129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0
+-115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0
+67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0
+-105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0
+81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0
+-91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0
+96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0
+105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0
+-67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0
+120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0
+-52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0
+129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0
+139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0
+163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0
+0.00,0.00,0.79,0.00,1.00,0.00,0.00,0
+-177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0
+4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0
+-163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0
+19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0
+-153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0
+28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0
+-148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0
+38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0
+-139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0
+48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0
+-124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0
+57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0
+-115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0
+72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0
+86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0
+-86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0
+100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0
+-76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0
+110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0
+-62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0
+124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0
+-48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0
+134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0
+-38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0
+-28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0
+-24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0
+163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0
+168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0
+9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0
+-158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0
+-148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0
+33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0
+-139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0
+43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0
+-129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0
+-120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0
+67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0
+-105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0
+81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0
+-91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0
+96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0
+110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0
+-67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0
+120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0
+-52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0
+134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0
+144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0
+153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0
+-24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0
+-19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0
+168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0
diff --git a/scripts/testv/stvOMASA_3ISM_2MASA1TC48c.met b/scripts/testv/stvOMASA_3ISM_2MASA1TC48c.met
new file mode 100644
index 0000000000000000000000000000000000000000..64688774087538a671ebfda830ff11b4f836f438
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_2MASA1TC48c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d125a4c4e3989ac55f9c2617f464431feae4ede9b2e15d087d3271c0a4a56303
+size 319800
diff --git a/scripts/testv/stvOMASA_3ISM_2MASA1TC48c_ISM1.csv b/scripts/testv/stvOMASA_3ISM_2MASA1TC48c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_2MASA1TC48c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_3ISM_2MASA1TC48c_ISM2.csv b/scripts/testv/stvOMASA_3ISM_2MASA1TC48c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_2MASA1TC48c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_3ISM_2MASA1TC48c_ISM3.csv b/scripts/testv/stvOMASA_3ISM_2MASA1TC48c_ISM3.csv
new file mode 100644
index 0000000000000000000000000000000000000000..14eee9b693b536fa2fd22d2813d7f588b8930b06
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_2MASA1TC48c_ISM3.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0
+-177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0
+4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0
+-168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0
+14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0
+-163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0
+19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0
+-153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0
+28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0
+-148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0
+38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0
+-139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0
+48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0
+-124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0
+57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0
+-115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0
+72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0
+-100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0
+86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0
+-86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0
+100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0
+-76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0
+110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0
+-62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0
+124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0
+-52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0
+134.40,33.60,0.28,0.00,1.00,177.60,0.00,0
+-38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0
+144.00,28.80,0.30,0.00,1.00,177.60,0.00,0
+-33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0
+153.60,24.00,0.32,0.00,1.00,177.60,0.00,0
+-24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0
+158.40,19.20,0.34,0.00,1.00,177.60,0.00,0
+-14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0
+168.00,9.60,0.36,0.00,1.00,177.60,0.00,0
+-9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0
+172.80,4.80,0.38,0.00,1.00,177.60,0.00,0
+-0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0
+-177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0
+4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0
+14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0
+19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0
+-158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0
+28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0
+-148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0
+33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0
+-139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0
+43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0
+-129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0
+57.60,38.40,15.47,0.00,1.00,177.60,0.00,0
+-120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0
+67.20,43.20,15.44,0.00,1.00,177.60,0.00,0
+-105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0
+81.60,43.20,15.42,0.00,1.00,177.60,0.00,0
+-91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0
+96.00,43.20,15.40,0.00,1.00,0.00,0.00,0
+-76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0
+110.40,43.20,15.38,0.00,1.00,0.00,0.00,0
+-67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0
+120.00,38.40,15.36,0.00,1.00,0.00,0.00,0
+-52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0
+129.60,38.40,15.34,0.00,1.00,0.00,0.00,0
+-43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0
+144.00,33.60,15.32,0.00,1.00,0.00,0.00,0
+-33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0
+148.80,24.00,15.30,0.00,1.00,0.00,0.00,0
+-24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0
+158.40,19.20,15.27,0.00,1.00,0.00,0.00,0
+-19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0
+168.00,14.40,15.25,0.00,1.00,0.00,0.00,0
+-9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0
+172.80,4.80,15.23,0.00,1.00,0.00,0.00,0
+-4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0
+0.00,0.00,15.21,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0
+9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0
+14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0
+-163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0
+24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0
+-153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0
+28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0
+-144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0
+38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0
+-134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0
+48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0
+-124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0
+62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0
+-115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0
+72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0
+-100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0
+86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0
+-86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0
+96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0
+-76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0
+110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0
+-62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0
+120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0
+-52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0
+134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0
+-43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0
+144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0
+-33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0
+148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0
+-24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0
+158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0
+-19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0
+168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0
+-9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0
+172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0
+4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0
+14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0
+19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0
+-153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0
+28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0
+-148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0
+38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0
+-139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0
+48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0
+-124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0
+57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0
+-115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0
+72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0
+-105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0
+81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0
+-91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0
+96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0
+-76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0
+105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0
+-67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0
+120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0
+-57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0
+129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0
+-43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0
+139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0
+-33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0
+148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0
+-28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0
+158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0
+-19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0
+163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0
+-9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0
+172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0
+0.00,0.00,1.60,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0
+9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0
+14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0
+-158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0
+24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0
+-153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0
+33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0
+-144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0
+43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0
+-134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0
+52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0
+-124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0
+62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0
+-110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0
+72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0
+-100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0
+86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0
+-86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0
+96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0
+-76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0
+110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0
+-67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0
+120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0
+-52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0
+129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0
+-43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0
+139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0
+-33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0
+148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0
+-24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0
+158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0
+-19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0
+168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0
+172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0
+14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0
+-163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0
+24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0
+-153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0
+28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0
+-144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0
+38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0
+-134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0
+48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0
+-124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0
+62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0
+-115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0
+72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0
+-100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0
+81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0
+-91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0
+96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0
+-81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0
+105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0
+-67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0
+115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0
+-57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0
+129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0
+-48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0
+139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0
+-38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0
+148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0
+-28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0
+153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0
+-19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0
+163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0
+-9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0
+172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0
+0.00,0.00,13.61,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0
+9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0
+-168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0
+24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0
+-148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0
+33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0
+-139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0
+43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0
+-129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0
+52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0
+-120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0
+62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0
+-110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0
+76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0
+-100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0
+86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0
+-86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0
+96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0
+-76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0
+105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0
+-67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0
+120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0
+-57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0
+129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0
+-48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0
+139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0
+-38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0
+148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0
+158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0
+-19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0
+163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0
+172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0
+4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0
+14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0
+-163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0
+24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0
+-153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0
+33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0
+-144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0
+43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0
+-134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0
+52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0
+-124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0
+62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0
+-115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0
+72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0
+-100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0
+81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0
+-91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0
+96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0
+-81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0
+105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0
+-67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0
+115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0
+-57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0
+124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0
+-48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0
+134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0
+-38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0
+144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0
+-28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0
+153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0
+-19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0
+163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0
+-14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0
+172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0
+-4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0
+0.00,0.00,3.20,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0
+9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0
+19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0
+24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0
+-148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0
+33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0
+-139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0
+43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0
+-129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0
+52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0
+-120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0
+67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0
+-110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0
+76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0
+-100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0
+86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0
+-86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0
+96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0
+-76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0
+105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0
+-67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0
+115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0
+-57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0
+129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0
+-48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0
+139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0
+-38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0
+148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0
+153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0
+-19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0
+163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0
+172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0
+4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0
+14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0
+24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0
+-153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0
+33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0
+-144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0
+43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0
+-134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0
+52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0
+-124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0
+62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0
+-110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0
+72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0
+-100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0
+81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0
+-91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0
+96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0
+-81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0
+105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0
+-72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0
+115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0
+-57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0
+124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0
+-48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0
+134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0
+-38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0
+144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0
+-28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0
+153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0
+-24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0
+163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0
+-14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0
+172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,12.01,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0
+9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0
+-158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0
+28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0
+-148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0
+38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0
+-139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0
+48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0
+-129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0
+57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0
+-120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0
+67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0
+-110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0
+76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0
+-100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0
+86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0
+-86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0
+96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0
+-76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0
+105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0
+-67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0
+115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0
+-57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0
+124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0
+-48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0
+134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0
+-38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0
+144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0
+-28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0
+153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0
+-19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0
+163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0
+172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0
+4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0
+14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0
+24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0
+-148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0
+33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0
+-139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0
+43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0
+-129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0
+52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0
+-120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0
+62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0
+-110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0
+72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0
+-100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0
+81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0
+-91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0
+96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0
+-81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0
+105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0
+-72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0
+115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0
+-62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0
+124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0
+-52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0
+134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0
+-43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0
+144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0
+-33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0
+153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0
+-24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0
+163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0
+172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0
+0.00,0.00,4.81,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0
+9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0
+19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0
+28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0
+-148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0
+38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0
+-139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0
+48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0
+-129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0
+57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0
+-120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0
+67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0
+-110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0
+76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0
+-100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0
+86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0
+-86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0
+96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0
+-76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0
+105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0
+-67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0
+115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0
+-57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0
+124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0
+-48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0
+134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0
+-38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0
+144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0
+-28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0
+153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0
+-19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0
+163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0
+-9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0
+172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0
+4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0
+14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0
+24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0
+-148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0
+33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0
+-139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0
+43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0
+-129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0
+52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0
+-120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0
+62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0
+-110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0
+72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0
+-100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0
+81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0
+-91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0
+96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0
+-81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0
+105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0
+-72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0
+115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0
+-62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0
+124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0
+-52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0
+134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0
+-43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0
+144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0
+-33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0
+153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0
+-24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0
+163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0
+172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+0.00,0.00,10.40,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0
+9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0
+19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0
+28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0
+-148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0
+38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0
+-139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0
+48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0
+-129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0
+57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0
+-120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0
+67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0
+-110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0
+76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0
+-100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0
+86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0
+-86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0
+96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0
+-76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0
+105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0
+-67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0
+115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0
+-57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0
+124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0
+-48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0
+134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0
+-38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0
+144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0
+-28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0
+153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0
+163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0
+-9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0
+172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0
+4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0
+14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0
+24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0
+33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0
+-139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0
+43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0
+-129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0
+52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0
+-120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0
+62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0
+-110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0
+72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0
+-100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0
+81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0
+-91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0
+96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0
+-81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0
+105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0
+-72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0
+115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0
+-62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0
+124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0
+-52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0
+134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0
+-43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0
+144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0
+-33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0
+153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0
+-24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0
+163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0
+172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,6.41,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0
+9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0
+19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0
+-158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0
+28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0
+-148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0
+38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0
+-139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0
+48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0
+-129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0
+57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0
+-120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0
+67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0
+-110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0
+76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0
+-100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0
+86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0
+-86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0
+96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0
+-76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0
+105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0
+-67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0
+115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0
+-57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0
+124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0
+-48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0
+134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0
+-38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0
+144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0
+-28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0
+153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0
+163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0
+172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0
+4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0
+14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0
+-158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0
+24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0
+33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0
+-139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0
+43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0
+-129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0
+52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0
+-120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0
+62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0
+-110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0
+72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0
+-100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0
+81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0
+-91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0
+96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0
+-81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0
+105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0
+-72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0
+115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0
+-62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0
+124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0
+-52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0
+134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0
+-43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0
+144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0
+-33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0
+153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0
+-24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0
+163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0
+-14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0
+172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.80,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0
+9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0
+19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0
+-158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0
+28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0
+-148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0
+38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0
+-139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0
+48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0
+-129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0
+57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0
+-120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0
+67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0
+-110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0
+76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0
+-100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0
+86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0
+-86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0
+96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0
+-76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0
+105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0
+-67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0
+115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0
+-57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0
+124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0
+-48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0
+134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0
+-38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0
+144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0
+-28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0
+153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0
+-19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0
+163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0
+172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0
+-0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0
+4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0
+-168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0
+14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0
+-158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0
+24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0
+-148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0
+33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0
+-139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0
+43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0
+-129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0
+52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0
+-120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0
+62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0
+-110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0
+72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0
+-100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0
+81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0
+-91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0
+96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0
+-81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0
+105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0
+-72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0
+115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0
+-62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0
+124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0
+-52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0
+134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0
+-43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0
+144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0
+-33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0
+153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0
+-24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0
+163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0
+-14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0
+172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.01,0.00,1.00,0.00,0.00,0
+-177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0
+-168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0
+19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0
+-158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0
+28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0
+-148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0
+38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0
+-139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0
+48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0
+-129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0
+57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0
+-120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0
+67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0
+-110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0
+76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0
+-100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0
+86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0
+-86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0
+96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0
+-76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0
+105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0
+-67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0
+115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0
+-57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0
+124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0
+-48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0
+134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0
+-38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0
+144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0
+-28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0
+153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0
+-19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0
+163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0
+172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0
+14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0
+-158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0
+24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0
+-148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0
+33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0
+-139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0
+43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0
+-129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0
+52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0
+-120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0
+62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0
+-110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0
+72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0
+-100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0
+81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0
+-91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0
+96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0
+-81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0
+105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0
+-72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0
+115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0
+-62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0
+124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0
+-52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0
+134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0
+-43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0
+144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0
+-33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0
+153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0
+-24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0
+163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0
+-4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0
+0.00,0.00,7.20,0.00,1.00,0.00,0.00,0
+-177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0
+-168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0
+19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0
+38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0
+-139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0
+48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0
+-129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0
+57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0
+-120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0
+67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0
+-110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0
+76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0
+-100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0
+86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0
+-86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0
+96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0
+-76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0
+105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0
+-67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0
+115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0
+-57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0
+124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0
+-48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0
+134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0
+-38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0
+144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0
+-19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0
+163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0
+14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0
+-148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0
+33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0
+-139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0
+43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0
+-129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0
+52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0
+-120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0
+62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0
+72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0
+-100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0
+81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0
+-91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0
+96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0
+-81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0
+105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0
+-72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0
+115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0
+-62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0
+124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0
+-52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0
+134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0
+-43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0
+144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0
+-33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0
+153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0
+0.00,0.00,9.61,0.00,1.00,0.00,0.00,0
+-177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0
+48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0
+-129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0
+57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0
+-120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0
+67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0
+-110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0
+76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0
+-100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0
+86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0
+-86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0
+96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0
+-76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0
+105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0
+-67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0
+115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0
+-57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0
+124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0
+-48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0
+134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0
+163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0
+-9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0
+-148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0
+33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0
+-139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0
+43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0
+-129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0
+52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0
+-120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0
+62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0
+72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0
+-100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0
+81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0
+-91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0
+96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0
+-81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0
+105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0
+-72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0
+115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0
+-62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0
+124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0
+-52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0
+134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0
+-43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0
+144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0
+-33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0
+153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0
+-14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0
+172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0
+0.00,0.00,5.60,0.00,1.00,0.00,0.00,0
+-177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0
+-158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0
+28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0
+-148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0
+48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0
+-129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0
+57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0
+-120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0
+67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0
+-110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0
+76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0
+-100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0
+86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0
+-86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0
+96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0
+-76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0
+105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0
+-67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0
+115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0
+-57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0
+124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0
+-48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0
+134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0
+-28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0
+153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0
+-158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0
+-148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0
+33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0
+-139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0
+43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0
+-129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0
+52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0
+-120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0
+62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0
+-110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0
+72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0
+-100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0
+81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0
+-91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0
+96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0
+-81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0
+105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0
+-72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0
+115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0
+-62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0
+124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0
+-52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0
+134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0
+-43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0
+144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0
+-33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0
+153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0
+0.00,0.00,11.21,0.00,1.00,0.00,0.00,0
+-177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0
+28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0
+-148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0
+38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0
+-139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0
+48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0
+57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0
+-120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0
+67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0
+-110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0
+76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0
+-100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0
+86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0
+-86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0
+96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0
+-76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0
+105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0
+-67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0
+115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0
+-57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0
+124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0
+-48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0
+134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0
+-38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0
+144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0
+-28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0
+153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0
+-148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0
+-139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0
+43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0
+-129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0
+52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0
+-120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0
+62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0
+-110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0
+72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0
+-100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0
+81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0
+-91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0
+96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0
+-81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0
+105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0
+-72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0
+115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0
+-62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0
+124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0
+-52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0
+134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0
+-43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0
+-33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0
+153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0
+-24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0
+163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,3.99,0.00,1.00,0.00,0.00,0
+-177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0
+19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0
+-148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0
+33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0
+43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0
+52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0
+-120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0
+62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0
+-110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0
+76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0
+-100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0
+86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0
+-86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0
+96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0
+-76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0
+105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0
+-67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0
+120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0
+-57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0
+-48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0
+139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0
+148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0
+158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0
+163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0
+43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0
+-134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0
+-124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0
+62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0
+-110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0
+72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0
+-100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0
+81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0
+-91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0
+96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0
+-81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0
+105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0
+-72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0
+115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0
+-57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0
+124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0
+-48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0
+134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0
+-38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0
+-28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0
+-24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,12.82,0.00,1.00,0.00,0.00,0
+-177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0
+-148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0
+33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0
+-129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0
+-120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0
+62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0
+-110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0
+76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0
+-100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0
+86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0
+-86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0
+96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0
+-76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0
+110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0
+-67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0
+120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0
+-57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0
+-48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0
+-163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0
+33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0
+43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0
+-134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0
+62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0
+-115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0
+72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0
+-100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0
+81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0
+-91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0
+96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0
+-81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0
+105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0
+-67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0
+115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0
+-57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0
+124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0
+-48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0
+134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0
+-38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0
+144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0
+-14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,2.39,0.00,1.00,0.00,0.00,0
+-177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0
+33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0
+-144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0
+-134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0
+62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0
+-110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0
+72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0
+-100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0
+86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0
+-86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0
+96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0
+-76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0
+110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0
+-67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0
+120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0
+-52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0
+129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0
+-19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0
+28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0
+-144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0
+38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0
+-134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0
+48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0
+57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0
+-115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0
+72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0
+-105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0
+81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0
+-91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0
+96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0
+-81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0
+105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0
+-67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0
+120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0
+-57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0
+129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0
+-48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0
+139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0
+-38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0
+158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0
+0.00,0.00,14.42,0.00,1.00,0.00,0.00,0
+-177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0
+-163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0
+24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0
+28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0
+-144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0
+38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0
+-134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0
+48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0
+62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0
+-115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0
+72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0
+86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0
+-86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0
+96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0
+-76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0
+110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0
+-62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0
+120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0
+-52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0
+134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0
+158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0
+-148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0
+38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0
+-139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0
+48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0
+-129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0
+-115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0
+67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0
+-105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0
+81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0
+-91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0
+96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0
+105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0
+-67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0
+120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0
+-52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0
+129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0
+139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0
+163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0
+0.00,0.00,0.79,0.00,1.00,0.00,0.00,0
+-177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0
+4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0
+-163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0
+19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0
+-153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0
+28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0
+-148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0
+38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0
+-139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0
+48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0
+-124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0
+57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0
+-115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0
+72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0
+86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0
+-86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0
+100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0
+-76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0
+110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0
+-62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0
+124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0
+-48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0
+134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0
+-38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0
+-28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0
+-24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0
+163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0
+168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0
+9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0
+-158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0
+-148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0
+33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0
+-139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0
+43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0
+-129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0
+-120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0
+67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0
+-105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0
+81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0
+-91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0
+96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0
+110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0
+-67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0
+120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0
+-52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0
+134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0
+144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0
+153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0
+-24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0
+-19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0
+168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0
diff --git a/scripts/testv/stvOMASA_3ISM_2MASA2TC16c.met b/scripts/testv/stvOMASA_3ISM_2MASA2TC16c.met
new file mode 100644
index 0000000000000000000000000000000000000000..1b62022af572fc4f198e4212cca88d51913ec3c4
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_2MASA2TC16c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2eb412d646d7a32c77413dea54dc44cf45dc49e6d8c2de19abe4f4b93a91fa4a
+size 159900
diff --git a/scripts/testv/stvOMASA_3ISM_2MASA2TC16c.wav b/scripts/testv/stvOMASA_3ISM_2MASA2TC16c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..51bafc78b39e84bb65a7335c441b9c67764908a5
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_2MASA2TC16c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a84cb8f1810eec20874e28aa0530e289d7ce10f7360b70283680fd4324604511
+size 480080
diff --git a/scripts/testv/stvOMASA_3ISM_2MASA2TC16c_ISM1.csv b/scripts/testv/stvOMASA_3ISM_2MASA2TC16c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_2MASA2TC16c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_3ISM_2MASA2TC16c_ISM2.csv b/scripts/testv/stvOMASA_3ISM_2MASA2TC16c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_2MASA2TC16c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_3ISM_2MASA2TC16c_ISM3.csv b/scripts/testv/stvOMASA_3ISM_2MASA2TC16c_ISM3.csv
new file mode 100644
index 0000000000000000000000000000000000000000..14eee9b693b536fa2fd22d2813d7f588b8930b06
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_2MASA2TC16c_ISM3.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0
+-177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0
+4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0
+-168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0
+14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0
+-163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0
+19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0
+-153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0
+28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0
+-148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0
+38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0
+-139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0
+48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0
+-124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0
+57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0
+-115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0
+72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0
+-100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0
+86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0
+-86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0
+100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0
+-76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0
+110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0
+-62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0
+124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0
+-52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0
+134.40,33.60,0.28,0.00,1.00,177.60,0.00,0
+-38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0
+144.00,28.80,0.30,0.00,1.00,177.60,0.00,0
+-33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0
+153.60,24.00,0.32,0.00,1.00,177.60,0.00,0
+-24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0
+158.40,19.20,0.34,0.00,1.00,177.60,0.00,0
+-14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0
+168.00,9.60,0.36,0.00,1.00,177.60,0.00,0
+-9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0
+172.80,4.80,0.38,0.00,1.00,177.60,0.00,0
+-0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0
+-177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0
+4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0
+14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0
+19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0
+-158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0
+28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0
+-148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0
+33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0
+-139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0
+43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0
+-129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0
+57.60,38.40,15.47,0.00,1.00,177.60,0.00,0
+-120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0
+67.20,43.20,15.44,0.00,1.00,177.60,0.00,0
+-105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0
+81.60,43.20,15.42,0.00,1.00,177.60,0.00,0
+-91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0
+96.00,43.20,15.40,0.00,1.00,0.00,0.00,0
+-76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0
+110.40,43.20,15.38,0.00,1.00,0.00,0.00,0
+-67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0
+120.00,38.40,15.36,0.00,1.00,0.00,0.00,0
+-52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0
+129.60,38.40,15.34,0.00,1.00,0.00,0.00,0
+-43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0
+144.00,33.60,15.32,0.00,1.00,0.00,0.00,0
+-33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0
+148.80,24.00,15.30,0.00,1.00,0.00,0.00,0
+-24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0
+158.40,19.20,15.27,0.00,1.00,0.00,0.00,0
+-19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0
+168.00,14.40,15.25,0.00,1.00,0.00,0.00,0
+-9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0
+172.80,4.80,15.23,0.00,1.00,0.00,0.00,0
+-4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0
+0.00,0.00,15.21,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0
+9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0
+14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0
+-163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0
+24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0
+-153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0
+28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0
+-144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0
+38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0
+-134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0
+48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0
+-124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0
+62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0
+-115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0
+72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0
+-100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0
+86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0
+-86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0
+96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0
+-76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0
+110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0
+-62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0
+120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0
+-52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0
+134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0
+-43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0
+144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0
+-33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0
+148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0
+-24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0
+158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0
+-19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0
+168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0
+-9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0
+172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0
+4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0
+14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0
+19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0
+-153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0
+28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0
+-148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0
+38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0
+-139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0
+48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0
+-124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0
+57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0
+-115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0
+72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0
+-105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0
+81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0
+-91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0
+96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0
+-76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0
+105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0
+-67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0
+120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0
+-57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0
+129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0
+-43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0
+139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0
+-33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0
+148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0
+-28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0
+158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0
+-19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0
+163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0
+-9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0
+172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0
+0.00,0.00,1.60,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0
+9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0
+14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0
+-158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0
+24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0
+-153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0
+33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0
+-144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0
+43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0
+-134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0
+52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0
+-124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0
+62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0
+-110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0
+72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0
+-100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0
+86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0
+-86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0
+96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0
+-76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0
+110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0
+-67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0
+120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0
+-52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0
+129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0
+-43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0
+139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0
+-33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0
+148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0
+-24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0
+158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0
+-19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0
+168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0
+172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0
+14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0
+-163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0
+24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0
+-153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0
+28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0
+-144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0
+38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0
+-134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0
+48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0
+-124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0
+62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0
+-115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0
+72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0
+-100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0
+81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0
+-91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0
+96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0
+-81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0
+105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0
+-67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0
+115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0
+-57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0
+129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0
+-48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0
+139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0
+-38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0
+148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0
+-28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0
+153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0
+-19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0
+163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0
+-9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0
+172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0
+0.00,0.00,13.61,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0
+9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0
+-168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0
+24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0
+-148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0
+33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0
+-139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0
+43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0
+-129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0
+52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0
+-120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0
+62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0
+-110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0
+76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0
+-100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0
+86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0
+-86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0
+96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0
+-76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0
+105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0
+-67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0
+120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0
+-57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0
+129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0
+-48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0
+139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0
+-38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0
+148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0
+158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0
+-19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0
+163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0
+172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0
+4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0
+14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0
+-163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0
+24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0
+-153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0
+33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0
+-144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0
+43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0
+-134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0
+52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0
+-124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0
+62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0
+-115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0
+72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0
+-100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0
+81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0
+-91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0
+96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0
+-81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0
+105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0
+-67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0
+115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0
+-57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0
+124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0
+-48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0
+134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0
+-38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0
+144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0
+-28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0
+153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0
+-19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0
+163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0
+-14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0
+172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0
+-4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0
+0.00,0.00,3.20,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0
+9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0
+19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0
+24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0
+-148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0
+33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0
+-139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0
+43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0
+-129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0
+52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0
+-120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0
+67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0
+-110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0
+76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0
+-100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0
+86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0
+-86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0
+96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0
+-76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0
+105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0
+-67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0
+115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0
+-57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0
+129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0
+-48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0
+139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0
+-38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0
+148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0
+153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0
+-19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0
+163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0
+172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0
+4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0
+14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0
+24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0
+-153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0
+33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0
+-144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0
+43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0
+-134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0
+52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0
+-124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0
+62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0
+-110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0
+72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0
+-100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0
+81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0
+-91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0
+96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0
+-81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0
+105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0
+-72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0
+115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0
+-57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0
+124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0
+-48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0
+134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0
+-38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0
+144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0
+-28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0
+153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0
+-24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0
+163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0
+-14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0
+172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,12.01,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0
+9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0
+-158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0
+28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0
+-148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0
+38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0
+-139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0
+48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0
+-129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0
+57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0
+-120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0
+67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0
+-110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0
+76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0
+-100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0
+86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0
+-86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0
+96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0
+-76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0
+105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0
+-67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0
+115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0
+-57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0
+124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0
+-48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0
+134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0
+-38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0
+144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0
+-28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0
+153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0
+-19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0
+163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0
+172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0
+4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0
+14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0
+24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0
+-148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0
+33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0
+-139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0
+43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0
+-129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0
+52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0
+-120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0
+62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0
+-110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0
+72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0
+-100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0
+81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0
+-91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0
+96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0
+-81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0
+105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0
+-72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0
+115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0
+-62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0
+124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0
+-52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0
+134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0
+-43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0
+144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0
+-33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0
+153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0
+-24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0
+163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0
+172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0
+0.00,0.00,4.81,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0
+9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0
+19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0
+28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0
+-148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0
+38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0
+-139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0
+48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0
+-129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0
+57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0
+-120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0
+67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0
+-110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0
+76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0
+-100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0
+86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0
+-86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0
+96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0
+-76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0
+105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0
+-67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0
+115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0
+-57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0
+124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0
+-48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0
+134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0
+-38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0
+144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0
+-28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0
+153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0
+-19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0
+163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0
+-9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0
+172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0
+4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0
+14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0
+24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0
+-148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0
+33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0
+-139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0
+43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0
+-129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0
+52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0
+-120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0
+62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0
+-110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0
+72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0
+-100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0
+81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0
+-91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0
+96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0
+-81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0
+105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0
+-72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0
+115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0
+-62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0
+124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0
+-52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0
+134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0
+-43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0
+144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0
+-33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0
+153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0
+-24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0
+163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0
+172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+0.00,0.00,10.40,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0
+9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0
+19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0
+28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0
+-148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0
+38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0
+-139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0
+48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0
+-129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0
+57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0
+-120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0
+67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0
+-110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0
+76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0
+-100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0
+86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0
+-86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0
+96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0
+-76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0
+105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0
+-67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0
+115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0
+-57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0
+124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0
+-48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0
+134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0
+-38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0
+144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0
+-28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0
+153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0
+163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0
+-9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0
+172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0
+4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0
+14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0
+24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0
+33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0
+-139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0
+43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0
+-129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0
+52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0
+-120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0
+62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0
+-110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0
+72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0
+-100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0
+81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0
+-91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0
+96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0
+-81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0
+105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0
+-72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0
+115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0
+-62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0
+124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0
+-52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0
+134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0
+-43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0
+144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0
+-33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0
+153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0
+-24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0
+163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0
+172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,6.41,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0
+9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0
+19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0
+-158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0
+28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0
+-148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0
+38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0
+-139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0
+48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0
+-129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0
+57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0
+-120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0
+67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0
+-110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0
+76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0
+-100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0
+86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0
+-86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0
+96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0
+-76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0
+105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0
+-67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0
+115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0
+-57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0
+124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0
+-48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0
+134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0
+-38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0
+144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0
+-28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0
+153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0
+163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0
+172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0
+4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0
+14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0
+-158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0
+24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0
+33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0
+-139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0
+43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0
+-129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0
+52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0
+-120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0
+62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0
+-110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0
+72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0
+-100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0
+81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0
+-91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0
+96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0
+-81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0
+105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0
+-72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0
+115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0
+-62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0
+124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0
+-52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0
+134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0
+-43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0
+144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0
+-33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0
+153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0
+-24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0
+163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0
+-14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0
+172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.80,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0
+9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0
+19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0
+-158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0
+28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0
+-148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0
+38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0
+-139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0
+48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0
+-129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0
+57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0
+-120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0
+67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0
+-110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0
+76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0
+-100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0
+86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0
+-86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0
+96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0
+-76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0
+105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0
+-67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0
+115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0
+-57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0
+124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0
+-48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0
+134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0
+-38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0
+144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0
+-28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0
+153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0
+-19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0
+163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0
+172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0
+-0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0
+4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0
+-168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0
+14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0
+-158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0
+24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0
+-148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0
+33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0
+-139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0
+43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0
+-129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0
+52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0
+-120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0
+62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0
+-110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0
+72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0
+-100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0
+81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0
+-91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0
+96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0
+-81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0
+105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0
+-72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0
+115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0
+-62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0
+124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0
+-52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0
+134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0
+-43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0
+144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0
+-33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0
+153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0
+-24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0
+163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0
+-14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0
+172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.01,0.00,1.00,0.00,0.00,0
+-177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0
+-168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0
+19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0
+-158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0
+28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0
+-148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0
+38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0
+-139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0
+48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0
+-129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0
+57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0
+-120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0
+67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0
+-110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0
+76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0
+-100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0
+86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0
+-86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0
+96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0
+-76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0
+105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0
+-67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0
+115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0
+-57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0
+124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0
+-48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0
+134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0
+-38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0
+144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0
+-28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0
+153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0
+-19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0
+163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0
+172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0
+14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0
+-158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0
+24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0
+-148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0
+33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0
+-139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0
+43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0
+-129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0
+52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0
+-120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0
+62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0
+-110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0
+72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0
+-100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0
+81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0
+-91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0
+96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0
+-81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0
+105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0
+-72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0
+115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0
+-62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0
+124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0
+-52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0
+134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0
+-43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0
+144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0
+-33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0
+153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0
+-24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0
+163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0
+-4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0
+0.00,0.00,7.20,0.00,1.00,0.00,0.00,0
+-177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0
+-168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0
+19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0
+38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0
+-139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0
+48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0
+-129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0
+57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0
+-120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0
+67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0
+-110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0
+76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0
+-100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0
+86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0
+-86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0
+96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0
+-76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0
+105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0
+-67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0
+115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0
+-57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0
+124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0
+-48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0
+134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0
+-38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0
+144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0
+-19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0
+163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0
+14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0
+-148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0
+33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0
+-139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0
+43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0
+-129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0
+52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0
+-120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0
+62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0
+72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0
+-100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0
+81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0
+-91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0
+96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0
+-81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0
+105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0
+-72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0
+115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0
+-62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0
+124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0
+-52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0
+134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0
+-43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0
+144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0
+-33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0
+153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0
+0.00,0.00,9.61,0.00,1.00,0.00,0.00,0
+-177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0
+48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0
+-129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0
+57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0
+-120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0
+67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0
+-110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0
+76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0
+-100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0
+86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0
+-86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0
+96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0
+-76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0
+105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0
+-67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0
+115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0
+-57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0
+124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0
+-48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0
+134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0
+163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0
+-9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0
+-148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0
+33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0
+-139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0
+43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0
+-129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0
+52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0
+-120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0
+62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0
+72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0
+-100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0
+81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0
+-91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0
+96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0
+-81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0
+105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0
+-72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0
+115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0
+-62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0
+124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0
+-52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0
+134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0
+-43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0
+144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0
+-33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0
+153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0
+-14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0
+172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0
+0.00,0.00,5.60,0.00,1.00,0.00,0.00,0
+-177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0
+-158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0
+28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0
+-148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0
+48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0
+-129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0
+57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0
+-120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0
+67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0
+-110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0
+76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0
+-100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0
+86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0
+-86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0
+96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0
+-76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0
+105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0
+-67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0
+115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0
+-57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0
+124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0
+-48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0
+134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0
+-28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0
+153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0
+-158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0
+-148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0
+33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0
+-139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0
+43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0
+-129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0
+52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0
+-120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0
+62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0
+-110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0
+72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0
+-100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0
+81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0
+-91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0
+96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0
+-81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0
+105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0
+-72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0
+115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0
+-62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0
+124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0
+-52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0
+134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0
+-43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0
+144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0
+-33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0
+153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0
+0.00,0.00,11.21,0.00,1.00,0.00,0.00,0
+-177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0
+28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0
+-148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0
+38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0
+-139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0
+48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0
+57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0
+-120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0
+67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0
+-110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0
+76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0
+-100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0
+86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0
+-86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0
+96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0
+-76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0
+105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0
+-67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0
+115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0
+-57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0
+124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0
+-48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0
+134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0
+-38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0
+144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0
+-28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0
+153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0
+-148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0
+-139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0
+43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0
+-129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0
+52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0
+-120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0
+62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0
+-110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0
+72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0
+-100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0
+81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0
+-91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0
+96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0
+-81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0
+105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0
+-72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0
+115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0
+-62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0
+124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0
+-52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0
+134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0
+-43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0
+-33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0
+153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0
+-24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0
+163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,3.99,0.00,1.00,0.00,0.00,0
+-177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0
+19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0
+-148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0
+33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0
+43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0
+52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0
+-120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0
+62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0
+-110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0
+76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0
+-100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0
+86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0
+-86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0
+96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0
+-76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0
+105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0
+-67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0
+120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0
+-57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0
+-48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0
+139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0
+148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0
+158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0
+163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0
+43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0
+-134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0
+-124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0
+62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0
+-110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0
+72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0
+-100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0
+81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0
+-91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0
+96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0
+-81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0
+105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0
+-72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0
+115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0
+-57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0
+124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0
+-48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0
+134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0
+-38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0
+-28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0
+-24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,12.82,0.00,1.00,0.00,0.00,0
+-177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0
+-148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0
+33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0
+-129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0
+-120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0
+62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0
+-110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0
+76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0
+-100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0
+86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0
+-86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0
+96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0
+-76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0
+110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0
+-67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0
+120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0
+-57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0
+-48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0
+-163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0
+33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0
+43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0
+-134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0
+62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0
+-115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0
+72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0
+-100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0
+81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0
+-91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0
+96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0
+-81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0
+105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0
+-67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0
+115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0
+-57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0
+124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0
+-48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0
+134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0
+-38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0
+144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0
+-14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,2.39,0.00,1.00,0.00,0.00,0
+-177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0
+33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0
+-144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0
+-134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0
+62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0
+-110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0
+72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0
+-100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0
+86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0
+-86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0
+96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0
+-76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0
+110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0
+-67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0
+120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0
+-52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0
+129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0
+-19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0
+28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0
+-144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0
+38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0
+-134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0
+48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0
+57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0
+-115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0
+72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0
+-105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0
+81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0
+-91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0
+96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0
+-81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0
+105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0
+-67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0
+120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0
+-57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0
+129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0
+-48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0
+139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0
+-38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0
+158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0
+0.00,0.00,14.42,0.00,1.00,0.00,0.00,0
+-177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0
+-163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0
+24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0
+28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0
+-144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0
+38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0
+-134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0
+48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0
+62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0
+-115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0
+72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0
+86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0
+-86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0
+96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0
+-76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0
+110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0
+-62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0
+120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0
+-52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0
+134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0
+158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0
+-148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0
+38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0
+-139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0
+48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0
+-129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0
+-115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0
+67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0
+-105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0
+81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0
+-91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0
+96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0
+105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0
+-67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0
+120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0
+-52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0
+129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0
+139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0
+163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0
+0.00,0.00,0.79,0.00,1.00,0.00,0.00,0
+-177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0
+4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0
+-163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0
+19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0
+-153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0
+28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0
+-148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0
+38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0
+-139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0
+48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0
+-124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0
+57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0
+-115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0
+72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0
+86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0
+-86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0
+100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0
+-76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0
+110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0
+-62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0
+124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0
+-48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0
+134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0
+-38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0
+-28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0
+-24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0
+163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0
+168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0
+9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0
+-158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0
+-148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0
+33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0
+-139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0
+43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0
+-129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0
+-120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0
+67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0
+-105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0
+81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0
+-91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0
+96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0
+110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0
+-67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0
+120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0
+-52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0
+134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0
+144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0
+153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0
+-24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0
+-19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0
+168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0
diff --git a/scripts/testv/stvOMASA_3ISM_2MASA2TC32c.met b/scripts/testv/stvOMASA_3ISM_2MASA2TC32c.met
new file mode 100644
index 0000000000000000000000000000000000000000..1b62022af572fc4f198e4212cca88d51913ec3c4
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_2MASA2TC32c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2eb412d646d7a32c77413dea54dc44cf45dc49e6d8c2de19abe4f4b93a91fa4a
+size 159900
diff --git a/scripts/testv/stvOMASA_3ISM_2MASA2TC32c_ISM1.csv b/scripts/testv/stvOMASA_3ISM_2MASA2TC32c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_2MASA2TC32c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_3ISM_2MASA2TC32c_ISM2.csv b/scripts/testv/stvOMASA_3ISM_2MASA2TC32c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_2MASA2TC32c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_3ISM_2MASA2TC32c_ISM3.csv b/scripts/testv/stvOMASA_3ISM_2MASA2TC32c_ISM3.csv
new file mode 100644
index 0000000000000000000000000000000000000000..14eee9b693b536fa2fd22d2813d7f588b8930b06
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_2MASA2TC32c_ISM3.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0
+-177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0
+4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0
+-168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0
+14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0
+-163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0
+19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0
+-153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0
+28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0
+-148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0
+38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0
+-139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0
+48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0
+-124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0
+57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0
+-115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0
+72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0
+-100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0
+86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0
+-86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0
+100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0
+-76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0
+110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0
+-62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0
+124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0
+-52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0
+134.40,33.60,0.28,0.00,1.00,177.60,0.00,0
+-38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0
+144.00,28.80,0.30,0.00,1.00,177.60,0.00,0
+-33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0
+153.60,24.00,0.32,0.00,1.00,177.60,0.00,0
+-24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0
+158.40,19.20,0.34,0.00,1.00,177.60,0.00,0
+-14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0
+168.00,9.60,0.36,0.00,1.00,177.60,0.00,0
+-9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0
+172.80,4.80,0.38,0.00,1.00,177.60,0.00,0
+-0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0
+-177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0
+4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0
+14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0
+19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0
+-158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0
+28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0
+-148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0
+33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0
+-139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0
+43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0
+-129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0
+57.60,38.40,15.47,0.00,1.00,177.60,0.00,0
+-120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0
+67.20,43.20,15.44,0.00,1.00,177.60,0.00,0
+-105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0
+81.60,43.20,15.42,0.00,1.00,177.60,0.00,0
+-91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0
+96.00,43.20,15.40,0.00,1.00,0.00,0.00,0
+-76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0
+110.40,43.20,15.38,0.00,1.00,0.00,0.00,0
+-67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0
+120.00,38.40,15.36,0.00,1.00,0.00,0.00,0
+-52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0
+129.60,38.40,15.34,0.00,1.00,0.00,0.00,0
+-43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0
+144.00,33.60,15.32,0.00,1.00,0.00,0.00,0
+-33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0
+148.80,24.00,15.30,0.00,1.00,0.00,0.00,0
+-24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0
+158.40,19.20,15.27,0.00,1.00,0.00,0.00,0
+-19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0
+168.00,14.40,15.25,0.00,1.00,0.00,0.00,0
+-9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0
+172.80,4.80,15.23,0.00,1.00,0.00,0.00,0
+-4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0
+0.00,0.00,15.21,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0
+9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0
+14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0
+-163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0
+24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0
+-153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0
+28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0
+-144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0
+38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0
+-134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0
+48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0
+-124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0
+62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0
+-115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0
+72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0
+-100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0
+86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0
+-86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0
+96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0
+-76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0
+110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0
+-62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0
+120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0
+-52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0
+134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0
+-43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0
+144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0
+-33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0
+148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0
+-24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0
+158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0
+-19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0
+168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0
+-9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0
+172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0
+4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0
+14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0
+19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0
+-153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0
+28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0
+-148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0
+38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0
+-139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0
+48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0
+-124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0
+57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0
+-115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0
+72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0
+-105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0
+81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0
+-91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0
+96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0
+-76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0
+105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0
+-67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0
+120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0
+-57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0
+129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0
+-43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0
+139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0
+-33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0
+148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0
+-28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0
+158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0
+-19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0
+163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0
+-9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0
+172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0
+0.00,0.00,1.60,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0
+9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0
+14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0
+-158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0
+24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0
+-153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0
+33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0
+-144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0
+43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0
+-134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0
+52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0
+-124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0
+62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0
+-110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0
+72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0
+-100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0
+86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0
+-86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0
+96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0
+-76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0
+110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0
+-67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0
+120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0
+-52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0
+129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0
+-43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0
+139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0
+-33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0
+148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0
+-24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0
+158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0
+-19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0
+168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0
+172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0
+14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0
+-163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0
+24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0
+-153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0
+28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0
+-144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0
+38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0
+-134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0
+48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0
+-124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0
+62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0
+-115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0
+72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0
+-100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0
+81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0
+-91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0
+96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0
+-81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0
+105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0
+-67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0
+115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0
+-57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0
+129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0
+-48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0
+139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0
+-38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0
+148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0
+-28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0
+153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0
+-19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0
+163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0
+-9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0
+172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0
+0.00,0.00,13.61,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0
+9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0
+-168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0
+24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0
+-148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0
+33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0
+-139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0
+43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0
+-129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0
+52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0
+-120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0
+62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0
+-110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0
+76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0
+-100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0
+86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0
+-86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0
+96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0
+-76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0
+105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0
+-67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0
+120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0
+-57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0
+129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0
+-48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0
+139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0
+-38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0
+148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0
+158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0
+-19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0
+163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0
+172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0
+4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0
+14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0
+-163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0
+24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0
+-153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0
+33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0
+-144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0
+43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0
+-134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0
+52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0
+-124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0
+62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0
+-115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0
+72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0
+-100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0
+81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0
+-91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0
+96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0
+-81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0
+105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0
+-67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0
+115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0
+-57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0
+124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0
+-48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0
+134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0
+-38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0
+144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0
+-28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0
+153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0
+-19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0
+163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0
+-14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0
+172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0
+-4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0
+0.00,0.00,3.20,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0
+9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0
+19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0
+24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0
+-148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0
+33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0
+-139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0
+43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0
+-129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0
+52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0
+-120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0
+67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0
+-110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0
+76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0
+-100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0
+86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0
+-86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0
+96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0
+-76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0
+105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0
+-67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0
+115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0
+-57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0
+129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0
+-48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0
+139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0
+-38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0
+148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0
+153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0
+-19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0
+163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0
+172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0
+4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0
+14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0
+24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0
+-153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0
+33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0
+-144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0
+43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0
+-134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0
+52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0
+-124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0
+62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0
+-110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0
+72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0
+-100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0
+81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0
+-91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0
+96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0
+-81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0
+105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0
+-72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0
+115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0
+-57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0
+124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0
+-48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0
+134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0
+-38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0
+144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0
+-28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0
+153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0
+-24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0
+163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0
+-14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0
+172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,12.01,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0
+9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0
+-158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0
+28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0
+-148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0
+38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0
+-139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0
+48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0
+-129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0
+57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0
+-120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0
+67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0
+-110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0
+76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0
+-100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0
+86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0
+-86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0
+96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0
+-76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0
+105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0
+-67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0
+115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0
+-57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0
+124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0
+-48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0
+134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0
+-38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0
+144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0
+-28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0
+153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0
+-19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0
+163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0
+172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0
+4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0
+14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0
+24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0
+-148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0
+33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0
+-139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0
+43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0
+-129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0
+52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0
+-120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0
+62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0
+-110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0
+72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0
+-100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0
+81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0
+-91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0
+96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0
+-81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0
+105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0
+-72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0
+115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0
+-62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0
+124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0
+-52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0
+134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0
+-43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0
+144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0
+-33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0
+153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0
+-24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0
+163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0
+172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0
+0.00,0.00,4.81,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0
+9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0
+19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0
+28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0
+-148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0
+38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0
+-139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0
+48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0
+-129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0
+57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0
+-120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0
+67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0
+-110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0
+76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0
+-100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0
+86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0
+-86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0
+96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0
+-76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0
+105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0
+-67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0
+115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0
+-57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0
+124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0
+-48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0
+134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0
+-38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0
+144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0
+-28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0
+153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0
+-19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0
+163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0
+-9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0
+172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0
+4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0
+14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0
+24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0
+-148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0
+33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0
+-139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0
+43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0
+-129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0
+52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0
+-120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0
+62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0
+-110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0
+72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0
+-100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0
+81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0
+-91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0
+96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0
+-81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0
+105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0
+-72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0
+115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0
+-62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0
+124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0
+-52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0
+134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0
+-43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0
+144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0
+-33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0
+153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0
+-24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0
+163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0
+172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+0.00,0.00,10.40,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0
+9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0
+19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0
+28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0
+-148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0
+38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0
+-139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0
+48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0
+-129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0
+57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0
+-120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0
+67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0
+-110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0
+76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0
+-100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0
+86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0
+-86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0
+96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0
+-76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0
+105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0
+-67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0
+115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0
+-57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0
+124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0
+-48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0
+134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0
+-38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0
+144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0
+-28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0
+153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0
+163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0
+-9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0
+172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0
+4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0
+14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0
+24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0
+33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0
+-139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0
+43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0
+-129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0
+52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0
+-120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0
+62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0
+-110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0
+72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0
+-100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0
+81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0
+-91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0
+96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0
+-81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0
+105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0
+-72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0
+115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0
+-62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0
+124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0
+-52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0
+134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0
+-43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0
+144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0
+-33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0
+153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0
+-24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0
+163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0
+172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,6.41,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0
+9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0
+19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0
+-158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0
+28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0
+-148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0
+38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0
+-139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0
+48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0
+-129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0
+57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0
+-120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0
+67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0
+-110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0
+76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0
+-100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0
+86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0
+-86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0
+96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0
+-76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0
+105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0
+-67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0
+115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0
+-57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0
+124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0
+-48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0
+134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0
+-38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0
+144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0
+-28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0
+153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0
+163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0
+172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0
+4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0
+14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0
+-158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0
+24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0
+33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0
+-139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0
+43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0
+-129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0
+52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0
+-120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0
+62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0
+-110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0
+72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0
+-100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0
+81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0
+-91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0
+96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0
+-81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0
+105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0
+-72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0
+115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0
+-62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0
+124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0
+-52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0
+134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0
+-43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0
+144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0
+-33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0
+153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0
+-24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0
+163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0
+-14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0
+172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.80,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0
+9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0
+19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0
+-158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0
+28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0
+-148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0
+38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0
+-139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0
+48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0
+-129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0
+57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0
+-120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0
+67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0
+-110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0
+76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0
+-100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0
+86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0
+-86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0
+96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0
+-76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0
+105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0
+-67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0
+115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0
+-57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0
+124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0
+-48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0
+134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0
+-38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0
+144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0
+-28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0
+153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0
+-19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0
+163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0
+172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0
+-0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0
+4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0
+-168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0
+14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0
+-158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0
+24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0
+-148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0
+33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0
+-139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0
+43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0
+-129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0
+52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0
+-120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0
+62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0
+-110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0
+72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0
+-100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0
+81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0
+-91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0
+96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0
+-81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0
+105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0
+-72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0
+115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0
+-62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0
+124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0
+-52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0
+134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0
+-43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0
+144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0
+-33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0
+153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0
+-24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0
+163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0
+-14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0
+172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.01,0.00,1.00,0.00,0.00,0
+-177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0
+-168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0
+19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0
+-158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0
+28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0
+-148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0
+38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0
+-139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0
+48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0
+-129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0
+57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0
+-120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0
+67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0
+-110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0
+76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0
+-100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0
+86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0
+-86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0
+96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0
+-76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0
+105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0
+-67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0
+115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0
+-57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0
+124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0
+-48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0
+134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0
+-38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0
+144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0
+-28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0
+153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0
+-19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0
+163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0
+172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0
+14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0
+-158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0
+24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0
+-148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0
+33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0
+-139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0
+43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0
+-129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0
+52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0
+-120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0
+62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0
+-110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0
+72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0
+-100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0
+81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0
+-91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0
+96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0
+-81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0
+105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0
+-72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0
+115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0
+-62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0
+124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0
+-52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0
+134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0
+-43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0
+144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0
+-33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0
+153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0
+-24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0
+163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0
+-4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0
+0.00,0.00,7.20,0.00,1.00,0.00,0.00,0
+-177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0
+-168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0
+19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0
+38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0
+-139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0
+48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0
+-129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0
+57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0
+-120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0
+67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0
+-110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0
+76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0
+-100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0
+86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0
+-86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0
+96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0
+-76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0
+105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0
+-67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0
+115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0
+-57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0
+124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0
+-48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0
+134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0
+-38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0
+144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0
+-19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0
+163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0
+14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0
+-148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0
+33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0
+-139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0
+43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0
+-129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0
+52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0
+-120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0
+62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0
+72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0
+-100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0
+81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0
+-91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0
+96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0
+-81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0
+105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0
+-72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0
+115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0
+-62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0
+124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0
+-52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0
+134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0
+-43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0
+144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0
+-33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0
+153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0
+0.00,0.00,9.61,0.00,1.00,0.00,0.00,0
+-177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0
+48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0
+-129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0
+57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0
+-120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0
+67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0
+-110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0
+76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0
+-100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0
+86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0
+-86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0
+96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0
+-76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0
+105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0
+-67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0
+115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0
+-57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0
+124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0
+-48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0
+134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0
+163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0
+-9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0
+-148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0
+33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0
+-139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0
+43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0
+-129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0
+52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0
+-120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0
+62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0
+72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0
+-100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0
+81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0
+-91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0
+96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0
+-81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0
+105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0
+-72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0
+115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0
+-62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0
+124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0
+-52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0
+134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0
+-43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0
+144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0
+-33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0
+153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0
+-14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0
+172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0
+0.00,0.00,5.60,0.00,1.00,0.00,0.00,0
+-177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0
+-158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0
+28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0
+-148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0
+48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0
+-129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0
+57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0
+-120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0
+67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0
+-110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0
+76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0
+-100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0
+86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0
+-86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0
+96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0
+-76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0
+105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0
+-67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0
+115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0
+-57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0
+124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0
+-48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0
+134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0
+-28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0
+153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0
+-158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0
+-148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0
+33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0
+-139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0
+43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0
+-129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0
+52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0
+-120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0
+62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0
+-110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0
+72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0
+-100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0
+81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0
+-91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0
+96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0
+-81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0
+105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0
+-72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0
+115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0
+-62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0
+124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0
+-52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0
+134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0
+-43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0
+144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0
+-33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0
+153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0
+0.00,0.00,11.21,0.00,1.00,0.00,0.00,0
+-177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0
+28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0
+-148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0
+38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0
+-139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0
+48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0
+57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0
+-120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0
+67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0
+-110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0
+76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0
+-100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0
+86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0
+-86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0
+96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0
+-76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0
+105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0
+-67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0
+115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0
+-57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0
+124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0
+-48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0
+134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0
+-38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0
+144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0
+-28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0
+153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0
+-148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0
+-139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0
+43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0
+-129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0
+52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0
+-120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0
+62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0
+-110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0
+72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0
+-100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0
+81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0
+-91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0
+96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0
+-81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0
+105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0
+-72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0
+115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0
+-62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0
+124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0
+-52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0
+134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0
+-43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0
+-33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0
+153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0
+-24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0
+163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,3.99,0.00,1.00,0.00,0.00,0
+-177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0
+19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0
+-148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0
+33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0
+43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0
+52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0
+-120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0
+62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0
+-110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0
+76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0
+-100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0
+86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0
+-86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0
+96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0
+-76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0
+105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0
+-67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0
+120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0
+-57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0
+-48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0
+139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0
+148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0
+158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0
+163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0
+43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0
+-134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0
+-124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0
+62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0
+-110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0
+72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0
+-100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0
+81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0
+-91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0
+96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0
+-81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0
+105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0
+-72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0
+115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0
+-57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0
+124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0
+-48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0
+134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0
+-38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0
+-28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0
+-24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,12.82,0.00,1.00,0.00,0.00,0
+-177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0
+-148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0
+33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0
+-129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0
+-120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0
+62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0
+-110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0
+76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0
+-100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0
+86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0
+-86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0
+96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0
+-76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0
+110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0
+-67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0
+120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0
+-57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0
+-48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0
+-163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0
+33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0
+43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0
+-134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0
+62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0
+-115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0
+72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0
+-100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0
+81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0
+-91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0
+96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0
+-81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0
+105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0
+-67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0
+115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0
+-57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0
+124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0
+-48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0
+134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0
+-38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0
+144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0
+-14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,2.39,0.00,1.00,0.00,0.00,0
+-177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0
+33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0
+-144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0
+-134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0
+62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0
+-110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0
+72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0
+-100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0
+86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0
+-86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0
+96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0
+-76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0
+110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0
+-67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0
+120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0
+-52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0
+129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0
+-19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0
+28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0
+-144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0
+38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0
+-134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0
+48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0
+57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0
+-115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0
+72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0
+-105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0
+81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0
+-91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0
+96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0
+-81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0
+105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0
+-67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0
+120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0
+-57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0
+129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0
+-48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0
+139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0
+-38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0
+158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0
+0.00,0.00,14.42,0.00,1.00,0.00,0.00,0
+-177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0
+-163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0
+24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0
+28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0
+-144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0
+38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0
+-134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0
+48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0
+62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0
+-115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0
+72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0
+86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0
+-86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0
+96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0
+-76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0
+110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0
+-62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0
+120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0
+-52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0
+134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0
+158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0
+-148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0
+38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0
+-139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0
+48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0
+-129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0
+-115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0
+67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0
+-105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0
+81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0
+-91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0
+96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0
+105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0
+-67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0
+120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0
+-52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0
+129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0
+139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0
+163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0
+0.00,0.00,0.79,0.00,1.00,0.00,0.00,0
+-177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0
+4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0
+-163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0
+19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0
+-153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0
+28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0
+-148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0
+38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0
+-139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0
+48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0
+-124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0
+57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0
+-115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0
+72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0
+86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0
+-86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0
+100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0
+-76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0
+110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0
+-62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0
+124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0
+-48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0
+134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0
+-38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0
+-28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0
+-24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0
+163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0
+168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0
+9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0
+-158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0
+-148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0
+33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0
+-139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0
+43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0
+-129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0
+-120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0
+67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0
+-105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0
+81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0
+-91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0
+96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0
+110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0
+-67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0
+120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0
+-52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0
+134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0
+144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0
+153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0
+-24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0
+-19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0
+168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0
diff --git a/scripts/testv/stvOMASA_3ISM_2MASA2TC48c.met b/scripts/testv/stvOMASA_3ISM_2MASA2TC48c.met
new file mode 100644
index 0000000000000000000000000000000000000000..1b62022af572fc4f198e4212cca88d51913ec3c4
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_2MASA2TC48c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2eb412d646d7a32c77413dea54dc44cf45dc49e6d8c2de19abe4f4b93a91fa4a
+size 159900
diff --git a/scripts/testv/stvOMASA_3ISM_2MASA2TC48c_ISM1.csv b/scripts/testv/stvOMASA_3ISM_2MASA2TC48c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_2MASA2TC48c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_3ISM_2MASA2TC48c_ISM2.csv b/scripts/testv/stvOMASA_3ISM_2MASA2TC48c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_2MASA2TC48c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_3ISM_2MASA2TC48c_ISM3.csv b/scripts/testv/stvOMASA_3ISM_2MASA2TC48c_ISM3.csv
new file mode 100644
index 0000000000000000000000000000000000000000..14eee9b693b536fa2fd22d2813d7f588b8930b06
--- /dev/null
+++ b/scripts/testv/stvOMASA_3ISM_2MASA2TC48c_ISM3.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0
+-177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0
+4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0
+-168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0
+14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0
+-163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0
+19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0
+-153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0
+28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0
+-148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0
+38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0
+-139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0
+48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0
+-124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0
+57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0
+-115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0
+72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0
+-100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0
+86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0
+-86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0
+100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0
+-76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0
+110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0
+-62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0
+124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0
+-52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0
+134.40,33.60,0.28,0.00,1.00,177.60,0.00,0
+-38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0
+144.00,28.80,0.30,0.00,1.00,177.60,0.00,0
+-33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0
+153.60,24.00,0.32,0.00,1.00,177.60,0.00,0
+-24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0
+158.40,19.20,0.34,0.00,1.00,177.60,0.00,0
+-14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0
+168.00,9.60,0.36,0.00,1.00,177.60,0.00,0
+-9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0
+172.80,4.80,0.38,0.00,1.00,177.60,0.00,0
+-0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0
+-177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0
+4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0
+14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0
+19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0
+-158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0
+28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0
+-148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0
+33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0
+-139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0
+43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0
+-129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0
+57.60,38.40,15.47,0.00,1.00,177.60,0.00,0
+-120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0
+67.20,43.20,15.44,0.00,1.00,177.60,0.00,0
+-105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0
+81.60,43.20,15.42,0.00,1.00,177.60,0.00,0
+-91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0
+96.00,43.20,15.40,0.00,1.00,0.00,0.00,0
+-76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0
+110.40,43.20,15.38,0.00,1.00,0.00,0.00,0
+-67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0
+120.00,38.40,15.36,0.00,1.00,0.00,0.00,0
+-52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0
+129.60,38.40,15.34,0.00,1.00,0.00,0.00,0
+-43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0
+144.00,33.60,15.32,0.00,1.00,0.00,0.00,0
+-33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0
+148.80,24.00,15.30,0.00,1.00,0.00,0.00,0
+-24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0
+158.40,19.20,15.27,0.00,1.00,0.00,0.00,0
+-19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0
+168.00,14.40,15.25,0.00,1.00,0.00,0.00,0
+-9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0
+172.80,4.80,15.23,0.00,1.00,0.00,0.00,0
+-4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0
+0.00,0.00,15.21,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0
+9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0
+14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0
+-163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0
+24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0
+-153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0
+28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0
+-144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0
+38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0
+-134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0
+48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0
+-124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0
+62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0
+-115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0
+72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0
+-100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0
+86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0
+-86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0
+96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0
+-76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0
+110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0
+-62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0
+120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0
+-52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0
+134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0
+-43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0
+144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0
+-33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0
+148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0
+-24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0
+158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0
+-19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0
+168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0
+-9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0
+172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0
+4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0
+14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0
+19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0
+-153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0
+28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0
+-148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0
+38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0
+-139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0
+48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0
+-124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0
+57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0
+-115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0
+72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0
+-105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0
+81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0
+-91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0
+96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0
+-76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0
+105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0
+-67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0
+120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0
+-57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0
+129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0
+-43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0
+139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0
+-33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0
+148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0
+-28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0
+158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0
+-19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0
+163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0
+-9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0
+172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0
+0.00,0.00,1.60,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0
+9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0
+14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0
+-158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0
+24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0
+-153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0
+33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0
+-144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0
+43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0
+-134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0
+52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0
+-124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0
+62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0
+-110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0
+72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0
+-100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0
+86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0
+-86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0
+96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0
+-76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0
+110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0
+-67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0
+120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0
+-52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0
+129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0
+-43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0
+139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0
+-33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0
+148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0
+-24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0
+158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0
+-19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0
+168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0
+172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0
+14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0
+-163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0
+24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0
+-153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0
+28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0
+-144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0
+38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0
+-134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0
+48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0
+-124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0
+62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0
+-115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0
+72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0
+-100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0
+81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0
+-91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0
+96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0
+-81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0
+105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0
+-67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0
+115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0
+-57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0
+129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0
+-48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0
+139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0
+-38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0
+148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0
+-28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0
+153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0
+-19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0
+163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0
+-9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0
+172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0
+0.00,0.00,13.61,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0
+9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0
+-168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0
+24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0
+-148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0
+33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0
+-139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0
+43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0
+-129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0
+52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0
+-120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0
+62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0
+-110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0
+76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0
+-100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0
+86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0
+-86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0
+96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0
+-76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0
+105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0
+-67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0
+120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0
+-57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0
+129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0
+-48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0
+139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0
+-38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0
+148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0
+158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0
+-19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0
+163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0
+172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0
+4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0
+14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0
+-163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0
+24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0
+-153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0
+33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0
+-144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0
+43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0
+-134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0
+52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0
+-124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0
+62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0
+-115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0
+72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0
+-100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0
+81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0
+-91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0
+96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0
+-81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0
+105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0
+-67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0
+115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0
+-57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0
+124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0
+-48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0
+134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0
+-38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0
+144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0
+-28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0
+153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0
+-19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0
+163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0
+-14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0
+172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0
+-4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0
+0.00,0.00,3.20,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0
+9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0
+19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0
+24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0
+-148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0
+33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0
+-139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0
+43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0
+-129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0
+52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0
+-120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0
+67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0
+-110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0
+76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0
+-100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0
+86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0
+-86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0
+96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0
+-76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0
+105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0
+-67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0
+115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0
+-57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0
+129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0
+-48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0
+139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0
+-38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0
+148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0
+153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0
+-19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0
+163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0
+172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0
+4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0
+14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0
+24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0
+-153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0
+33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0
+-144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0
+43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0
+-134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0
+52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0
+-124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0
+62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0
+-110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0
+72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0
+-100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0
+81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0
+-91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0
+96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0
+-81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0
+105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0
+-72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0
+115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0
+-57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0
+124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0
+-48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0
+134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0
+-38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0
+144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0
+-28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0
+153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0
+-24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0
+163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0
+-14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0
+172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,12.01,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0
+9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0
+-158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0
+28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0
+-148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0
+38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0
+-139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0
+48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0
+-129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0
+57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0
+-120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0
+67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0
+-110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0
+76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0
+-100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0
+86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0
+-86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0
+96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0
+-76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0
+105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0
+-67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0
+115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0
+-57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0
+124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0
+-48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0
+134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0
+-38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0
+144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0
+-28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0
+153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0
+-19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0
+163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0
+172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0
+4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0
+14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0
+24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0
+-148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0
+33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0
+-139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0
+43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0
+-129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0
+52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0
+-120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0
+62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0
+-110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0
+72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0
+-100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0
+81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0
+-91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0
+96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0
+-81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0
+105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0
+-72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0
+115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0
+-62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0
+124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0
+-52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0
+134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0
+-43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0
+144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0
+-33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0
+153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0
+-24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0
+163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0
+172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0
+0.00,0.00,4.81,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0
+9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0
+19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0
+28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0
+-148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0
+38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0
+-139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0
+48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0
+-129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0
+57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0
+-120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0
+67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0
+-110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0
+76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0
+-100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0
+86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0
+-86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0
+96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0
+-76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0
+105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0
+-67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0
+115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0
+-57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0
+124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0
+-48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0
+134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0
+-38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0
+144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0
+-28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0
+153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0
+-19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0
+163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0
+-9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0
+172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0
+4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0
+14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0
+24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0
+-148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0
+33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0
+-139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0
+43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0
+-129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0
+52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0
+-120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0
+62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0
+-110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0
+72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0
+-100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0
+81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0
+-91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0
+96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0
+-81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0
+105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0
+-72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0
+115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0
+-62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0
+124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0
+-52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0
+134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0
+-43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0
+144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0
+-33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0
+153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0
+-24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0
+163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0
+172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+0.00,0.00,10.40,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0
+9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0
+19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0
+28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0
+-148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0
+38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0
+-139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0
+48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0
+-129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0
+57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0
+-120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0
+67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0
+-110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0
+76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0
+-100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0
+86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0
+-86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0
+96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0
+-76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0
+105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0
+-67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0
+115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0
+-57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0
+124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0
+-48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0
+134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0
+-38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0
+144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0
+-28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0
+153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0
+163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0
+-9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0
+172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0
+4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0
+14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0
+24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0
+33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0
+-139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0
+43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0
+-129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0
+52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0
+-120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0
+62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0
+-110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0
+72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0
+-100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0
+81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0
+-91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0
+96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0
+-81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0
+105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0
+-72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0
+115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0
+-62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0
+124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0
+-52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0
+134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0
+-43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0
+144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0
+-33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0
+153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0
+-24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0
+163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0
+172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,6.41,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0
+9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0
+19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0
+-158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0
+28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0
+-148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0
+38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0
+-139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0
+48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0
+-129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0
+57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0
+-120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0
+67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0
+-110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0
+76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0
+-100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0
+86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0
+-86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0
+96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0
+-76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0
+105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0
+-67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0
+115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0
+-57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0
+124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0
+-48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0
+134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0
+-38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0
+144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0
+-28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0
+153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0
+163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0
+172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0
+4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0
+14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0
+-158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0
+24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0
+33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0
+-139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0
+43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0
+-129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0
+52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0
+-120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0
+62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0
+-110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0
+72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0
+-100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0
+81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0
+-91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0
+96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0
+-81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0
+105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0
+-72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0
+115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0
+-62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0
+124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0
+-52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0
+134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0
+-43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0
+144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0
+-33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0
+153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0
+-24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0
+163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0
+-14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0
+172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.80,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0
+9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0
+19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0
+-158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0
+28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0
+-148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0
+38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0
+-139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0
+48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0
+-129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0
+57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0
+-120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0
+67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0
+-110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0
+76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0
+-100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0
+86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0
+-86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0
+96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0
+-76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0
+105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0
+-67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0
+115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0
+-57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0
+124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0
+-48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0
+134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0
+-38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0
+144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0
+-28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0
+153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0
+-19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0
+163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0
+172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0
+-0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0
+4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0
+-168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0
+14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0
+-158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0
+24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0
+-148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0
+33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0
+-139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0
+43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0
+-129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0
+52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0
+-120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0
+62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0
+-110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0
+72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0
+-100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0
+81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0
+-91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0
+96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0
+-81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0
+105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0
+-72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0
+115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0
+-62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0
+124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0
+-52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0
+134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0
+-43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0
+144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0
+-33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0
+153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0
+-24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0
+163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0
+-14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0
+172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.01,0.00,1.00,0.00,0.00,0
+-177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0
+-168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0
+19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0
+-158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0
+28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0
+-148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0
+38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0
+-139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0
+48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0
+-129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0
+57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0
+-120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0
+67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0
+-110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0
+76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0
+-100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0
+86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0
+-86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0
+96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0
+-76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0
+105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0
+-67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0
+115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0
+-57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0
+124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0
+-48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0
+134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0
+-38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0
+144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0
+-28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0
+153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0
+-19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0
+163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0
+172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0
+14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0
+-158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0
+24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0
+-148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0
+33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0
+-139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0
+43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0
+-129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0
+52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0
+-120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0
+62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0
+-110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0
+72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0
+-100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0
+81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0
+-91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0
+96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0
+-81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0
+105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0
+-72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0
+115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0
+-62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0
+124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0
+-52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0
+134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0
+-43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0
+144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0
+-33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0
+153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0
+-24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0
+163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0
+-4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0
+0.00,0.00,7.20,0.00,1.00,0.00,0.00,0
+-177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0
+-168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0
+19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0
+38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0
+-139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0
+48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0
+-129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0
+57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0
+-120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0
+67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0
+-110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0
+76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0
+-100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0
+86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0
+-86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0
+96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0
+-76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0
+105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0
+-67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0
+115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0
+-57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0
+124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0
+-48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0
+134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0
+-38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0
+144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0
+-19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0
+163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0
+14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0
+-148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0
+33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0
+-139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0
+43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0
+-129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0
+52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0
+-120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0
+62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0
+72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0
+-100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0
+81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0
+-91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0
+96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0
+-81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0
+105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0
+-72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0
+115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0
+-62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0
+124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0
+-52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0
+134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0
+-43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0
+144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0
+-33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0
+153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0
+0.00,0.00,9.61,0.00,1.00,0.00,0.00,0
+-177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0
+48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0
+-129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0
+57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0
+-120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0
+67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0
+-110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0
+76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0
+-100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0
+86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0
+-86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0
+96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0
+-76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0
+105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0
+-67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0
+115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0
+-57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0
+124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0
+-48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0
+134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0
+163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0
+-9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0
+-148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0
+33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0
+-139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0
+43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0
+-129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0
+52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0
+-120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0
+62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0
+72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0
+-100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0
+81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0
+-91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0
+96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0
+-81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0
+105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0
+-72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0
+115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0
+-62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0
+124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0
+-52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0
+134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0
+-43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0
+144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0
+-33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0
+153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0
+-14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0
+172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0
+0.00,0.00,5.60,0.00,1.00,0.00,0.00,0
+-177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0
+-158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0
+28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0
+-148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0
+48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0
+-129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0
+57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0
+-120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0
+67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0
+-110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0
+76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0
+-100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0
+86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0
+-86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0
+96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0
+-76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0
+105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0
+-67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0
+115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0
+-57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0
+124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0
+-48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0
+134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0
+-28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0
+153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0
+-158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0
+-148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0
+33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0
+-139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0
+43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0
+-129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0
+52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0
+-120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0
+62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0
+-110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0
+72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0
+-100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0
+81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0
+-91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0
+96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0
+-81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0
+105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0
+-72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0
+115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0
+-62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0
+124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0
+-52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0
+134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0
+-43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0
+144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0
+-33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0
+153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0
+0.00,0.00,11.21,0.00,1.00,0.00,0.00,0
+-177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0
+28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0
+-148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0
+38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0
+-139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0
+48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0
+57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0
+-120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0
+67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0
+-110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0
+76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0
+-100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0
+86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0
+-86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0
+96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0
+-76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0
+105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0
+-67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0
+115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0
+-57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0
+124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0
+-48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0
+134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0
+-38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0
+144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0
+-28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0
+153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0
+-148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0
+-139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0
+43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0
+-129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0
+52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0
+-120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0
+62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0
+-110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0
+72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0
+-100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0
+81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0
+-91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0
+96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0
+-81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0
+105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0
+-72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0
+115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0
+-62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0
+124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0
+-52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0
+134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0
+-43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0
+-33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0
+153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0
+-24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0
+163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,3.99,0.00,1.00,0.00,0.00,0
+-177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0
+19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0
+-148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0
+33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0
+43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0
+52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0
+-120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0
+62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0
+-110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0
+76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0
+-100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0
+86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0
+-86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0
+96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0
+-76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0
+105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0
+-67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0
+120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0
+-57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0
+-48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0
+139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0
+148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0
+158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0
+163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0
+43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0
+-134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0
+-124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0
+62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0
+-110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0
+72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0
+-100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0
+81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0
+-91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0
+96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0
+-81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0
+105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0
+-72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0
+115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0
+-57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0
+124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0
+-48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0
+134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0
+-38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0
+-28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0
+-24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,12.82,0.00,1.00,0.00,0.00,0
+-177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0
+-148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0
+33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0
+-129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0
+-120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0
+62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0
+-110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0
+76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0
+-100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0
+86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0
+-86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0
+96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0
+-76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0
+110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0
+-67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0
+120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0
+-57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0
+-48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0
+-163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0
+33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0
+43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0
+-134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0
+62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0
+-115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0
+72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0
+-100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0
+81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0
+-91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0
+96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0
+-81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0
+105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0
+-67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0
+115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0
+-57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0
+124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0
+-48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0
+134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0
+-38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0
+144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0
+-14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,2.39,0.00,1.00,0.00,0.00,0
+-177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0
+33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0
+-144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0
+-134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0
+62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0
+-110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0
+72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0
+-100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0
+86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0
+-86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0
+96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0
+-76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0
+110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0
+-67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0
+120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0
+-52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0
+129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0
+-19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0
+28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0
+-144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0
+38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0
+-134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0
+48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0
+57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0
+-115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0
+72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0
+-105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0
+81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0
+-91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0
+96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0
+-81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0
+105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0
+-67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0
+120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0
+-57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0
+129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0
+-48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0
+139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0
+-38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0
+158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0
+0.00,0.00,14.42,0.00,1.00,0.00,0.00,0
+-177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0
+-163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0
+24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0
+28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0
+-144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0
+38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0
+-134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0
+48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0
+62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0
+-115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0
+72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0
+86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0
+-86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0
+96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0
+-76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0
+110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0
+-62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0
+120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0
+-52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0
+134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0
+158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0
+-148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0
+38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0
+-139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0
+48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0
+-129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0
+-115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0
+67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0
+-105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0
+81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0
+-91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0
+96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0
+105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0
+-67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0
+120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0
+-52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0
+129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0
+139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0
+163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0
+0.00,0.00,0.79,0.00,1.00,0.00,0.00,0
+-177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0
+4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0
+-163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0
+19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0
+-153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0
+28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0
+-148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0
+38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0
+-139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0
+48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0
+-124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0
+57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0
+-115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0
+72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0
+86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0
+-86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0
+100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0
+-76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0
+110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0
+-62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0
+124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0
+-48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0
+134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0
+-38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0
+-28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0
+-24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0
+163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0
+168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0
+9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0
+-158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0
+-148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0
+33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0
+-139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0
+43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0
+-129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0
+-120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0
+67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0
+-105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0
+81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0
+-91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0
+96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0
+110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0
+-67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0
+120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0
+-52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0
+134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0
+144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0
+153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0
+-24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0
+-19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0
+168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA1TC16c.met b/scripts/testv/stvOMASA_4ISM_1MASA1TC16c.met
new file mode 100644
index 0000000000000000000000000000000000000000..f2ce23bd2054140614b7d2ad88769d5d2db77990
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA1TC16c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6349efe3448d28979b80744bcdc29d57f1c025704939b42d7b913d7fc3f23ccc
+size 102300
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA1TC16c.wav b/scripts/testv/stvOMASA_4ISM_1MASA1TC16c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..b996a5f84711b3b61f0ba66e5dc0b022a3d283fd
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA1TC16c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b02b0bc5a4124e56193d79571adf74eb12a67b7f7085ad46ee0d31aeb119f55a
+size 480080
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA1TC16c_ISM1.csv b/scripts/testv/stvOMASA_4ISM_1MASA1TC16c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA1TC16c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA1TC16c_ISM2.csv b/scripts/testv/stvOMASA_4ISM_1MASA1TC16c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA1TC16c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA1TC16c_ISM3.csv b/scripts/testv/stvOMASA_4ISM_1MASA1TC16c_ISM3.csv
new file mode 100644
index 0000000000000000000000000000000000000000..14eee9b693b536fa2fd22d2813d7f588b8930b06
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA1TC16c_ISM3.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0
+-177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0
+4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0
+-168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0
+14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0
+-163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0
+19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0
+-153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0
+28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0
+-148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0
+38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0
+-139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0
+48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0
+-124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0
+57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0
+-115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0
+72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0
+-100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0
+86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0
+-86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0
+100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0
+-76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0
+110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0
+-62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0
+124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0
+-52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0
+134.40,33.60,0.28,0.00,1.00,177.60,0.00,0
+-38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0
+144.00,28.80,0.30,0.00,1.00,177.60,0.00,0
+-33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0
+153.60,24.00,0.32,0.00,1.00,177.60,0.00,0
+-24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0
+158.40,19.20,0.34,0.00,1.00,177.60,0.00,0
+-14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0
+168.00,9.60,0.36,0.00,1.00,177.60,0.00,0
+-9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0
+172.80,4.80,0.38,0.00,1.00,177.60,0.00,0
+-0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0
+-177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0
+4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0
+14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0
+19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0
+-158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0
+28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0
+-148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0
+33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0
+-139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0
+43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0
+-129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0
+57.60,38.40,15.47,0.00,1.00,177.60,0.00,0
+-120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0
+67.20,43.20,15.44,0.00,1.00,177.60,0.00,0
+-105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0
+81.60,43.20,15.42,0.00,1.00,177.60,0.00,0
+-91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0
+96.00,43.20,15.40,0.00,1.00,0.00,0.00,0
+-76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0
+110.40,43.20,15.38,0.00,1.00,0.00,0.00,0
+-67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0
+120.00,38.40,15.36,0.00,1.00,0.00,0.00,0
+-52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0
+129.60,38.40,15.34,0.00,1.00,0.00,0.00,0
+-43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0
+144.00,33.60,15.32,0.00,1.00,0.00,0.00,0
+-33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0
+148.80,24.00,15.30,0.00,1.00,0.00,0.00,0
+-24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0
+158.40,19.20,15.27,0.00,1.00,0.00,0.00,0
+-19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0
+168.00,14.40,15.25,0.00,1.00,0.00,0.00,0
+-9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0
+172.80,4.80,15.23,0.00,1.00,0.00,0.00,0
+-4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0
+0.00,0.00,15.21,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0
+9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0
+14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0
+-163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0
+24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0
+-153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0
+28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0
+-144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0
+38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0
+-134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0
+48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0
+-124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0
+62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0
+-115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0
+72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0
+-100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0
+86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0
+-86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0
+96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0
+-76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0
+110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0
+-62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0
+120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0
+-52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0
+134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0
+-43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0
+144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0
+-33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0
+148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0
+-24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0
+158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0
+-19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0
+168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0
+-9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0
+172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0
+4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0
+14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0
+19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0
+-153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0
+28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0
+-148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0
+38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0
+-139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0
+48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0
+-124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0
+57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0
+-115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0
+72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0
+-105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0
+81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0
+-91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0
+96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0
+-76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0
+105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0
+-67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0
+120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0
+-57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0
+129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0
+-43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0
+139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0
+-33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0
+148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0
+-28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0
+158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0
+-19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0
+163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0
+-9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0
+172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0
+0.00,0.00,1.60,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0
+9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0
+14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0
+-158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0
+24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0
+-153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0
+33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0
+-144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0
+43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0
+-134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0
+52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0
+-124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0
+62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0
+-110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0
+72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0
+-100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0
+86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0
+-86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0
+96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0
+-76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0
+110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0
+-67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0
+120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0
+-52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0
+129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0
+-43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0
+139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0
+-33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0
+148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0
+-24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0
+158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0
+-19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0
+168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0
+172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0
+14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0
+-163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0
+24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0
+-153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0
+28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0
+-144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0
+38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0
+-134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0
+48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0
+-124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0
+62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0
+-115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0
+72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0
+-100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0
+81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0
+-91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0
+96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0
+-81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0
+105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0
+-67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0
+115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0
+-57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0
+129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0
+-48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0
+139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0
+-38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0
+148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0
+-28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0
+153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0
+-19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0
+163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0
+-9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0
+172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0
+0.00,0.00,13.61,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0
+9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0
+-168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0
+24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0
+-148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0
+33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0
+-139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0
+43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0
+-129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0
+52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0
+-120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0
+62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0
+-110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0
+76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0
+-100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0
+86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0
+-86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0
+96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0
+-76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0
+105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0
+-67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0
+120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0
+-57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0
+129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0
+-48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0
+139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0
+-38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0
+148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0
+158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0
+-19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0
+163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0
+172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0
+4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0
+14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0
+-163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0
+24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0
+-153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0
+33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0
+-144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0
+43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0
+-134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0
+52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0
+-124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0
+62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0
+-115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0
+72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0
+-100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0
+81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0
+-91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0
+96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0
+-81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0
+105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0
+-67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0
+115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0
+-57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0
+124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0
+-48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0
+134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0
+-38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0
+144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0
+-28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0
+153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0
+-19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0
+163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0
+-14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0
+172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0
+-4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0
+0.00,0.00,3.20,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0
+9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0
+19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0
+24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0
+-148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0
+33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0
+-139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0
+43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0
+-129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0
+52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0
+-120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0
+67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0
+-110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0
+76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0
+-100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0
+86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0
+-86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0
+96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0
+-76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0
+105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0
+-67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0
+115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0
+-57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0
+129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0
+-48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0
+139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0
+-38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0
+148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0
+153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0
+-19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0
+163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0
+172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0
+4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0
+14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0
+24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0
+-153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0
+33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0
+-144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0
+43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0
+-134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0
+52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0
+-124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0
+62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0
+-110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0
+72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0
+-100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0
+81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0
+-91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0
+96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0
+-81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0
+105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0
+-72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0
+115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0
+-57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0
+124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0
+-48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0
+134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0
+-38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0
+144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0
+-28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0
+153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0
+-24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0
+163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0
+-14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0
+172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,12.01,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0
+9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0
+-158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0
+28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0
+-148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0
+38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0
+-139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0
+48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0
+-129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0
+57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0
+-120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0
+67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0
+-110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0
+76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0
+-100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0
+86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0
+-86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0
+96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0
+-76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0
+105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0
+-67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0
+115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0
+-57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0
+124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0
+-48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0
+134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0
+-38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0
+144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0
+-28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0
+153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0
+-19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0
+163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0
+172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0
+4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0
+14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0
+24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0
+-148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0
+33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0
+-139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0
+43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0
+-129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0
+52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0
+-120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0
+62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0
+-110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0
+72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0
+-100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0
+81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0
+-91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0
+96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0
+-81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0
+105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0
+-72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0
+115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0
+-62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0
+124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0
+-52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0
+134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0
+-43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0
+144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0
+-33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0
+153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0
+-24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0
+163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0
+172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0
+0.00,0.00,4.81,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0
+9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0
+19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0
+28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0
+-148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0
+38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0
+-139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0
+48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0
+-129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0
+57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0
+-120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0
+67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0
+-110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0
+76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0
+-100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0
+86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0
+-86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0
+96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0
+-76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0
+105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0
+-67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0
+115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0
+-57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0
+124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0
+-48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0
+134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0
+-38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0
+144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0
+-28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0
+153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0
+-19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0
+163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0
+-9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0
+172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0
+4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0
+14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0
+24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0
+-148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0
+33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0
+-139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0
+43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0
+-129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0
+52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0
+-120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0
+62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0
+-110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0
+72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0
+-100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0
+81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0
+-91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0
+96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0
+-81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0
+105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0
+-72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0
+115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0
+-62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0
+124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0
+-52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0
+134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0
+-43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0
+144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0
+-33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0
+153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0
+-24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0
+163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0
+172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+0.00,0.00,10.40,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0
+9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0
+19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0
+28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0
+-148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0
+38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0
+-139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0
+48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0
+-129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0
+57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0
+-120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0
+67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0
+-110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0
+76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0
+-100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0
+86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0
+-86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0
+96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0
+-76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0
+105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0
+-67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0
+115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0
+-57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0
+124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0
+-48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0
+134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0
+-38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0
+144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0
+-28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0
+153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0
+163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0
+-9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0
+172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0
+4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0
+14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0
+24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0
+33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0
+-139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0
+43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0
+-129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0
+52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0
+-120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0
+62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0
+-110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0
+72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0
+-100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0
+81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0
+-91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0
+96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0
+-81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0
+105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0
+-72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0
+115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0
+-62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0
+124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0
+-52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0
+134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0
+-43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0
+144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0
+-33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0
+153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0
+-24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0
+163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0
+172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,6.41,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0
+9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0
+19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0
+-158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0
+28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0
+-148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0
+38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0
+-139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0
+48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0
+-129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0
+57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0
+-120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0
+67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0
+-110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0
+76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0
+-100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0
+86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0
+-86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0
+96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0
+-76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0
+105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0
+-67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0
+115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0
+-57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0
+124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0
+-48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0
+134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0
+-38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0
+144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0
+-28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0
+153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0
+163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0
+172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0
+4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0
+14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0
+-158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0
+24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0
+33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0
+-139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0
+43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0
+-129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0
+52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0
+-120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0
+62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0
+-110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0
+72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0
+-100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0
+81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0
+-91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0
+96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0
+-81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0
+105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0
+-72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0
+115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0
+-62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0
+124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0
+-52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0
+134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0
+-43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0
+144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0
+-33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0
+153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0
+-24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0
+163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0
+-14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0
+172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.80,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0
+9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0
+19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0
+-158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0
+28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0
+-148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0
+38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0
+-139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0
+48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0
+-129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0
+57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0
+-120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0
+67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0
+-110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0
+76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0
+-100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0
+86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0
+-86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0
+96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0
+-76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0
+105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0
+-67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0
+115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0
+-57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0
+124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0
+-48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0
+134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0
+-38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0
+144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0
+-28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0
+153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0
+-19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0
+163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0
+172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0
+-0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0
+4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0
+-168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0
+14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0
+-158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0
+24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0
+-148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0
+33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0
+-139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0
+43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0
+-129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0
+52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0
+-120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0
+62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0
+-110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0
+72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0
+-100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0
+81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0
+-91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0
+96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0
+-81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0
+105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0
+-72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0
+115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0
+-62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0
+124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0
+-52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0
+134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0
+-43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0
+144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0
+-33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0
+153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0
+-24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0
+163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0
+-14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0
+172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.01,0.00,1.00,0.00,0.00,0
+-177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0
+-168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0
+19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0
+-158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0
+28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0
+-148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0
+38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0
+-139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0
+48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0
+-129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0
+57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0
+-120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0
+67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0
+-110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0
+76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0
+-100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0
+86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0
+-86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0
+96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0
+-76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0
+105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0
+-67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0
+115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0
+-57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0
+124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0
+-48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0
+134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0
+-38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0
+144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0
+-28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0
+153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0
+-19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0
+163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0
+172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0
+14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0
+-158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0
+24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0
+-148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0
+33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0
+-139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0
+43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0
+-129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0
+52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0
+-120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0
+62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0
+-110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0
+72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0
+-100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0
+81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0
+-91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0
+96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0
+-81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0
+105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0
+-72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0
+115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0
+-62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0
+124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0
+-52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0
+134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0
+-43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0
+144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0
+-33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0
+153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0
+-24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0
+163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0
+-4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0
+0.00,0.00,7.20,0.00,1.00,0.00,0.00,0
+-177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0
+-168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0
+19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0
+38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0
+-139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0
+48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0
+-129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0
+57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0
+-120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0
+67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0
+-110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0
+76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0
+-100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0
+86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0
+-86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0
+96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0
+-76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0
+105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0
+-67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0
+115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0
+-57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0
+124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0
+-48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0
+134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0
+-38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0
+144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0
+-19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0
+163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0
+14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0
+-148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0
+33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0
+-139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0
+43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0
+-129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0
+52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0
+-120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0
+62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0
+72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0
+-100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0
+81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0
+-91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0
+96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0
+-81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0
+105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0
+-72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0
+115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0
+-62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0
+124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0
+-52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0
+134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0
+-43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0
+144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0
+-33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0
+153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0
+0.00,0.00,9.61,0.00,1.00,0.00,0.00,0
+-177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0
+48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0
+-129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0
+57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0
+-120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0
+67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0
+-110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0
+76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0
+-100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0
+86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0
+-86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0
+96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0
+-76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0
+105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0
+-67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0
+115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0
+-57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0
+124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0
+-48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0
+134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0
+163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0
+-9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0
+-148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0
+33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0
+-139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0
+43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0
+-129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0
+52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0
+-120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0
+62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0
+72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0
+-100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0
+81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0
+-91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0
+96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0
+-81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0
+105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0
+-72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0
+115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0
+-62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0
+124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0
+-52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0
+134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0
+-43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0
+144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0
+-33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0
+153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0
+-14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0
+172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0
+0.00,0.00,5.60,0.00,1.00,0.00,0.00,0
+-177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0
+-158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0
+28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0
+-148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0
+48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0
+-129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0
+57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0
+-120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0
+67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0
+-110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0
+76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0
+-100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0
+86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0
+-86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0
+96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0
+-76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0
+105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0
+-67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0
+115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0
+-57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0
+124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0
+-48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0
+134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0
+-28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0
+153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0
+-158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0
+-148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0
+33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0
+-139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0
+43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0
+-129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0
+52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0
+-120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0
+62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0
+-110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0
+72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0
+-100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0
+81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0
+-91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0
+96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0
+-81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0
+105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0
+-72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0
+115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0
+-62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0
+124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0
+-52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0
+134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0
+-43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0
+144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0
+-33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0
+153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0
+0.00,0.00,11.21,0.00,1.00,0.00,0.00,0
+-177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0
+28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0
+-148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0
+38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0
+-139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0
+48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0
+57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0
+-120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0
+67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0
+-110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0
+76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0
+-100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0
+86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0
+-86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0
+96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0
+-76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0
+105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0
+-67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0
+115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0
+-57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0
+124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0
+-48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0
+134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0
+-38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0
+144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0
+-28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0
+153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0
+-148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0
+-139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0
+43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0
+-129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0
+52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0
+-120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0
+62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0
+-110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0
+72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0
+-100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0
+81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0
+-91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0
+96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0
+-81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0
+105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0
+-72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0
+115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0
+-62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0
+124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0
+-52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0
+134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0
+-43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0
+-33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0
+153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0
+-24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0
+163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,3.99,0.00,1.00,0.00,0.00,0
+-177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0
+19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0
+-148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0
+33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0
+43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0
+52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0
+-120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0
+62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0
+-110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0
+76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0
+-100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0
+86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0
+-86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0
+96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0
+-76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0
+105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0
+-67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0
+120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0
+-57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0
+-48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0
+139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0
+148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0
+158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0
+163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0
+43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0
+-134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0
+-124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0
+62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0
+-110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0
+72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0
+-100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0
+81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0
+-91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0
+96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0
+-81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0
+105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0
+-72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0
+115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0
+-57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0
+124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0
+-48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0
+134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0
+-38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0
+-28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0
+-24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,12.82,0.00,1.00,0.00,0.00,0
+-177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0
+-148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0
+33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0
+-129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0
+-120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0
+62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0
+-110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0
+76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0
+-100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0
+86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0
+-86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0
+96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0
+-76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0
+110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0
+-67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0
+120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0
+-57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0
+-48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0
+-163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0
+33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0
+43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0
+-134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0
+62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0
+-115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0
+72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0
+-100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0
+81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0
+-91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0
+96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0
+-81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0
+105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0
+-67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0
+115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0
+-57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0
+124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0
+-48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0
+134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0
+-38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0
+144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0
+-14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,2.39,0.00,1.00,0.00,0.00,0
+-177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0
+33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0
+-144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0
+-134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0
+62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0
+-110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0
+72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0
+-100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0
+86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0
+-86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0
+96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0
+-76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0
+110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0
+-67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0
+120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0
+-52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0
+129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0
+-19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0
+28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0
+-144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0
+38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0
+-134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0
+48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0
+57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0
+-115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0
+72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0
+-105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0
+81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0
+-91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0
+96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0
+-81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0
+105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0
+-67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0
+120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0
+-57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0
+129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0
+-48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0
+139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0
+-38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0
+158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0
+0.00,0.00,14.42,0.00,1.00,0.00,0.00,0
+-177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0
+-163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0
+24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0
+28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0
+-144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0
+38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0
+-134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0
+48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0
+62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0
+-115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0
+72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0
+86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0
+-86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0
+96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0
+-76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0
+110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0
+-62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0
+120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0
+-52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0
+134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0
+158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0
+-148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0
+38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0
+-139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0
+48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0
+-129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0
+-115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0
+67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0
+-105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0
+81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0
+-91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0
+96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0
+105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0
+-67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0
+120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0
+-52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0
+129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0
+139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0
+163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0
+0.00,0.00,0.79,0.00,1.00,0.00,0.00,0
+-177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0
+4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0
+-163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0
+19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0
+-153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0
+28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0
+-148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0
+38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0
+-139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0
+48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0
+-124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0
+57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0
+-115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0
+72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0
+86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0
+-86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0
+100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0
+-76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0
+110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0
+-62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0
+124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0
+-48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0
+134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0
+-38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0
+-28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0
+-24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0
+163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0
+168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0
+9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0
+-158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0
+-148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0
+33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0
+-139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0
+43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0
+-129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0
+-120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0
+67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0
+-105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0
+81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0
+-91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0
+96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0
+110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0
+-67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0
+120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0
+-52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0
+134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0
+144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0
+153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0
+-24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0
+-19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0
+168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA1TC16c_ISM4.csv b/scripts/testv/stvOMASA_4ISM_1MASA1TC16c_ISM4.csv
new file mode 100644
index 0000000000000000000000000000000000000000..8a14c3413ddd2dd47415bf6de3e19631f65f8f6c
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA1TC16c_ISM4.csv
@@ -0,0 +1,1500 @@
+-0.00,0.00,0.00,0.00,1.00,0.00,4.80,0
+-0.00,4.80,0.06,0.00,1.00,4.80,9.60,0
+-0.00,9.60,0.13,0.00,1.00,9.60,14.40,0
+-0.00,14.40,0.19,0.00,1.00,14.40,19.20,0
+-0.00,19.20,0.26,0.00,1.00,19.20,24.00,0
+-0.00,24.00,0.32,0.00,1.00,24.00,28.80,0
+-0.00,28.80,0.39,0.00,1.00,28.80,33.60,0
+-0.00,33.60,0.45,0.00,1.00,33.60,38.40,0
+-0.00,38.40,0.51,0.00,1.00,38.40,43.20,0
+-0.00,43.20,0.58,0.00,1.00,43.20,48.00,0
+-0.00,48.00,0.64,0.00,1.00,48.00,52.80,0
+-0.00,52.80,0.71,0.00,1.00,52.80,57.60,0
+-0.00,57.60,0.77,0.00,1.00,57.60,62.40,0
+-0.00,62.40,0.84,0.00,1.00,62.40,67.20,0
+-0.00,67.20,0.90,0.00,1.00,67.20,72.00,0
+-0.00,72.00,0.96,0.00,1.00,72.00,76.80,0
+-0.00,76.80,1.03,0.00,1.00,76.80,81.60,0
+-0.00,81.60,1.09,0.00,1.00,81.60,86.40,0
+-0.00,86.40,1.16,0.00,1.00,86.40,86.40,0
+-177.60,89.20,1.22,0.00,1.00,91.20,81.60,0
+-177.60,86.40,1.29,0.00,1.00,96.00,76.80,0
+-177.60,81.60,1.35,0.00,1.00,100.80,72.00,0
+-177.60,76.80,1.41,0.00,1.00,105.60,67.20,0
+-177.60,72.00,1.48,0.00,1.00,110.40,62.40,0
+-177.60,67.20,1.54,0.00,1.00,115.20,57.60,0
+177.60,62.40,1.61,0.00,1.00,120.00,52.80,0
+177.60,57.60,1.67,0.00,1.00,124.80,48.00,0
+177.60,52.80,1.73,0.00,1.00,129.60,43.20,0
+177.60,48.00,1.80,0.00,1.00,134.40,38.40,0
+177.60,43.20,1.86,0.00,1.00,139.20,33.60,0
+177.60,38.40,1.93,0.00,1.00,144.00,28.80,0
+177.60,33.60,1.99,0.00,1.00,148.80,24.00,0
+177.60,28.80,2.06,0.00,1.00,153.60,19.20,0
+177.60,24.00,2.12,0.00,1.00,158.40,14.40,0
+177.60,19.20,2.18,0.00,1.00,163.20,9.60,0
+177.60,14.40,2.25,0.00,1.00,168.00,4.80,0
+177.60,9.60,2.31,0.00,1.00,172.80,0.00,0
+177.60,4.80,2.38,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.44,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,2.51,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,2.57,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,2.63,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,2.70,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,2.76,0.00,1.00,-153.60,-28.80,0
+-177.60,-28.80,2.83,0.00,1.00,-148.80,-33.60,0
+-177.60,-33.60,2.89,0.00,1.00,-144.00,-38.40,0
+-177.60,-38.40,2.96,0.00,1.00,-139.20,-43.20,0
+-177.60,-48.00,3.02,0.00,1.00,-134.40,-48.00,0
+-177.60,-48.00,3.08,0.00,1.00,-129.60,-52.80,0
+-177.60,-52.80,3.15,0.00,1.00,-124.80,-57.60,0
+-177.60,-57.60,3.21,0.00,1.00,-120.00,-62.40,0
+177.60,-62.40,3.28,0.00,1.00,-115.20,-67.20,0
+177.60,-67.20,3.34,0.00,1.00,-110.40,-72.00,0
+177.60,-76.80,3.41,0.00,1.00,-105.60,-76.80,0
+177.60,-76.80,3.47,0.00,1.00,-100.80,-81.60,0
+177.60,-86.40,3.53,0.00,1.00,-96.00,-86.40,0
+177.60,-89.20,3.60,0.00,1.00,-91.20,-86.40,0
+0.00,-86.40,3.66,0.00,1.00,-86.40,-81.60,0
+0.00,-81.60,3.73,0.00,1.00,-81.60,-76.80,0
+0.00,-76.80,3.79,0.00,1.00,-76.80,-72.00,0
+0.00,-72.00,3.86,0.00,1.00,-72.00,-67.20,0
+0.00,-67.20,3.92,0.00,1.00,-67.20,-62.40,0
+0.00,-62.40,3.98,0.00,1.00,-62.40,-57.60,0
+0.00,-57.60,4.05,0.00,1.00,-57.60,-52.80,0
+0.00,-52.80,4.11,0.00,1.00,-52.80,-48.00,0
+0.00,-48.00,4.18,0.00,1.00,-48.00,-43.20,0
+0.00,-43.20,4.24,0.00,1.00,-43.20,-38.40,0
+0.00,-38.40,4.31,0.00,1.00,-38.40,-33.60,0
+0.00,-33.60,4.37,0.00,1.00,-33.60,-28.80,0
+0.00,-28.80,4.43,0.00,1.00,-28.80,-24.00,0
+0.00,-24.00,4.50,0.00,1.00,-24.00,-19.20,0
+0.00,-19.20,4.56,0.00,1.00,-19.20,-14.40,0
+0.00,-14.40,4.63,0.00,1.00,-14.40,-9.60,0
+0.00,-9.60,4.69,0.00,1.00,-9.60,-4.80,0
+0.00,-4.80,4.76,0.00,1.00,-4.80,0.00,0
+0.00,0.00,4.82,0.00,1.00,0.00,4.80,0
+0.00,4.80,4.88,0.00,1.00,4.80,9.60,0
+0.00,9.60,4.95,0.00,1.00,9.60,14.40,0
+0.00,14.40,5.01,0.00,1.00,14.40,19.20,0
+0.00,19.20,5.08,0.00,1.00,19.20,24.00,0
+0.00,24.00,5.14,0.00,1.00,24.00,28.80,0
+4.80,28.80,5.20,0.00,1.00,28.80,33.60,0
+4.80,33.60,5.27,0.00,1.00,33.60,38.40,0
+4.80,38.40,5.33,0.00,1.00,38.40,43.20,0
+4.80,43.20,5.40,0.00,1.00,43.20,48.00,0
+4.80,48.00,5.46,0.00,1.00,48.00,52.80,0
+4.80,52.80,5.53,0.00,1.00,52.80,57.60,0
+9.60,57.60,5.59,0.00,1.00,57.60,62.40,0
+9.60,62.40,5.65,0.00,1.00,62.40,67.20,0
+9.60,67.20,5.72,0.00,1.00,67.20,72.00,0
+14.40,72.00,5.78,0.00,1.00,72.00,76.80,0
+19.20,76.80,5.85,0.00,1.00,76.80,81.60,0
+28.80,81.60,5.91,0.00,1.00,81.60,86.40,0
+52.80,86.40,5.98,0.00,1.00,86.40,86.40,0
+105.60,86.40,6.04,0.00,1.00,91.20,81.60,0
+139.20,81.60,6.10,0.00,1.00,96.00,76.80,0
+158.40,76.80,6.17,0.00,1.00,100.80,72.00,0
+163.20,72.00,6.23,0.00,1.00,105.60,67.20,0
+168.00,67.20,6.30,0.00,1.00,110.40,62.40,0
+168.00,62.40,6.36,0.00,1.00,115.20,57.60,0
+172.80,57.60,6.43,0.00,1.00,120.00,52.80,0
+172.80,52.80,6.49,0.00,1.00,124.80,48.00,0
+172.80,48.00,6.55,0.00,1.00,129.60,43.20,0
+172.80,43.20,6.62,0.00,1.00,134.40,38.40,0
+177.60,38.40,6.68,0.00,1.00,139.20,33.60,0
+177.60,33.60,6.75,0.00,1.00,144.00,28.80,0
+177.60,28.80,6.81,0.00,1.00,148.80,24.00,0
+177.60,24.00,6.88,0.00,1.00,153.60,19.20,0
+177.60,19.20,6.94,0.00,1.00,158.40,14.40,0
+177.60,14.40,7.00,0.00,1.00,163.20,9.60,0
+177.60,9.60,7.07,0.00,1.00,168.00,4.80,0
+177.60,4.80,7.13,0.00,1.00,172.80,0.00,0
+177.60,0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,7.26,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,7.33,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,7.39,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,7.45,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,7.52,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,7.58,0.00,1.00,-153.60,-28.80,0
+-177.60,-28.80,7.65,0.00,1.00,-148.80,-33.60,0
+-177.60,-33.60,7.71,0.00,1.00,-144.00,-38.40,0
+-177.60,-38.40,7.78,0.00,1.00,-139.20,-43.20,0
+-172.80,-43.20,7.84,0.00,1.00,-134.40,-48.00,0
+-172.80,-48.00,7.90,0.00,1.00,-129.60,-52.80,0
+-172.80,-52.80,7.97,0.00,1.00,-124.80,-57.60,0
+-172.80,-57.60,8.03,0.00,1.00,-120.00,-62.40,0
+-168.00,-62.40,8.10,0.00,1.00,-115.20,-67.20,0
+-168.00,-67.20,8.16,0.00,1.00,-110.40,-72.00,0
+-163.20,-72.00,8.22,0.00,1.00,-105.60,-76.80,0
+-158.40,-76.80,8.29,0.00,1.00,-100.80,-81.60,0
+-139.20,-81.60,8.35,0.00,1.00,-96.00,-86.40,0
+-105.60,-86.40,8.42,0.00,1.00,-91.20,-86.40,0
+-52.80,-86.40,8.48,0.00,1.00,-86.40,-81.60,0
+-28.80,-81.60,8.55,0.00,1.00,-81.60,-76.80,0
+-19.20,-76.80,8.61,0.00,1.00,-76.80,-72.00,0
+-14.40,-72.00,8.67,0.00,1.00,-72.00,-67.20,0
+-9.60,-67.20,8.74,0.00,1.00,-67.20,-62.40,0
+-9.60,-62.40,8.80,0.00,1.00,-62.40,-57.60,0
+-9.60,-57.60,8.87,0.00,1.00,-57.60,-52.80,0
+-4.80,-52.80,8.93,0.00,1.00,-52.80,-48.00,0
+-4.80,-48.00,9.00,0.00,1.00,-48.00,-43.20,0
+-4.80,-43.20,9.06,0.00,1.00,-43.20,-38.40,0
+-4.80,-38.40,9.12,0.00,1.00,-38.40,-33.60,0
+-4.80,-33.60,9.19,0.00,1.00,-33.60,-28.80,0
+-4.80,-28.80,9.25,0.00,1.00,-28.80,-24.00,0
+-0.00,-24.00,9.32,0.00,1.00,-24.00,-19.20,0
+-0.00,-19.20,9.38,0.00,1.00,-19.20,-14.40,0
+-0.00,-14.40,9.45,0.00,1.00,-14.40,-9.60,0
+-0.00,-9.60,9.51,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,9.57,0.00,1.00,-4.80,0.00,0
+0.00,0.00,9.64,0.00,1.00,0.00,4.80,0
+0.00,4.80,9.70,0.00,1.00,4.80,9.60,0
+0.00,9.60,9.77,0.00,1.00,9.60,14.40,0
+4.80,14.40,9.83,0.00,1.00,14.40,19.20,0
+4.80,19.20,9.90,0.00,1.00,19.20,24.00,0
+4.80,24.00,9.96,0.00,1.00,24.00,28.80,0
+4.80,28.80,10.02,0.00,1.00,28.80,33.60,0
+4.80,33.60,10.09,0.00,1.00,33.60,38.40,0
+9.60,38.40,10.15,0.00,1.00,38.40,43.20,0
+9.60,43.20,10.22,0.00,1.00,43.20,48.00,0
+9.60,48.00,10.28,0.00,1.00,48.00,52.80,0
+14.40,52.80,10.35,0.00,1.00,52.80,57.60,0
+14.40,57.60,10.41,0.00,1.00,57.60,62.40,0
+19.20,62.40,10.47,0.00,1.00,62.40,67.20,0
+24.00,67.20,10.54,0.00,1.00,67.20,72.00,0
+28.80,72.00,10.60,0.00,1.00,72.00,72.00,0
+33.60,72.00,10.67,0.00,1.00,76.80,76.80,0
+48.00,76.80,10.73,0.00,1.00,81.60,81.60,0
+67.20,81.60,10.80,0.00,1.00,86.40,81.60,0
+96.00,81.60,10.86,0.00,1.00,91.20,81.60,0
+120.00,76.80,10.92,0.00,1.00,96.00,76.80,0
+139.20,76.80,10.99,0.00,1.00,100.80,72.00,0
+148.80,72.00,11.05,0.00,1.00,105.60,67.20,0
+153.60,67.20,11.12,0.00,1.00,110.40,62.40,0
+158.40,62.40,11.18,0.00,1.00,115.20,57.60,0
+163.20,57.60,11.24,0.00,1.00,120.00,52.80,0
+168.00,52.80,11.31,0.00,1.00,124.80,48.00,0
+168.00,48.00,11.37,0.00,1.00,129.60,43.20,0
+168.00,43.20,11.44,0.00,1.00,134.40,38.40,0
+172.80,38.40,11.50,0.00,1.00,139.20,33.60,0
+172.80,33.60,11.57,0.00,1.00,144.00,28.80,0
+172.80,28.80,11.63,0.00,1.00,148.80,24.00,0
+177.60,24.00,11.69,0.00,1.00,153.60,19.20,0
+177.60,19.20,11.76,0.00,1.00,158.40,14.40,0
+177.60,14.40,11.82,0.00,1.00,163.20,9.60,0
+177.60,9.60,11.89,0.00,1.00,168.00,4.80,0
+177.60,4.80,11.95,0.00,1.00,172.80,0.00,0
+177.60,0.00,12.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,12.08,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,12.14,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,12.21,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,12.27,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,12.34,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,12.40,0.00,1.00,-153.60,-28.80,0
+-172.80,-28.80,12.47,0.00,1.00,-148.80,-33.60,0
+-172.80,-33.60,12.53,0.00,1.00,-144.00,-38.40,0
+-172.80,-38.40,12.59,0.00,1.00,-139.20,-43.20,0
+-168.00,-43.20,12.66,0.00,1.00,-134.40,-48.00,0
+-168.00,-48.00,12.72,0.00,1.00,-129.60,-52.80,0
+-168.00,-52.80,12.79,0.00,1.00,-124.80,-57.60,0
+-163.20,-57.60,12.85,0.00,1.00,-120.00,-62.40,0
+-158.40,-62.40,12.92,0.00,1.00,-115.20,-67.20,0
+-153.60,-67.20,12.98,0.00,1.00,-110.40,-72.00,0
+-148.80,-72.00,13.04,0.00,1.00,-105.60,-76.80,0
+-139.20,-76.80,13.11,0.00,1.00,-100.80,-81.60,0
+-120.00,-76.80,13.17,0.00,1.00,-96.00,-81.60,0
+-96.00,-81.60,13.24,0.00,1.00,-91.20,-81.60,0
+-67.20,-81.60,13.30,0.00,1.00,-86.40,-76.80,0
+-48.00,-76.80,13.37,0.00,1.00,-81.60,-72.00,0
+-33.60,-72.00,13.43,0.00,1.00,-76.80,-72.00,0
+-28.80,-72.00,13.49,0.00,1.00,-72.00,-67.20,0
+-24.00,-67.20,13.56,0.00,1.00,-67.20,-62.40,0
+-19.20,-62.40,13.62,0.00,1.00,-62.40,-57.60,0
+-14.40,-57.60,13.69,0.00,1.00,-57.60,-52.80,0
+-14.40,-52.80,13.75,0.00,1.00,-52.80,-48.00,0
+-9.60,-48.00,13.82,0.00,1.00,-48.00,-43.20,0
+-9.60,-43.20,13.88,0.00,1.00,-43.20,-38.40,0
+-9.60,-38.40,13.94,0.00,1.00,-38.40,-33.60,0
+-4.80,-33.60,14.01,0.00,1.00,-33.60,-28.80,0
+-4.80,-28.80,14.07,0.00,1.00,-28.80,-24.00,0
+-4.80,-24.00,14.14,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,14.20,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,14.27,0.00,1.00,-14.40,-9.60,0
+-0.00,-9.60,14.33,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,14.39,0.00,1.00,-4.80,0.00,0
+0.00,0.00,14.46,0.00,1.00,0.00,4.80,0
+0.00,4.80,14.52,0.00,1.00,4.80,9.60,0
+4.80,9.60,14.59,0.00,1.00,9.60,14.40,0
+4.80,14.40,14.65,0.00,1.00,14.40,19.20,0
+4.80,19.20,14.71,0.00,1.00,19.20,24.00,0
+4.80,24.00,14.78,0.00,1.00,24.00,28.80,0
+9.60,28.80,14.84,0.00,1.00,28.80,33.60,0
+9.60,33.60,14.91,0.00,1.00,33.60,38.40,0
+9.60,38.40,14.97,0.00,1.00,38.40,43.20,0
+14.40,43.20,15.04,0.00,1.00,43.20,48.00,0
+14.40,48.00,15.10,0.00,1.00,48.00,52.80,0
+19.20,52.80,15.16,0.00,1.00,52.80,57.60,0
+19.20,52.80,15.23,0.00,1.00,57.60,57.60,0
+24.00,57.60,15.29,0.00,1.00,62.40,62.40,0
+28.80,62.40,15.36,0.00,1.00,67.20,67.20,0
+38.40,67.20,15.42,0.00,1.00,72.00,72.00,0
+48.00,72.00,15.49,0.00,1.00,76.80,72.00,0
+57.60,72.00,15.55,0.00,1.00,81.60,76.80,0
+76.80,76.80,15.61,0.00,1.00,86.40,76.80,0
+96.00,76.80,15.68,0.00,1.00,91.20,76.80,0
+115.20,76.80,15.74,0.00,1.00,96.00,72.00,0
+129.60,72.00,15.81,0.00,1.00,100.80,72.00,0
+139.20,67.20,15.87,0.00,1.00,105.60,67.20,0
+144.00,67.20,15.94,0.00,1.00,110.40,62.40,0
+153.60,62.40,16.00,0.00,1.00,115.20,57.60,0
+158.40,57.60,16.00,0.00,1.00,120.00,52.80,0
+158.40,52.80,15.94,0.00,1.00,124.80,48.00,0
+163.20,48.00,15.87,0.00,1.00,129.60,43.20,0
+168.00,43.20,15.81,0.00,1.00,134.40,38.40,0
+168.00,38.40,15.74,0.00,1.00,139.20,33.60,0
+168.00,33.60,15.68,0.00,1.00,144.00,28.80,0
+172.80,28.80,15.61,0.00,1.00,148.80,24.00,0
+172.80,24.00,15.55,0.00,1.00,153.60,19.20,0
+172.80,19.20,15.49,0.00,1.00,158.40,14.40,0
+177.60,14.40,15.42,0.00,1.00,163.20,9.60,0
+177.60,9.60,15.36,0.00,1.00,168.00,4.80,0
+177.60,4.80,15.29,0.00,1.00,172.80,0.00,0
+177.60,0.00,15.23,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,15.16,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,15.10,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,15.04,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,14.97,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,14.91,0.00,1.00,-158.40,-24.00,0
+-172.80,-24.00,14.84,0.00,1.00,-153.60,-28.80,0
+-172.80,-28.80,14.78,0.00,1.00,-148.80,-33.60,0
+-168.00,-33.60,14.71,0.00,1.00,-144.00,-38.40,0
+-168.00,-38.40,14.65,0.00,1.00,-139.20,-43.20,0
+-168.00,-43.20,14.59,0.00,1.00,-134.40,-48.00,0
+-163.20,-48.00,14.52,0.00,1.00,-129.60,-52.80,0
+-158.40,-52.80,14.46,0.00,1.00,-124.80,-57.60,0
+-158.40,-57.60,14.39,0.00,1.00,-120.00,-62.40,0
+-153.60,-62.40,14.33,0.00,1.00,-115.20,-67.20,0
+-144.00,-67.20,14.27,0.00,1.00,-110.40,-72.00,0
+-139.20,-67.20,14.20,0.00,1.00,-105.60,-72.00,0
+-129.60,-72.00,14.14,0.00,1.00,-100.80,-76.80,0
+-115.20,-76.80,14.07,0.00,1.00,-96.00,-76.80,0
+-96.00,-76.80,14.01,0.00,1.00,-91.20,-76.80,0
+-76.80,-76.80,13.94,0.00,1.00,-86.40,-72.00,0
+-57.60,-72.00,13.88,0.00,1.00,-81.60,-72.00,0
+-48.00,-72.00,13.82,0.00,1.00,-76.80,-67.20,0
+-38.40,-67.20,13.75,0.00,1.00,-72.00,-62.40,0
+-28.80,-62.40,13.69,0.00,1.00,-67.20,-57.60,0
+-24.00,-57.60,13.62,0.00,1.00,-62.40,-57.60,0
+-19.20,-52.80,13.56,0.00,1.00,-57.60,-52.80,0
+-19.20,-52.80,13.49,0.00,1.00,-52.80,-48.00,0
+-14.40,-48.00,13.43,0.00,1.00,-48.00,-43.20,0
+-14.40,-43.20,13.37,0.00,1.00,-43.20,-38.40,0
+-9.60,-38.40,13.30,0.00,1.00,-38.40,-33.60,0
+-9.60,-33.60,13.24,0.00,1.00,-33.60,-28.80,0
+-9.60,-28.80,13.17,0.00,1.00,-28.80,-24.00,0
+-4.80,-24.00,13.11,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,13.04,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,12.98,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,12.92,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,12.85,0.00,1.00,-4.80,0.00,0
+0.00,0.00,12.79,0.00,1.00,0.00,4.80,0
+0.00,4.80,12.72,0.00,1.00,4.80,9.60,0
+4.80,9.60,12.66,0.00,1.00,9.60,14.40,0
+4.80,14.40,12.59,0.00,1.00,14.40,19.20,0
+4.80,19.20,12.53,0.00,1.00,19.20,24.00,0
+9.60,24.00,12.47,0.00,1.00,24.00,28.80,0
+9.60,28.80,12.40,0.00,1.00,28.80,33.60,0
+14.40,33.60,12.34,0.00,1.00,33.60,38.40,0
+14.40,33.60,12.27,0.00,1.00,38.40,38.40,0
+19.20,38.40,12.21,0.00,1.00,43.20,43.20,0
+19.20,43.20,12.14,0.00,1.00,48.00,48.00,0
+24.00,48.00,12.08,0.00,1.00,52.80,52.80,0
+28.80,52.80,12.02,0.00,1.00,57.60,57.60,0
+33.60,57.60,11.95,0.00,1.00,62.40,62.40,0
+38.40,62.40,11.89,0.00,1.00,67.20,62.40,0
+43.20,62.40,11.82,0.00,1.00,72.00,67.20,0
+52.80,67.20,11.76,0.00,1.00,76.80,72.00,0
+67.20,67.20,11.69,0.00,1.00,81.60,72.00,0
+76.80,72.00,11.63,0.00,1.00,86.40,72.00,0
+96.00,72.00,11.57,0.00,1.00,91.20,72.00,0
+105.60,72.00,11.50,0.00,1.00,96.00,67.20,0
+120.00,67.20,11.44,0.00,1.00,100.80,67.20,0
+129.60,67.20,11.37,0.00,1.00,105.60,62.40,0
+139.20,62.40,11.31,0.00,1.00,110.40,57.60,0
+144.00,57.60,11.24,0.00,1.00,115.20,57.60,0
+148.80,52.80,11.18,0.00,1.00,120.00,52.80,0
+153.60,52.80,11.12,0.00,1.00,124.80,48.00,0
+158.40,48.00,11.05,0.00,1.00,129.60,43.20,0
+163.20,43.20,10.99,0.00,1.00,134.40,38.40,0
+163.20,38.40,10.92,0.00,1.00,139.20,33.60,0
+168.00,33.60,10.86,0.00,1.00,144.00,28.80,0
+168.00,28.80,10.80,0.00,1.00,148.80,24.00,0
+172.80,24.00,10.73,0.00,1.00,153.60,19.20,0
+172.80,19.20,10.67,0.00,1.00,158.40,14.40,0
+172.80,14.40,10.60,0.00,1.00,163.20,9.60,0
+177.60,9.60,10.54,0.00,1.00,168.00,4.80,0
+177.60,4.80,10.47,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.35,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,10.28,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,10.22,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,10.15,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,10.09,0.00,1.00,-158.40,-24.00,0
+-172.80,-24.00,10.02,0.00,1.00,-153.60,-28.80,0
+-168.00,-28.80,9.96,0.00,1.00,-148.80,-33.60,0
+-168.00,-33.60,9.90,0.00,1.00,-144.00,-38.40,0
+-163.20,-38.40,9.83,0.00,1.00,-139.20,-43.20,0
+-163.20,-43.20,9.77,0.00,1.00,-134.40,-48.00,0
+-158.40,-48.00,9.70,0.00,1.00,-129.60,-52.80,0
+-153.60,-52.80,9.64,0.00,1.00,-124.80,-57.60,0
+-148.80,-52.80,9.57,0.00,1.00,-120.00,-57.60,0
+-144.00,-57.60,9.51,0.00,1.00,-115.20,-62.40,0
+-139.20,-62.40,9.45,0.00,1.00,-110.40,-67.20,0
+-129.60,-67.20,9.38,0.00,1.00,-105.60,-67.20,0
+-120.00,-67.20,9.32,0.00,1.00,-100.80,-72.00,0
+-105.60,-72.00,9.25,0.00,1.00,-96.00,-72.00,0
+-96.00,-72.00,9.19,0.00,1.00,-91.20,-72.00,0
+-76.80,-72.00,9.12,0.00,1.00,-86.40,-72.00,0
+-67.20,-67.20,9.06,0.00,1.00,-81.60,-67.20,0
+-52.80,-67.20,9.00,0.00,1.00,-76.80,-62.40,0
+-43.20,-62.40,8.93,0.00,1.00,-72.00,-62.40,0
+-38.40,-62.40,8.87,0.00,1.00,-67.20,-57.60,0
+-33.60,-57.60,8.80,0.00,1.00,-62.40,-52.80,0
+-28.80,-52.80,8.74,0.00,1.00,-57.60,-48.00,0
+-24.00,-48.00,8.67,0.00,1.00,-52.80,-43.20,0
+-19.20,-43.20,8.61,0.00,1.00,-48.00,-38.40,0
+-19.20,-38.40,8.55,0.00,1.00,-43.20,-38.40,0
+-14.40,-33.60,8.48,0.00,1.00,-38.40,-33.60,0
+-14.40,-33.60,8.42,0.00,1.00,-33.60,-28.80,0
+-9.60,-28.80,8.35,0.00,1.00,-28.80,-24.00,0
+-9.60,-24.00,8.29,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,8.22,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,8.16,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,8.10,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,8.03,0.00,1.00,-4.80,0.00,0
+0.00,0.00,7.97,0.00,1.00,0.00,4.80,0
+0.00,4.80,7.90,0.00,1.00,4.80,9.60,0
+4.80,9.60,7.84,0.00,1.00,9.60,14.40,0
+4.80,14.40,7.78,0.00,1.00,14.40,19.20,0
+9.60,19.20,7.71,0.00,1.00,19.20,24.00,0
+9.60,24.00,7.65,0.00,1.00,24.00,24.00,0
+14.40,24.00,7.58,0.00,1.00,28.80,28.80,0
+14.40,28.80,7.52,0.00,1.00,33.60,33.60,0
+19.20,33.60,7.45,0.00,1.00,33.60,38.40,0
+19.20,38.40,7.39,0.00,1.00,38.40,43.20,0
+24.00,43.20,7.33,0.00,1.00,43.20,48.00,0
+28.80,48.00,7.26,0.00,1.00,48.00,52.80,0
+33.60,52.80,7.20,0.00,1.00,57.60,52.80,0
+38.40,52.80,7.13,0.00,1.00,62.40,57.60,0
+43.20,57.60,7.07,0.00,1.00,67.20,62.40,0
+52.80,62.40,7.00,0.00,1.00,72.00,62.40,0
+62.40,62.40,6.94,0.00,1.00,76.80,67.20,0
+72.00,62.40,6.88,0.00,1.00,81.60,67.20,0
+81.60,67.20,6.81,0.00,1.00,86.40,67.20,0
+91.20,67.20,6.75,0.00,1.00,91.20,67.20,0
+105.60,67.20,6.68,0.00,1.00,96.00,67.20,0
+115.20,62.40,6.62,0.00,1.00,100.80,62.40,0
+124.80,62.40,6.55,0.00,1.00,105.60,57.60,0
+134.40,57.60,6.49,0.00,1.00,110.40,57.60,0
+139.20,57.60,6.43,0.00,1.00,115.20,52.80,0
+144.00,52.80,6.36,0.00,1.00,120.00,48.00,0
+148.80,48.00,6.30,0.00,1.00,129.60,43.20,0
+153.60,43.20,6.23,0.00,1.00,134.40,43.20,0
+158.40,38.40,6.17,0.00,1.00,139.20,38.40,0
+158.40,38.40,6.10,0.00,1.00,144.00,33.60,0
+163.20,33.60,6.04,0.00,1.00,148.80,28.80,0
+168.00,28.80,5.98,0.00,1.00,148.80,24.00,0
+168.00,24.00,5.91,0.00,1.00,153.60,19.20,0
+172.80,19.20,5.85,0.00,1.00,158.40,14.40,0
+172.80,14.40,5.78,0.00,1.00,163.20,9.60,0
+172.80,9.60,5.72,0.00,1.00,168.00,4.80,0
+177.60,4.80,5.65,0.00,1.00,172.80,0.00,0
+177.60,0.00,5.59,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.53,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,5.46,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,5.40,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,5.33,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,5.27,0.00,1.00,-158.40,-24.00,0
+-168.00,-24.00,5.20,0.00,1.00,-153.60,-28.80,0
+-168.00,-28.80,5.14,0.00,1.00,-148.80,-33.60,0
+-163.20,-33.60,5.08,0.00,1.00,-148.80,-38.40,0
+-158.40,-38.40,5.01,0.00,1.00,-144.00,-43.20,0
+-158.40,-38.40,4.95,0.00,1.00,-139.20,-43.20,0
+-153.60,-43.20,4.88,0.00,1.00,-134.40,-48.00,0
+-148.80,-48.00,4.82,0.00,1.00,-129.60,-52.80,0
+-144.00,-52.80,4.76,0.00,1.00,-120.00,-57.60,0
+-139.20,-57.60,4.69,0.00,1.00,-115.20,-57.60,0
+-134.40,-57.60,4.63,0.00,1.00,-110.40,-62.40,0
+-124.80,-62.40,4.56,0.00,1.00,-105.60,-67.20,0
+-115.20,-62.40,4.50,0.00,1.00,-100.80,-67.20,0
+-105.60,-67.20,4.43,0.00,1.00,-96.00,-67.20,0
+-91.20,-67.20,4.37,0.00,1.00,-91.20,-67.20,0
+-81.60,-67.20,4.31,0.00,1.00,-86.40,-67.20,0
+-72.00,-62.40,4.24,0.00,1.00,-81.60,-62.40,0
+-62.40,-62.40,4.18,0.00,1.00,-76.80,-62.40,0
+-52.80,-62.40,4.11,0.00,1.00,-72.00,-57.60,0
+-43.20,-57.60,4.05,0.00,1.00,-67.20,-52.80,0
+-38.40,-52.80,3.98,0.00,1.00,-62.40,-52.80,0
+-33.60,-52.80,3.92,0.00,1.00,-57.60,-48.00,0
+-28.80,-48.00,3.86,0.00,1.00,-48.00,-43.20,0
+-24.00,-43.20,3.79,0.00,1.00,-43.20,-38.40,0
+-19.20,-38.40,3.73,0.00,1.00,-38.40,-33.60,0
+-19.20,-33.60,3.66,0.00,1.00,-33.60,-28.80,0
+-14.40,-28.80,3.60,0.00,1.00,-33.60,-24.00,0
+-14.40,-24.00,3.53,0.00,1.00,-28.80,-24.00,0
+-9.60,-24.00,3.47,0.00,1.00,-24.00,-19.20,0
+-9.60,-19.20,3.41,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,3.34,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,3.28,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,3.21,0.00,1.00,-4.80,0.00,0
+0.00,0.00,3.15,0.00,1.00,0.00,4.80,0
+0.00,4.80,3.08,0.00,1.00,4.80,9.60,0
+4.80,9.60,3.02,0.00,1.00,9.60,14.40,0
+4.80,14.40,2.96,0.00,1.00,14.40,19.20,0
+9.60,14.40,2.89,0.00,1.00,19.20,19.20,0
+14.40,19.20,2.83,0.00,1.00,19.20,24.00,0
+14.40,24.00,2.76,0.00,1.00,24.00,28.80,0
+19.20,28.80,2.70,0.00,1.00,28.80,33.60,0
+19.20,33.60,2.63,0.00,1.00,33.60,38.40,0
+24.00,38.40,2.57,0.00,1.00,38.40,43.20,0
+28.80,38.40,2.51,0.00,1.00,43.20,43.20,0
+33.60,43.20,2.44,0.00,1.00,48.00,48.00,0
+38.40,48.00,2.38,0.00,1.00,52.80,52.80,0
+43.20,52.80,2.31,0.00,1.00,57.60,52.80,0
+48.00,52.80,2.25,0.00,1.00,62.40,57.60,0
+57.60,57.60,2.18,0.00,1.00,72.00,57.60,0
+62.40,57.60,2.12,0.00,1.00,76.80,62.40,0
+72.00,62.40,2.06,0.00,1.00,81.60,62.40,0
+81.60,62.40,1.99,0.00,1.00,86.40,62.40,0
+91.20,62.40,1.93,0.00,1.00,91.20,62.40,0
+100.80,62.40,1.86,0.00,1.00,96.00,62.40,0
+110.40,57.60,1.80,0.00,1.00,100.80,57.60,0
+120.00,57.60,1.73,0.00,1.00,105.60,57.60,0
+129.60,57.60,1.67,0.00,1.00,115.20,52.80,0
+134.40,52.80,1.61,0.00,1.00,120.00,48.00,0
+139.20,48.00,1.54,0.00,1.00,124.80,48.00,0
+144.00,48.00,1.48,0.00,1.00,129.60,43.20,0
+148.80,43.20,1.41,0.00,1.00,134.40,38.40,0
+153.60,38.40,1.35,0.00,1.00,139.20,33.60,0
+158.40,33.60,1.29,0.00,1.00,144.00,33.60,0
+158.40,28.80,1.22,0.00,1.00,148.80,28.80,0
+163.20,28.80,1.16,0.00,1.00,153.60,24.00,0
+168.00,24.00,1.09,0.00,1.00,158.40,19.20,0
+168.00,19.20,1.03,0.00,1.00,163.20,14.40,0
+172.80,14.40,0.96,0.00,1.00,163.20,9.60,0
+172.80,9.60,0.90,0.00,1.00,168.00,4.80,0
+177.60,4.80,0.84,0.00,1.00,172.80,0.00,0
+177.60,0.00,0.77,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,0.71,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,0.64,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,0.58,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,0.51,0.00,1.00,-163.20,-19.20,0
+-168.00,-19.20,0.45,0.00,1.00,-163.20,-24.00,0
+-168.00,-24.00,0.39,0.00,1.00,-158.40,-28.80,0
+-163.20,-28.80,0.32,0.00,1.00,-153.60,-33.60,0
+-158.40,-28.80,0.26,0.00,1.00,-148.80,-33.60,0
+-158.40,-33.60,0.19,0.00,1.00,-144.00,-38.40,0
+-153.60,-38.40,0.13,0.00,1.00,-139.20,-43.20,0
+-148.80,-43.20,0.06,0.00,1.00,-134.40,-48.00,0
+-144.00,-48.00,0.00,0.00,1.00,-129.60,-48.00,0
+-139.20,-48.00,0.00,0.00,1.00,-124.80,-52.80,0
+-134.40,-52.80,0.16,0.00,1.00,-120.00,-57.60,0
+-129.60,-57.60,0.32,0.00,1.00,-115.20,-57.60,0
+-120.00,-57.60,0.48,0.00,1.00,-105.60,-62.40,0
+-110.40,-57.60,0.65,0.00,1.00,-100.80,-62.40,0
+-100.80,-62.40,0.81,0.00,1.00,-96.00,-62.40,0
+-91.20,-62.40,0.97,0.00,1.00,-91.20,-62.40,0
+-81.60,-62.40,1.13,0.00,1.00,-86.40,-62.40,0
+-72.00,-62.40,1.29,0.00,1.00,-81.60,-57.60,0
+-62.40,-57.60,1.45,0.00,1.00,-76.80,-57.60,0
+-57.60,-57.60,1.62,0.00,1.00,-72.00,-52.80,0
+-48.00,-52.80,1.78,0.00,1.00,-62.40,-52.80,0
+-43.20,-52.80,1.94,0.00,1.00,-57.60,-48.00,0
+-38.40,-48.00,2.10,0.00,1.00,-52.80,-43.20,0
+-33.60,-43.20,2.26,0.00,1.00,-48.00,-43.20,0
+-28.80,-38.40,2.42,0.00,1.00,-43.20,-38.40,0
+-24.00,-38.40,2.59,0.00,1.00,-38.40,-33.60,0
+-19.20,-33.60,2.75,0.00,1.00,-33.60,-28.80,0
+-19.20,-28.80,2.91,0.00,1.00,-28.80,-24.00,0
+-14.40,-24.00,3.07,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,3.23,0.00,1.00,-19.20,-19.20,0
+-9.60,-14.40,3.39,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,3.56,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,3.72,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,3.88,0.00,1.00,-4.80,0.00,0
+0.00,0.00,4.04,0.00,1.00,0.00,4.80,0
+4.80,4.80,4.20,0.00,1.00,4.80,9.60,0
+4.80,9.60,4.36,0.00,1.00,9.60,14.40,0
+9.60,9.60,4.53,0.00,1.00,14.40,14.40,0
+9.60,14.40,4.69,0.00,1.00,14.40,19.20,0
+14.40,19.20,4.85,0.00,1.00,19.20,24.00,0
+19.20,24.00,5.01,0.00,1.00,24.00,28.80,0
+19.20,28.80,5.17,0.00,1.00,28.80,33.60,0
+24.00,28.80,5.33,0.00,1.00,33.60,33.60,0
+28.80,33.60,5.49,0.00,1.00,38.40,38.40,0
+33.60,38.40,5.66,0.00,1.00,43.20,43.20,0
+38.40,43.20,5.82,0.00,1.00,48.00,43.20,0
+43.20,43.20,5.98,0.00,1.00,52.80,48.00,0
+48.00,48.00,6.14,0.00,1.00,57.60,52.80,0
+52.80,48.00,6.30,0.00,1.00,62.40,52.80,0
+57.60,52.80,6.46,0.00,1.00,67.20,57.60,0
+67.20,52.80,6.63,0.00,1.00,72.00,57.60,0
+76.80,57.60,6.79,0.00,1.00,81.60,57.60,0
+81.60,57.60,6.95,0.00,1.00,86.40,57.60,0
+91.20,57.60,7.11,0.00,1.00,91.20,57.60,0
+100.80,57.60,7.27,0.00,1.00,96.00,57.60,0
+110.40,52.80,7.43,0.00,1.00,100.80,52.80,0
+115.20,52.80,7.60,0.00,1.00,110.40,52.80,0
+124.80,52.80,7.76,0.00,1.00,115.20,48.00,0
+129.60,48.00,7.92,0.00,1.00,120.00,48.00,0
+134.40,48.00,8.08,0.00,1.00,124.80,43.20,0
+139.20,43.20,8.24,0.00,1.00,129.60,38.40,0
+144.00,38.40,8.40,0.00,1.00,134.40,38.40,0
+148.80,38.40,8.57,0.00,1.00,139.20,33.60,0
+153.60,33.60,8.73,0.00,1.00,144.00,28.80,0
+158.40,28.80,8.89,0.00,1.00,148.80,24.00,0
+163.20,24.00,9.05,0.00,1.00,153.60,24.00,0
+163.20,24.00,9.21,0.00,1.00,158.40,19.20,0
+168.00,19.20,9.37,0.00,1.00,163.20,14.40,0
+172.80,14.40,9.54,0.00,1.00,168.00,9.60,0
+172.80,9.60,9.70,0.00,1.00,168.00,4.80,0
+177.60,4.80,9.86,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.18,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,10.34,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,10.51,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,10.67,0.00,1.00,-168.00,-19.20,0
+-168.00,-19.20,10.83,0.00,1.00,-163.20,-24.00,0
+-163.20,-24.00,10.99,0.00,1.00,-158.40,-24.00,0
+-163.20,-24.00,11.15,0.00,1.00,-153.60,-28.80,0
+-158.40,-28.80,11.31,0.00,1.00,-148.80,-33.60,0
+-153.60,-33.60,11.47,0.00,1.00,-144.00,-38.40,0
+-148.80,-38.40,11.64,0.00,1.00,-139.20,-38.40,0
+-144.00,-38.40,11.80,0.00,1.00,-134.40,-43.20,0
+-139.20,-43.20,11.96,0.00,1.00,-129.60,-48.00,0
+-134.40,-48.00,12.12,0.00,1.00,-124.80,-48.00,0
+-129.60,-48.00,12.28,0.00,1.00,-120.00,-52.80,0
+-124.80,-52.80,12.44,0.00,1.00,-115.20,-52.80,0
+-115.20,-52.80,12.61,0.00,1.00,-110.40,-57.60,0
+-110.40,-52.80,12.77,0.00,1.00,-100.80,-57.60,0
+-100.80,-57.60,12.93,0.00,1.00,-96.00,-57.60,0
+-91.20,-57.60,13.09,0.00,1.00,-91.20,-57.60,0
+-81.60,-57.60,13.25,0.00,1.00,-86.40,-57.60,0
+-76.80,-57.60,13.41,0.00,1.00,-81.60,-57.60,0
+-67.20,-52.80,13.58,0.00,1.00,-72.00,-52.80,0
+-57.60,-52.80,13.74,0.00,1.00,-67.20,-52.80,0
+-52.80,-48.00,13.90,0.00,1.00,-62.40,-48.00,0
+-48.00,-48.00,14.06,0.00,1.00,-57.60,-43.20,0
+-43.20,-43.20,14.22,0.00,1.00,-52.80,-43.20,0
+-38.40,-43.20,14.38,0.00,1.00,-48.00,-38.40,0
+-33.60,-38.40,14.55,0.00,1.00,-43.20,-33.60,0
+-28.80,-33.60,14.71,0.00,1.00,-38.40,-33.60,0
+-24.00,-28.80,14.87,0.00,1.00,-33.60,-28.80,0
+-19.20,-28.80,15.03,0.00,1.00,-28.80,-24.00,0
+-19.20,-24.00,15.19,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,15.35,0.00,1.00,-19.20,-14.40,0
+-9.60,-14.40,15.52,0.00,1.00,-14.40,-14.40,0
+-9.60,-9.60,15.68,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,15.84,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,16.00,0.00,1.00,-4.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,0.00,4.80,0
+4.80,4.80,15.84,0.00,1.00,4.80,9.60,0
+4.80,9.60,15.68,0.00,1.00,9.60,9.60,0
+9.60,9.60,15.52,0.00,1.00,9.60,14.40,0
+14.40,14.40,15.35,0.00,1.00,14.40,19.20,0
+14.40,19.20,15.19,0.00,1.00,19.20,24.00,0
+19.20,24.00,15.03,0.00,1.00,24.00,24.00,0
+24.00,24.00,14.87,0.00,1.00,28.80,28.80,0
+24.00,28.80,14.71,0.00,1.00,33.60,33.60,0
+28.80,33.60,14.55,0.00,1.00,38.40,38.40,0
+33.60,33.60,14.38,0.00,1.00,43.20,38.40,0
+38.40,38.40,14.22,0.00,1.00,48.00,43.20,0
+43.20,43.20,14.06,0.00,1.00,52.80,43.20,0
+48.00,43.20,13.90,0.00,1.00,57.60,48.00,0
+57.60,48.00,13.74,0.00,1.00,62.40,48.00,0
+62.40,48.00,13.58,0.00,1.00,67.20,52.80,0
+67.20,48.00,13.41,0.00,1.00,72.00,52.80,0
+76.80,52.80,13.25,0.00,1.00,81.60,52.80,0
+86.40,52.80,13.09,0.00,1.00,86.40,52.80,0
+91.20,52.80,12.93,0.00,1.00,91.20,52.80,0
+100.80,52.80,12.77,0.00,1.00,96.00,52.80,0
+105.60,48.00,12.61,0.00,1.00,105.60,48.00,0
+115.20,48.00,12.44,0.00,1.00,110.40,48.00,0
+120.00,48.00,12.28,0.00,1.00,115.20,48.00,0
+124.80,43.20,12.12,0.00,1.00,120.00,43.20,0
+134.40,43.20,11.96,0.00,1.00,124.80,43.20,0
+139.20,38.40,11.80,0.00,1.00,129.60,38.40,0
+144.00,38.40,11.64,0.00,1.00,134.40,33.60,0
+148.80,33.60,11.47,0.00,1.00,139.20,33.60,0
+153.60,28.80,11.31,0.00,1.00,144.00,28.80,0
+153.60,28.80,11.15,0.00,1.00,148.80,24.00,0
+158.40,24.00,10.99,0.00,1.00,153.60,19.20,0
+163.20,19.20,10.83,0.00,1.00,158.40,19.20,0
+168.00,14.40,10.67,0.00,1.00,163.20,14.40,0
+168.00,14.40,10.51,0.00,1.00,168.00,9.60,0
+172.80,9.60,10.34,0.00,1.00,172.80,4.80,0
+177.60,4.80,10.18,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,9.86,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,9.70,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,9.54,0.00,1.00,-172.80,-14.40,0
+-168.00,-14.40,9.37,0.00,1.00,-168.00,-19.20,0
+-168.00,-14.40,9.21,0.00,1.00,-163.20,-19.20,0
+-163.20,-19.20,9.05,0.00,1.00,-158.40,-24.00,0
+-158.40,-24.00,8.89,0.00,1.00,-153.60,-28.80,0
+-153.60,-28.80,8.73,0.00,1.00,-148.80,-33.60,0
+-153.60,-28.80,8.57,0.00,1.00,-144.00,-33.60,0
+-148.80,-33.60,8.40,0.00,1.00,-139.20,-38.40,0
+-144.00,-38.40,8.24,0.00,1.00,-134.40,-43.20,0
+-139.20,-38.40,8.08,0.00,1.00,-129.60,-43.20,0
+-134.40,-43.20,7.92,0.00,1.00,-124.80,-48.00,0
+-124.80,-43.20,7.76,0.00,1.00,-120.00,-48.00,0
+-120.00,-48.00,7.60,0.00,1.00,-115.20,-48.00,0
+-115.20,-48.00,7.43,0.00,1.00,-110.40,-52.80,0
+-105.60,-48.00,7.27,0.00,1.00,-105.60,-52.80,0
+-100.80,-52.80,7.11,0.00,1.00,-96.00,-52.80,0
+-91.20,-52.80,6.95,0.00,1.00,-91.20,-52.80,0
+-86.40,-52.80,6.79,0.00,1.00,-86.40,-52.80,0
+-76.80,-52.80,6.63,0.00,1.00,-81.60,-52.80,0
+-67.20,-48.00,6.46,0.00,1.00,-72.00,-48.00,0
+-62.40,-48.00,6.30,0.00,1.00,-67.20,-48.00,0
+-57.60,-48.00,6.14,0.00,1.00,-62.40,-43.20,0
+-48.00,-43.20,5.98,0.00,1.00,-57.60,-43.20,0
+-43.20,-43.20,5.82,0.00,1.00,-52.80,-38.40,0
+-38.40,-38.40,5.66,0.00,1.00,-48.00,-38.40,0
+-33.60,-33.60,5.49,0.00,1.00,-43.20,-33.60,0
+-28.80,-33.60,5.33,0.00,1.00,-38.40,-28.80,0
+-24.00,-28.80,5.17,0.00,1.00,-33.60,-24.00,0
+-24.00,-24.00,5.01,0.00,1.00,-28.80,-24.00,0
+-19.20,-24.00,4.85,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,4.69,0.00,1.00,-19.20,-14.40,0
+-14.40,-14.40,4.53,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,4.36,0.00,1.00,-9.60,-9.60,0
+-4.80,-9.60,4.20,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,4.04,0.00,1.00,-4.80,0.00,0
+0.00,0.00,3.88,0.00,1.00,0.00,4.80,0
+4.80,4.80,3.72,0.00,1.00,4.80,4.80,0
+4.80,4.80,3.56,0.00,1.00,4.80,9.60,0
+9.60,9.60,3.39,0.00,1.00,9.60,14.40,0
+14.40,14.40,3.23,0.00,1.00,14.40,19.20,0
+19.20,19.20,3.07,0.00,1.00,19.20,19.20,0
+19.20,19.20,2.91,0.00,1.00,24.00,24.00,0
+24.00,24.00,2.75,0.00,1.00,24.00,28.80,0
+28.80,28.80,2.59,0.00,1.00,28.80,28.80,0
+33.60,28.80,2.42,0.00,1.00,33.60,33.60,0
+38.40,33.60,2.26,0.00,1.00,38.40,38.40,0
+43.20,33.60,2.10,0.00,1.00,43.20,38.40,0
+48.00,38.40,1.94,0.00,1.00,48.00,43.20,0
+52.80,38.40,1.78,0.00,1.00,52.80,43.20,0
+57.60,43.20,1.62,0.00,1.00,62.40,43.20,0
+62.40,43.20,1.45,0.00,1.00,67.20,48.00,0
+72.00,43.20,1.29,0.00,1.00,72.00,48.00,0
+76.80,48.00,1.13,0.00,1.00,76.80,48.00,0
+86.40,48.00,0.97,0.00,1.00,86.40,48.00,0
+91.20,48.00,0.81,0.00,1.00,91.20,48.00,0
+100.80,48.00,0.65,0.00,1.00,96.00,48.00,0
+105.60,48.00,0.48,0.00,1.00,105.60,48.00,0
+110.40,43.20,0.32,0.00,1.00,110.40,43.20,0
+120.00,43.20,0.16,0.00,1.00,115.20,43.20,0
+124.80,43.20,0.00,0.00,1.00,124.80,38.40,0
+129.60,38.40,0.00,0.00,1.00,129.60,38.40,0
+134.40,38.40,0.04,0.00,1.00,134.40,33.60,0
+139.20,33.60,0.08,0.00,1.00,139.20,33.60,0
+144.00,33.60,0.12,0.00,1.00,144.00,28.80,0
+148.80,28.80,0.16,0.00,1.00,148.80,24.00,0
+153.60,24.00,0.20,0.00,1.00,153.60,24.00,0
+158.40,24.00,0.24,0.00,1.00,158.40,19.20,0
+163.20,19.20,0.28,0.00,1.00,158.40,14.40,0
+163.20,14.40,0.32,0.00,1.00,163.20,14.40,0
+168.00,14.40,0.36,0.00,1.00,168.00,9.60,0
+172.80,9.60,0.40,0.00,1.00,172.80,4.80,0
+172.80,4.80,0.44,0.00,1.00,172.80,0.00,0
+177.60,0.00,0.48,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,0.52,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,0.56,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,0.60,0.00,1.00,-172.80,-14.40,0
+-168.00,-14.40,0.64,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,0.68,0.00,1.00,-163.20,-19.20,0
+-163.20,-19.20,0.72,0.00,1.00,-158.40,-24.00,0
+-158.40,-24.00,0.76,0.00,1.00,-158.40,-24.00,0
+-153.60,-24.00,0.80,0.00,1.00,-153.60,-28.80,0
+-148.80,-28.80,0.84,0.00,1.00,-148.80,-33.60,0
+-144.00,-33.60,0.88,0.00,1.00,-144.00,-33.60,0
+-139.20,-33.60,0.92,0.00,1.00,-139.20,-38.40,0
+-134.40,-38.40,0.96,0.00,1.00,-134.40,-38.40,0
+-129.60,-38.40,1.00,0.00,1.00,-129.60,-43.20,0
+-124.80,-43.20,1.04,0.00,1.00,-124.80,-43.20,0
+-120.00,-43.20,1.08,0.00,1.00,-115.20,-48.00,0
+-110.40,-43.20,1.12,0.00,1.00,-110.40,-48.00,0
+-105.60,-48.00,1.16,0.00,1.00,-105.60,-48.00,0
+-100.80,-48.00,1.20,0.00,1.00,-96.00,-48.00,0
+-91.20,-48.00,1.24,0.00,1.00,-91.20,-48.00,0
+-86.40,-48.00,1.28,0.00,1.00,-86.40,-48.00,0
+-76.80,-48.00,1.32,0.00,1.00,-76.80,-48.00,0
+-72.00,-43.20,1.36,0.00,1.00,-72.00,-43.20,0
+-62.40,-43.20,1.40,0.00,1.00,-67.20,-43.20,0
+-57.60,-43.20,1.44,0.00,1.00,-62.40,-43.20,0
+-52.80,-38.40,1.48,0.00,1.00,-52.80,-38.40,0
+-48.00,-38.40,1.52,0.00,1.00,-48.00,-38.40,0
+-43.20,-33.60,1.56,0.00,1.00,-43.20,-33.60,0
+-38.40,-33.60,1.60,0.00,1.00,-38.40,-28.80,0
+-33.60,-28.80,1.64,0.00,1.00,-33.60,-28.80,0
+-28.80,-28.80,1.68,0.00,1.00,-28.80,-24.00,0
+-24.00,-24.00,1.72,0.00,1.00,-24.00,-19.20,0
+-19.20,-19.20,1.76,0.00,1.00,-24.00,-19.20,0
+-19.20,-19.20,1.80,0.00,1.00,-19.20,-14.40,0
+-14.40,-14.40,1.84,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,1.88,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,1.92,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,1.96,0.00,1.00,-4.80,0.00,0
+0.00,0.00,2.01,0.00,1.00,0.00,4.80,0
+4.80,4.80,2.05,0.00,1.00,4.80,4.80,0
+4.80,4.80,2.09,0.00,1.00,4.80,9.60,0
+9.60,9.60,2.13,0.00,1.00,9.60,14.40,0
+14.40,14.40,2.17,0.00,1.00,14.40,14.40,0
+19.20,14.40,2.21,0.00,1.00,14.40,19.20,0
+24.00,19.20,2.25,0.00,1.00,19.20,24.00,0
+24.00,24.00,2.29,0.00,1.00,24.00,24.00,0
+28.80,24.00,2.33,0.00,1.00,28.80,28.80,0
+33.60,28.80,2.37,0.00,1.00,33.60,28.80,0
+38.40,28.80,2.41,0.00,1.00,38.40,33.60,0
+43.20,33.60,2.45,0.00,1.00,43.20,33.60,0
+48.00,33.60,2.49,0.00,1.00,48.00,38.40,0
+52.80,38.40,2.53,0.00,1.00,52.80,38.40,0
+62.40,38.40,2.57,0.00,1.00,57.60,38.40,0
+67.20,38.40,2.61,0.00,1.00,62.40,43.20,0
+72.00,38.40,2.65,0.00,1.00,72.00,43.20,0
+76.80,43.20,2.69,0.00,1.00,76.80,43.20,0
+86.40,43.20,2.73,0.00,1.00,86.40,43.20,0
+91.20,43.20,2.77,0.00,1.00,91.20,43.20,0
+96.00,43.20,2.81,0.00,1.00,100.80,43.20,0
+105.60,43.20,2.85,0.00,1.00,105.60,43.20,0
+110.40,38.40,2.89,0.00,1.00,110.40,38.40,0
+115.20,38.40,2.93,0.00,1.00,120.00,38.40,0
+120.00,38.40,2.97,0.00,1.00,124.80,38.40,0
+129.60,33.60,3.01,0.00,1.00,129.60,33.60,0
+134.40,33.60,3.05,0.00,1.00,134.40,33.60,0
+139.20,28.80,3.09,0.00,1.00,139.20,28.80,0
+144.00,28.80,3.13,0.00,1.00,144.00,28.80,0
+148.80,24.00,3.17,0.00,1.00,148.80,24.00,0
+153.60,24.00,3.21,0.00,1.00,153.60,19.20,0
+153.60,19.20,3.25,0.00,1.00,158.40,19.20,0
+158.40,19.20,3.29,0.00,1.00,163.20,14.40,0
+163.20,14.40,3.33,0.00,1.00,163.20,9.60,0
+168.00,9.60,3.37,0.00,1.00,168.00,9.60,0
+172.80,9.60,3.41,0.00,1.00,172.80,4.80,0
+172.80,4.80,3.45,0.00,1.00,172.80,0.00,0
+177.60,0.00,3.49,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.53,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,3.57,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,3.61,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,3.65,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,3.69,0.00,1.00,-163.20,-19.20,0
+-158.40,-19.20,3.73,0.00,1.00,-163.20,-19.20,0
+-153.60,-19.20,3.77,0.00,1.00,-158.40,-24.00,0
+-153.60,-24.00,3.81,0.00,1.00,-153.60,-28.80,0
+-148.80,-24.00,3.85,0.00,1.00,-148.80,-28.80,0
+-144.00,-28.80,3.89,0.00,1.00,-144.00,-33.60,0
+-139.20,-28.80,3.93,0.00,1.00,-139.20,-33.60,0
+-134.40,-33.60,3.97,0.00,1.00,-134.40,-38.40,0
+-129.60,-33.60,4.01,0.00,1.00,-129.60,-38.40,0
+-120.00,-38.40,4.05,0.00,1.00,-124.80,-38.40,0
+-115.20,-38.40,4.09,0.00,1.00,-120.00,-43.20,0
+-110.40,-38.40,4.13,0.00,1.00,-110.40,-43.20,0
+-105.60,-43.20,4.17,0.00,1.00,-105.60,-43.20,0
+-96.00,-43.20,4.21,0.00,1.00,-100.80,-43.20,0
+-91.20,-43.20,4.25,0.00,1.00,-91.20,-43.20,0
+-86.40,-43.20,4.29,0.00,1.00,-86.40,-43.20,0
+-76.80,-43.20,4.33,0.00,1.00,-76.80,-43.20,0
+-72.00,-38.40,4.37,0.00,1.00,-72.00,-38.40,0
+-67.20,-38.40,4.41,0.00,1.00,-62.40,-38.40,0
+-62.40,-38.40,4.45,0.00,1.00,-57.60,-38.40,0
+-52.80,-38.40,4.49,0.00,1.00,-52.80,-33.60,0
+-48.00,-33.60,4.53,0.00,1.00,-48.00,-33.60,0
+-43.20,-33.60,4.57,0.00,1.00,-43.20,-28.80,0
+-38.40,-28.80,4.61,0.00,1.00,-38.40,-28.80,0
+-33.60,-28.80,4.65,0.00,1.00,-33.60,-24.00,0
+-28.80,-24.00,4.69,0.00,1.00,-28.80,-24.00,0
+-24.00,-24.00,4.73,0.00,1.00,-24.00,-19.20,0
+-24.00,-19.20,4.77,0.00,1.00,-19.20,-14.40,0
+-19.20,-14.40,4.81,0.00,1.00,-14.40,-14.40,0
+-14.40,-14.40,4.85,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,4.89,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,4.93,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,4.97,0.00,1.00,-4.80,0.00,0
+0.00,0.00,5.01,0.00,1.00,0.00,4.80,0
+4.80,4.80,5.05,0.00,1.00,4.80,4.80,0
+9.60,4.80,5.09,0.00,1.00,4.80,9.60,0
+9.60,9.60,5.13,0.00,1.00,9.60,9.60,0
+14.40,9.60,5.17,0.00,1.00,9.60,14.40,0
+19.20,14.40,5.21,0.00,1.00,14.40,19.20,0
+24.00,19.20,5.25,0.00,1.00,19.20,19.20,0
+28.80,19.20,5.29,0.00,1.00,24.00,24.00,0
+33.60,24.00,5.33,0.00,1.00,24.00,24.00,0
+38.40,24.00,5.37,0.00,1.00,28.80,28.80,0
+43.20,28.80,5.41,0.00,1.00,33.60,28.80,0
+48.00,28.80,5.45,0.00,1.00,38.40,33.60,0
+52.80,28.80,5.49,0.00,1.00,43.20,33.60,0
+57.60,33.60,5.53,0.00,1.00,48.00,33.60,0
+62.40,33.60,5.57,0.00,1.00,52.80,38.40,0
+67.20,33.60,5.61,0.00,1.00,62.40,38.40,0
+72.00,38.40,5.65,0.00,1.00,67.20,38.40,0
+81.60,38.40,5.69,0.00,1.00,76.80,38.40,0
+86.40,38.40,5.73,0.00,1.00,86.40,38.40,0
+91.20,38.40,5.77,0.00,1.00,91.20,38.40,0
+96.00,38.40,5.81,0.00,1.00,100.80,38.40,0
+105.60,38.40,5.85,0.00,1.00,105.60,38.40,0
+110.40,33.60,5.89,0.00,1.00,115.20,33.60,0
+115.20,33.60,5.93,0.00,1.00,120.00,33.60,0
+120.00,33.60,5.97,0.00,1.00,129.60,33.60,0
+124.80,33.60,6.02,0.00,1.00,134.40,28.80,0
+129.60,28.80,6.06,0.00,1.00,139.20,28.80,0
+134.40,28.80,6.10,0.00,1.00,144.00,24.00,0
+139.20,24.00,6.14,0.00,1.00,148.80,24.00,0
+144.00,24.00,6.18,0.00,1.00,153.60,19.20,0
+148.80,19.20,6.22,0.00,1.00,158.40,19.20,0
+153.60,19.20,6.26,0.00,1.00,158.40,14.40,0
+158.40,14.40,6.30,0.00,1.00,163.20,14.40,0
+163.20,14.40,6.34,0.00,1.00,168.00,9.60,0
+168.00,9.60,6.38,0.00,1.00,168.00,9.60,0
+168.00,9.60,6.42,0.00,1.00,172.80,4.80,0
+172.80,4.80,6.46,0.00,1.00,177.60,0.00,0
+177.60,0.00,6.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.54,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,6.58,0.00,1.00,-177.60,-9.60,0
+-168.00,-9.60,6.62,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,6.66,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,6.70,0.00,1.00,-168.00,-14.40,0
+-158.40,-14.40,6.74,0.00,1.00,-163.20,-19.20,0
+-153.60,-19.20,6.78,0.00,1.00,-158.40,-19.20,0
+-148.80,-19.20,6.82,0.00,1.00,-158.40,-24.00,0
+-144.00,-24.00,6.86,0.00,1.00,-153.60,-24.00,0
+-139.20,-24.00,6.90,0.00,1.00,-148.80,-28.80,0
+-134.40,-28.80,6.94,0.00,1.00,-144.00,-28.80,0
+-129.60,-28.80,6.98,0.00,1.00,-139.20,-33.60,0
+-124.80,-33.60,7.02,0.00,1.00,-134.40,-33.60,0
+-120.00,-33.60,7.06,0.00,1.00,-129.60,-33.60,0
+-115.20,-33.60,7.10,0.00,1.00,-120.00,-38.40,0
+-110.40,-33.60,7.14,0.00,1.00,-115.20,-38.40,0
+-105.60,-38.40,7.18,0.00,1.00,-105.60,-38.40,0
+-96.00,-38.40,7.22,0.00,1.00,-100.80,-38.40,0
+-91.20,-38.40,7.26,0.00,1.00,-91.20,-38.40,0
+-86.40,-38.40,7.30,0.00,1.00,-86.40,-38.40,0
+-81.60,-38.40,7.34,0.00,1.00,-76.80,-38.40,0
+-72.00,-38.40,7.38,0.00,1.00,-67.20,-38.40,0
+-67.20,-33.60,7.42,0.00,1.00,-62.40,-33.60,0
+-62.40,-33.60,7.46,0.00,1.00,-52.80,-33.60,0
+-57.60,-33.60,7.50,0.00,1.00,-48.00,-33.60,0
+-52.80,-28.80,7.54,0.00,1.00,-43.20,-28.80,0
+-48.00,-28.80,7.58,0.00,1.00,-38.40,-28.80,0
+-43.20,-28.80,7.62,0.00,1.00,-33.60,-24.00,0
+-38.40,-24.00,7.66,0.00,1.00,-28.80,-24.00,0
+-33.60,-24.00,7.70,0.00,1.00,-24.00,-19.20,0
+-28.80,-19.20,7.74,0.00,1.00,-24.00,-19.20,0
+-24.00,-19.20,7.78,0.00,1.00,-19.20,-14.40,0
+-19.20,-14.40,7.82,0.00,1.00,-14.40,-9.60,0
+-14.40,-9.60,7.86,0.00,1.00,-9.60,-9.60,0
+-9.60,-9.60,7.90,0.00,1.00,-9.60,-4.80,0
+-9.60,-4.80,7.94,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,7.98,0.00,1.00,-4.80,0.00,0
+0.00,0.00,8.02,0.00,1.00,0.00,4.80,0
+4.80,4.80,8.06,0.00,1.00,4.80,4.80,0
+9.60,4.80,8.10,0.00,1.00,4.80,9.60,0
+14.40,9.60,8.14,0.00,1.00,9.60,9.60,0
+14.40,9.60,8.18,0.00,1.00,9.60,14.40,0
+19.20,14.40,8.22,0.00,1.00,14.40,14.40,0
+24.00,14.40,8.26,0.00,1.00,14.40,19.20,0
+28.80,19.20,8.30,0.00,1.00,19.20,19.20,0
+33.60,19.20,8.34,0.00,1.00,24.00,24.00,0
+38.40,19.20,8.38,0.00,1.00,28.80,24.00,0
+43.20,24.00,8.42,0.00,1.00,28.80,24.00,0
+48.00,24.00,8.46,0.00,1.00,33.60,28.80,0
+52.80,28.80,8.50,0.00,1.00,38.40,28.80,0
+57.60,28.80,8.54,0.00,1.00,48.00,28.80,0
+62.40,28.80,8.58,0.00,1.00,52.80,33.60,0
+67.20,28.80,8.62,0.00,1.00,57.60,33.60,0
+76.80,33.60,8.66,0.00,1.00,67.20,33.60,0
+81.60,33.60,8.70,0.00,1.00,76.80,33.60,0
+86.40,33.60,8.74,0.00,1.00,81.60,33.60,0
+91.20,33.60,8.78,0.00,1.00,91.20,33.60,0
+96.00,33.60,8.82,0.00,1.00,100.80,33.60,0
+100.80,33.60,8.86,0.00,1.00,110.40,33.60,0
+110.40,28.80,8.90,0.00,1.00,115.20,33.60,0
+115.20,28.80,8.94,0.00,1.00,124.80,28.80,0
+120.00,28.80,8.98,0.00,1.00,129.60,28.80,0
+124.80,28.80,9.02,0.00,1.00,139.20,28.80,0
+129.60,24.00,9.06,0.00,1.00,144.00,24.00,0
+134.40,24.00,9.10,0.00,1.00,148.80,24.00,0
+139.20,24.00,9.14,0.00,1.00,153.60,19.20,0
+144.00,19.20,9.18,0.00,1.00,153.60,19.20,0
+148.80,19.20,9.22,0.00,1.00,158.40,14.40,0
+153.60,14.40,9.26,0.00,1.00,163.20,14.40,0
+158.40,14.40,9.30,0.00,1.00,163.20,9.60,0
+163.20,9.60,9.34,0.00,1.00,168.00,9.60,0
+168.00,9.60,9.38,0.00,1.00,172.80,4.80,0
+168.00,4.80,9.42,0.00,1.00,172.80,4.80,0
+172.80,4.80,9.46,0.00,1.00,177.60,0.00,0
+177.60,0.00,9.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,9.54,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,9.58,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,9.62,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,9.66,0.00,1.00,-172.80,-9.60,0
+-163.20,-9.60,9.70,0.00,1.00,-168.00,-14.40,0
+-158.40,-14.40,9.74,0.00,1.00,-163.20,-14.40,0
+-153.60,-14.40,9.78,0.00,1.00,-163.20,-19.20,0
+-148.80,-19.20,9.82,0.00,1.00,-158.40,-19.20,0
+-144.00,-19.20,9.86,0.00,1.00,-153.60,-24.00,0
+-139.20,-24.00,9.90,0.00,1.00,-153.60,-24.00,0
+-134.40,-24.00,9.94,0.00,1.00,-148.80,-28.80,0
+-129.60,-24.00,9.98,0.00,1.00,-144.00,-28.80,0
+-124.80,-28.80,10.03,0.00,1.00,-139.20,-28.80,0
+-120.00,-28.80,10.07,0.00,1.00,-129.60,-33.60,0
+-115.20,-28.80,10.11,0.00,1.00,-124.80,-33.60,0
+-110.40,-28.80,10.15,0.00,1.00,-115.20,-33.60,0
+-100.80,-33.60,10.19,0.00,1.00,-110.40,-33.60,0
+-96.00,-33.60,10.23,0.00,1.00,-100.80,-33.60,0
+-91.20,-33.60,10.27,0.00,1.00,-91.20,-33.60,0
+-86.40,-33.60,10.31,0.00,1.00,-81.60,-33.60,0
+-81.60,-33.60,10.35,0.00,1.00,-76.80,-33.60,0
+-76.80,-33.60,10.39,0.00,1.00,-67.20,-33.60,0
+-67.20,-28.80,10.43,0.00,1.00,-57.60,-28.80,0
+-62.40,-28.80,10.47,0.00,1.00,-52.80,-28.80,0
+-57.60,-28.80,10.51,0.00,1.00,-48.00,-28.80,0
+-52.80,-28.80,10.55,0.00,1.00,-38.40,-24.00,0
+-48.00,-24.00,10.59,0.00,1.00,-33.60,-24.00,0
+-43.20,-24.00,10.63,0.00,1.00,-28.80,-24.00,0
+-38.40,-19.20,10.67,0.00,1.00,-28.80,-19.20,0
+-33.60,-19.20,10.71,0.00,1.00,-24.00,-19.20,0
+-28.80,-19.20,10.75,0.00,1.00,-19.20,-14.40,0
+-24.00,-14.40,10.79,0.00,1.00,-14.40,-14.40,0
+-19.20,-14.40,10.83,0.00,1.00,-14.40,-9.60,0
+-14.40,-9.60,10.87,0.00,1.00,-9.60,-9.60,0
+-14.40,-9.60,10.91,0.00,1.00,-9.60,-4.80,0
+-9.60,-4.80,10.95,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,10.99,0.00,1.00,-4.80,0.00,0
+0.00,0.00,11.03,0.00,1.00,0.00,0.00,0
+4.80,0.00,11.07,0.00,1.00,0.00,4.80,0
+9.60,4.80,11.11,0.00,1.00,4.80,4.80,0
+14.40,4.80,11.15,0.00,1.00,4.80,9.60,0
+19.20,9.60,11.19,0.00,1.00,9.60,9.60,0
+19.20,9.60,11.23,0.00,1.00,9.60,14.40,0
+24.00,14.40,11.27,0.00,1.00,14.40,14.40,0
+28.80,14.40,11.31,0.00,1.00,19.20,19.20,0
+33.60,14.40,11.35,0.00,1.00,19.20,19.20,0
+38.40,19.20,11.39,0.00,1.00,24.00,19.20,0
+43.20,19.20,11.43,0.00,1.00,28.80,24.00,0
+48.00,24.00,11.47,0.00,1.00,33.60,24.00,0
+52.80,24.00,11.51,0.00,1.00,38.40,24.00,0
+57.60,24.00,11.55,0.00,1.00,43.20,24.00,0
+62.40,24.00,11.59,0.00,1.00,48.00,28.80,0
+72.00,24.00,11.63,0.00,1.00,52.80,28.80,0
+76.80,28.80,11.67,0.00,1.00,62.40,28.80,0
+81.60,28.80,11.71,0.00,1.00,72.00,28.80,0
+86.40,28.80,11.75,0.00,1.00,81.60,28.80,0
+91.20,28.80,11.79,0.00,1.00,91.20,28.80,0
+96.00,28.80,11.83,0.00,1.00,100.80,28.80,0
+100.80,28.80,11.87,0.00,1.00,110.40,28.80,0
+105.60,28.80,11.91,0.00,1.00,120.00,28.80,0
+110.40,24.00,11.95,0.00,1.00,129.60,24.00,0
+120.00,24.00,11.99,0.00,1.00,134.40,24.00,0
+124.80,24.00,12.03,0.00,1.00,139.20,24.00,0
+129.60,24.00,12.07,0.00,1.00,144.00,24.00,0
+134.40,19.20,12.11,0.00,1.00,148.80,19.20,0
+139.20,19.20,12.15,0.00,1.00,153.60,19.20,0
+144.00,19.20,12.19,0.00,1.00,158.40,14.40,0
+148.80,14.40,12.23,0.00,1.00,163.20,14.40,0
+153.60,14.40,12.27,0.00,1.00,163.20,14.40,0
+158.40,9.60,12.31,0.00,1.00,168.00,9.60,0
+158.40,9.60,12.35,0.00,1.00,168.00,9.60,0
+163.20,9.60,12.39,0.00,1.00,172.80,4.80,0
+168.00,4.80,12.43,0.00,1.00,172.80,4.80,0
+172.80,4.80,12.47,0.00,1.00,177.60,0.00,0
+177.60,0.00,12.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,12.55,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,12.59,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,12.63,0.00,1.00,-172.80,-9.60,0
+-163.20,-9.60,12.67,0.00,1.00,-172.80,-9.60,0
+-158.40,-9.60,12.71,0.00,1.00,-168.00,-14.40,0
+-158.40,-9.60,12.75,0.00,1.00,-168.00,-14.40,0
+-153.60,-14.40,12.79,0.00,1.00,-163.20,-14.40,0
+-148.80,-14.40,12.83,0.00,1.00,-163.20,-19.20,0
+-144.00,-19.20,12.87,0.00,1.00,-158.40,-19.20,0
+-139.20,-19.20,12.91,0.00,1.00,-153.60,-24.00,0
+-134.40,-19.20,12.95,0.00,1.00,-148.80,-24.00,0
+-129.60,-24.00,12.99,0.00,1.00,-144.00,-24.00,0
+-124.80,-24.00,13.03,0.00,1.00,-139.20,-24.00,0
+-120.00,-24.00,13.07,0.00,1.00,-134.40,-28.80,0
+-110.40,-24.00,13.11,0.00,1.00,-129.60,-28.80,0
+-105.60,-28.80,13.15,0.00,1.00,-120.00,-28.80,0
+-100.80,-28.80,13.19,0.00,1.00,-110.40,-28.80,0
+-96.00,-28.80,13.23,0.00,1.00,-100.80,-28.80,0
+-91.20,-28.80,13.27,0.00,1.00,-91.20,-28.80,0
+-86.40,-28.80,13.31,0.00,1.00,-81.60,-28.80,0
+-81.60,-28.80,13.35,0.00,1.00,-72.00,-28.80,0
+-76.80,-28.80,13.39,0.00,1.00,-62.40,-28.80,0
+-72.00,-24.00,13.43,0.00,1.00,-52.80,-24.00,0
+-62.40,-24.00,13.47,0.00,1.00,-48.00,-24.00,0
+-57.60,-24.00,13.51,0.00,1.00,-43.20,-24.00,0
+-52.80,-24.00,13.55,0.00,1.00,-38.40,-24.00,0
+-48.00,-24.00,13.59,0.00,1.00,-33.60,-19.20,0
+-43.20,-19.20,13.63,0.00,1.00,-28.80,-19.20,0
+-38.40,-19.20,13.67,0.00,1.00,-24.00,-19.20,0
+-33.60,-14.40,13.71,0.00,1.00,-19.20,-14.40,0
+-28.80,-14.40,13.75,0.00,1.00,-19.20,-14.40,0
+-24.00,-14.40,13.79,0.00,1.00,-14.40,-9.60,0
+-19.20,-9.60,13.83,0.00,1.00,-9.60,-9.60,0
+-19.20,-9.60,13.87,0.00,1.00,-9.60,-4.80,0
+-14.40,-4.80,13.91,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,13.95,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,13.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,14.04,0.00,1.00,0.00,0.00,0
+4.80,0.00,14.08,0.00,1.00,0.00,4.80,0
+9.60,4.80,14.12,0.00,1.00,4.80,4.80,0
+14.40,4.80,14.16,0.00,1.00,4.80,9.60,0
+19.20,9.60,14.20,0.00,1.00,9.60,9.60,0
+24.00,9.60,14.24,0.00,1.00,9.60,9.60,0
+28.80,9.60,14.28,0.00,1.00,14.40,14.40,0
+33.60,14.40,14.32,0.00,1.00,14.40,14.40,0
+38.40,14.40,14.36,0.00,1.00,19.20,14.40,0
+43.20,14.40,14.40,0.00,1.00,19.20,19.20,0
+48.00,14.40,14.44,0.00,1.00,24.00,19.20,0
+52.80,19.20,14.48,0.00,1.00,28.80,19.20,0
+57.60,19.20,14.52,0.00,1.00,33.60,19.20,0
+62.40,19.20,14.56,0.00,1.00,38.40,24.00,0
+67.20,19.20,14.60,0.00,1.00,43.20,24.00,0
+72.00,24.00,14.64,0.00,1.00,48.00,24.00,0
+76.80,24.00,14.68,0.00,1.00,57.60,24.00,0
+81.60,24.00,14.72,0.00,1.00,67.20,24.00,0
+86.40,24.00,14.76,0.00,1.00,81.60,24.00,0
+91.20,24.00,14.80,0.00,1.00,91.20,24.00,0
+96.00,24.00,14.84,0.00,1.00,105.60,24.00,0
+100.80,24.00,14.88,0.00,1.00,115.20,24.00,0
+105.60,24.00,14.92,0.00,1.00,124.80,24.00,0
+110.40,19.20,14.96,0.00,1.00,134.40,19.20,0
+115.20,19.20,15.00,0.00,1.00,139.20,19.20,0
+120.00,19.20,15.04,0.00,1.00,144.00,19.20,0
+124.80,19.20,15.08,0.00,1.00,148.80,19.20,0
+129.60,19.20,15.12,0.00,1.00,153.60,19.20,0
+134.40,14.40,15.16,0.00,1.00,158.40,14.40,0
+139.20,14.40,15.20,0.00,1.00,163.20,14.40,0
+144.00,14.40,15.24,0.00,1.00,163.20,14.40,0
+148.80,9.60,15.28,0.00,1.00,168.00,9.60,0
+153.60,9.60,15.32,0.00,1.00,168.00,9.60,0
+158.40,9.60,15.36,0.00,1.00,172.80,4.80,0
+163.20,4.80,15.40,0.00,1.00,172.80,4.80,0
+168.00,4.80,15.44,0.00,1.00,177.60,4.80,0
+172.80,4.80,15.48,0.00,1.00,177.60,0.00,0
+177.60,0.00,15.52,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,15.56,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,15.60,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,15.64,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,15.68,0.00,1.00,-172.80,-9.60,0
+-158.40,-9.60,15.72,0.00,1.00,-172.80,-9.60,0
+-153.60,-9.60,15.76,0.00,1.00,-168.00,-14.40,0
+-148.80,-9.60,15.80,0.00,1.00,-168.00,-14.40,0
+-144.00,-14.40,15.84,0.00,1.00,-163.20,-14.40,0
+-139.20,-14.40,15.88,0.00,1.00,-163.20,-19.20,0
+-134.40,-14.40,15.92,0.00,1.00,-158.40,-19.20,0
+-129.60,-19.20,15.96,0.00,1.00,-153.60,-19.20,0
+-124.80,-19.20,16.00,0.00,1.00,-148.80,-19.20,0
+-120.00,-19.20,16.00,0.00,1.00,-144.00,-19.20,0
+-115.20,-19.20,15.96,0.00,1.00,-139.20,-24.00,0
+-110.40,-19.20,15.92,0.00,1.00,-134.40,-24.00,0
+-105.60,-24.00,15.88,0.00,1.00,-124.80,-24.00,0
+-100.80,-24.00,15.84,0.00,1.00,-115.20,-24.00,0
+-96.00,-24.00,15.80,0.00,1.00,-105.60,-24.00,0
+-91.20,-24.00,15.76,0.00,1.00,-91.20,-24.00,0
+-86.40,-24.00,15.72,0.00,1.00,-81.60,-24.00,0
+-81.60,-24.00,15.68,0.00,1.00,-67.20,-24.00,0
+-76.80,-24.00,15.64,0.00,1.00,-57.60,-24.00,0
+-72.00,-24.00,15.60,0.00,1.00,-48.00,-24.00,0
+-67.20,-19.20,15.56,0.00,1.00,-43.20,-19.20,0
+-62.40,-19.20,15.52,0.00,1.00,-38.40,-19.20,0
+-57.60,-19.20,15.48,0.00,1.00,-33.60,-19.20,0
+-52.80,-19.20,15.44,0.00,1.00,-28.80,-19.20,0
+-48.00,-14.40,15.40,0.00,1.00,-24.00,-14.40,0
+-43.20,-14.40,15.36,0.00,1.00,-19.20,-14.40,0
+-38.40,-14.40,15.32,0.00,1.00,-19.20,-14.40,0
+-33.60,-14.40,15.28,0.00,1.00,-14.40,-9.60,0
+-28.80,-9.60,15.24,0.00,1.00,-14.40,-9.60,0
+-24.00,-9.60,15.20,0.00,1.00,-9.60,-9.60,0
+-19.20,-9.60,15.16,0.00,1.00,-9.60,-4.80,0
+-14.40,-4.80,15.12,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,15.08,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,15.04,0.00,1.00,-0.00,0.00,0
+0.00,0.00,15.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,14.96,0.00,1.00,0.00,4.80,0
+9.60,4.80,14.92,0.00,1.00,4.80,4.80,0
+14.40,4.80,14.88,0.00,1.00,4.80,4.80,0
+19.20,4.80,14.84,0.00,1.00,4.80,9.60,0
+24.00,9.60,14.80,0.00,1.00,9.60,9.60,0
+28.80,9.60,14.76,0.00,1.00,9.60,9.60,0
+33.60,9.60,14.72,0.00,1.00,9.60,9.60,0
+38.40,9.60,14.68,0.00,1.00,14.40,14.40,0
+43.20,14.40,14.64,0.00,1.00,14.40,14.40,0
+48.00,14.40,14.60,0.00,1.00,19.20,14.40,0
+52.80,14.40,14.56,0.00,1.00,24.00,14.40,0
+57.60,14.40,14.52,0.00,1.00,24.00,19.20,0
+62.40,14.40,14.48,0.00,1.00,28.80,19.20,0
+67.20,14.40,14.44,0.00,1.00,38.40,19.20,0
+72.00,19.20,14.40,0.00,1.00,43.20,19.20,0
+76.80,19.20,14.36,0.00,1.00,52.80,19.20,0
+81.60,19.20,14.32,0.00,1.00,62.40,19.20,0
+86.40,19.20,14.28,0.00,1.00,76.80,19.20,0
+91.20,19.20,14.24,0.00,1.00,96.00,19.20,0
+96.00,19.20,14.20,0.00,1.00,110.40,19.20,0
+100.80,19.20,14.16,0.00,1.00,120.00,19.20,0
+105.60,19.20,14.12,0.00,1.00,134.40,19.20,0
+110.40,19.20,14.08,0.00,1.00,139.20,19.20,0
+115.20,14.40,14.04,0.00,1.00,148.80,14.40,0
+120.00,14.40,13.99,0.00,1.00,153.60,14.40,0
+124.80,14.40,13.95,0.00,1.00,158.40,14.40,0
+129.60,14.40,13.91,0.00,1.00,158.40,14.40,0
+134.40,14.40,13.87,0.00,1.00,163.20,14.40,0
+139.20,9.60,13.83,0.00,1.00,163.20,9.60,0
+144.00,9.60,13.79,0.00,1.00,168.00,9.60,0
+148.80,9.60,13.75,0.00,1.00,168.00,9.60,0
+153.60,9.60,13.71,0.00,1.00,172.80,4.80,0
+158.40,4.80,13.67,0.00,1.00,172.80,4.80,0
+163.20,4.80,13.63,0.00,1.00,172.80,4.80,0
+168.00,4.80,13.59,0.00,1.00,177.60,0.00,0
+172.80,0.00,13.55,0.00,1.00,177.60,0.00,0
+177.60,0.00,13.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.47,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,13.43,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,13.39,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,13.35,0.00,1.00,-172.80,-4.80,0
+-158.40,-4.80,13.31,0.00,1.00,-172.80,-9.60,0
+-153.60,-9.60,13.27,0.00,1.00,-172.80,-9.60,0
+-148.80,-9.60,13.23,0.00,1.00,-168.00,-9.60,0
+-144.00,-9.60,13.19,0.00,1.00,-168.00,-14.40,0
+-139.20,-9.60,13.15,0.00,1.00,-163.20,-14.40,0
+-134.40,-14.40,13.11,0.00,1.00,-163.20,-14.40,0
+-129.60,-14.40,13.07,0.00,1.00,-158.40,-14.40,0
+-124.80,-14.40,13.03,0.00,1.00,-158.40,-14.40,0
+-120.00,-14.40,12.99,0.00,1.00,-153.60,-19.20,0
+-115.20,-14.40,12.95,0.00,1.00,-148.80,-19.20,0
+-110.40,-19.20,12.91,0.00,1.00,-139.20,-19.20,0
+-105.60,-19.20,12.87,0.00,1.00,-134.40,-19.20,0
+-100.80,-19.20,12.83,0.00,1.00,-120.00,-19.20,0
+-96.00,-19.20,12.79,0.00,1.00,-110.40,-19.20,0
+-91.20,-19.20,12.75,0.00,1.00,-96.00,-19.20,0
+-86.40,-19.20,12.71,0.00,1.00,-76.80,-19.20,0
+-81.60,-19.20,12.67,0.00,1.00,-62.40,-19.20,0
+-76.80,-19.20,12.63,0.00,1.00,-52.80,-19.20,0
+-72.00,-19.20,12.59,0.00,1.00,-43.20,-19.20,0
+-67.20,-14.40,12.55,0.00,1.00,-38.40,-19.20,0
+-62.40,-14.40,12.51,0.00,1.00,-28.80,-14.40,0
+-57.60,-14.40,12.47,0.00,1.00,-24.00,-14.40,0
+-52.80,-14.40,12.43,0.00,1.00,-24.00,-14.40,0
+-48.00,-14.40,12.39,0.00,1.00,-19.20,-14.40,0
+-43.20,-14.40,12.35,0.00,1.00,-14.40,-9.60,0
+-38.40,-9.60,12.31,0.00,1.00,-14.40,-9.60,0
+-33.60,-9.60,12.27,0.00,1.00,-9.60,-9.60,0
+-28.80,-9.60,12.23,0.00,1.00,-9.60,-9.60,0
+-24.00,-9.60,12.19,0.00,1.00,-9.60,-4.80,0
+-19.20,-4.80,12.15,0.00,1.00,-4.80,-4.80,0
+-14.40,-4.80,12.11,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,12.07,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,12.03,0.00,1.00,-0.00,0.00,0
+0.00,0.00,11.99,0.00,1.00,0.00,0.00,0
+4.80,0.00,11.95,0.00,1.00,0.00,0.00,0
+9.60,0.00,11.91,0.00,1.00,0.00,4.80,0
+14.40,4.80,11.87,0.00,1.00,4.80,4.80,0
+19.20,4.80,11.83,0.00,1.00,4.80,4.80,0
+24.00,4.80,11.79,0.00,1.00,4.80,4.80,0
+28.80,4.80,11.75,0.00,1.00,4.80,9.60,0
+33.60,9.60,11.71,0.00,1.00,9.60,9.60,0
+38.40,9.60,11.67,0.00,1.00,9.60,9.60,0
+43.20,9.60,11.63,0.00,1.00,14.40,9.60,0
+48.00,9.60,11.59,0.00,1.00,14.40,9.60,0
+52.80,9.60,11.55,0.00,1.00,14.40,14.40,0
+57.60,9.60,11.51,0.00,1.00,19.20,14.40,0
+62.40,9.60,11.47,0.00,1.00,24.00,14.40,0
+67.20,14.40,11.43,0.00,1.00,28.80,14.40,0
+72.00,14.40,11.39,0.00,1.00,33.60,14.40,0
+76.80,14.40,11.35,0.00,1.00,43.20,14.40,0
+81.60,14.40,11.31,0.00,1.00,57.60,14.40,0
+86.40,14.40,11.27,0.00,1.00,76.80,14.40,0
+91.20,14.40,11.23,0.00,1.00,96.00,14.40,0
+96.00,14.40,11.19,0.00,1.00,115.20,14.40,0
+100.80,14.40,11.15,0.00,1.00,129.60,14.40,0
+105.60,14.40,11.11,0.00,1.00,139.20,14.40,0
+110.40,14.40,11.07,0.00,1.00,148.80,14.40,0
+115.20,9.60,11.03,0.00,1.00,153.60,14.40,0
+120.00,9.60,10.99,0.00,1.00,158.40,9.60,0
+124.80,9.60,10.95,0.00,1.00,163.20,9.60,0
+129.60,9.60,10.91,0.00,1.00,163.20,9.60,0
+134.40,9.60,10.87,0.00,1.00,168.00,9.60,0
+139.20,9.60,10.83,0.00,1.00,168.00,9.60,0
+144.00,9.60,10.79,0.00,1.00,172.80,9.60,0
+148.80,4.80,10.75,0.00,1.00,172.80,4.80,0
+153.60,4.80,10.71,0.00,1.00,172.80,4.80,0
+158.40,4.80,10.67,0.00,1.00,172.80,4.80,0
+163.20,4.80,10.63,0.00,1.00,177.60,4.80,0
+168.00,4.80,10.59,0.00,1.00,177.60,0.00,0
+172.80,0.00,10.55,0.00,1.00,177.60,0.00,0
+177.60,0.00,10.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.47,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,10.43,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,10.39,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,10.35,0.00,1.00,-177.60,-4.80,0
+-158.40,-4.80,10.31,0.00,1.00,-172.80,-4.80,0
+-153.60,-4.80,10.27,0.00,1.00,-172.80,-9.60,0
+-148.80,-4.80,10.23,0.00,1.00,-172.80,-9.60,0
+-144.00,-9.60,10.19,0.00,1.00,-172.80,-9.60,0
+-139.20,-9.60,10.15,0.00,1.00,-168.00,-9.60,0
+-134.40,-9.60,10.11,0.00,1.00,-168.00,-9.60,0
+-129.60,-9.60,10.07,0.00,1.00,-163.20,-9.60,0
+-124.80,-9.60,10.03,0.00,1.00,-163.20,-14.40,0
+-120.00,-9.60,9.98,0.00,1.00,-158.40,-14.40,0
+-115.20,-9.60,9.94,0.00,1.00,-153.60,-14.40,0
+-110.40,-14.40,9.90,0.00,1.00,-148.80,-14.40,0
+-105.60,-14.40,9.86,0.00,1.00,-139.20,-14.40,0
+-100.80,-14.40,9.82,0.00,1.00,-129.60,-14.40,0
+-96.00,-14.40,9.78,0.00,1.00,-115.20,-14.40,0
+-91.20,-14.40,9.74,0.00,1.00,-96.00,-14.40,0
+-86.40,-14.40,9.70,0.00,1.00,-76.80,-14.40,0
+-81.60,-14.40,9.66,0.00,1.00,-57.60,-14.40,0
+-76.80,-14.40,9.62,0.00,1.00,-43.20,-14.40,0
+-72.00,-14.40,9.58,0.00,1.00,-33.60,-14.40,0
+-67.20,-14.40,9.54,0.00,1.00,-28.80,-14.40,0
+-62.40,-9.60,9.50,0.00,1.00,-24.00,-14.40,0
+-57.60,-9.60,9.46,0.00,1.00,-19.20,-9.60,0
+-52.80,-9.60,9.42,0.00,1.00,-14.40,-9.60,0
+-48.00,-9.60,9.38,0.00,1.00,-14.40,-9.60,0
+-43.20,-9.60,9.34,0.00,1.00,-14.40,-9.60,0
+-38.40,-9.60,9.30,0.00,1.00,-9.60,-9.60,0
+-33.60,-9.60,9.26,0.00,1.00,-9.60,-4.80,0
+-28.80,-4.80,9.22,0.00,1.00,-4.80,-4.80,0
+-24.00,-4.80,9.18,0.00,1.00,-4.80,-4.80,0
+-19.20,-4.80,9.14,0.00,1.00,-4.80,-4.80,0
+-14.40,-4.80,9.10,0.00,1.00,-4.80,-0.00,0
+-9.60,-0.00,9.06,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,9.02,0.00,1.00,-0.00,0.00,0
+0.00,0.00,8.98,0.00,1.00,0.00,0.00,0
+4.80,0.00,8.94,0.00,1.00,0.00,0.00,0
+9.60,0.00,8.90,0.00,1.00,0.00,0.00,0
+14.40,0.00,8.86,0.00,1.00,0.00,4.80,0
+19.20,4.80,8.82,0.00,1.00,4.80,4.80,0
+24.00,4.80,8.78,0.00,1.00,4.80,4.80,0
+28.80,4.80,8.74,0.00,1.00,4.80,4.80,0
+33.60,4.80,8.70,0.00,1.00,4.80,4.80,0
+38.40,4.80,8.66,0.00,1.00,4.80,4.80,0
+43.20,4.80,8.62,0.00,1.00,9.60,4.80,0
+48.00,4.80,8.58,0.00,1.00,9.60,9.60,0
+52.80,4.80,8.54,0.00,1.00,9.60,9.60,0
+57.60,4.80,8.50,0.00,1.00,14.40,9.60,0
+62.40,9.60,8.46,0.00,1.00,14.40,9.60,0
+67.20,9.60,8.42,0.00,1.00,19.20,9.60,0
+72.00,9.60,8.38,0.00,1.00,24.00,9.60,0
+76.80,9.60,8.34,0.00,1.00,33.60,9.60,0
+81.60,9.60,8.30,0.00,1.00,43.20,9.60,0
+86.40,9.60,8.26,0.00,1.00,67.20,9.60,0
+91.20,9.60,8.22,0.00,1.00,96.00,9.60,0
+96.00,9.60,8.18,0.00,1.00,124.80,9.60,0
+100.80,9.60,8.14,0.00,1.00,144.00,9.60,0
+105.60,9.60,8.10,0.00,1.00,153.60,9.60,0
+110.40,9.60,8.06,0.00,1.00,158.40,9.60,0
+115.20,9.60,8.02,0.00,1.00,163.20,9.60,0
+120.00,9.60,7.98,0.00,1.00,168.00,9.60,0
+124.80,4.80,7.94,0.00,1.00,168.00,9.60,0
+129.60,4.80,7.90,0.00,1.00,168.00,4.80,0
+134.40,4.80,7.86,0.00,1.00,172.80,4.80,0
+139.20,4.80,7.82,0.00,1.00,172.80,4.80,0
+144.00,4.80,7.78,0.00,1.00,172.80,4.80,0
+148.80,4.80,7.74,0.00,1.00,172.80,4.80,0
+153.60,4.80,7.70,0.00,1.00,177.60,4.80,0
+158.40,4.80,7.66,0.00,1.00,177.60,4.80,0
+163.20,4.80,7.62,0.00,1.00,177.60,0.00,0
+168.00,0.00,7.58,0.00,1.00,177.60,0.00,0
+172.80,0.00,7.54,0.00,1.00,177.60,0.00,0
+177.60,0.00,7.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,7.46,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,7.42,0.00,1.00,-177.60,-0.00,0
+-168.00,-0.00,7.38,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,7.34,0.00,1.00,-177.60,-4.80,0
+-158.40,-4.80,7.30,0.00,1.00,-177.60,-4.80,0
+-153.60,-4.80,7.26,0.00,1.00,-177.60,-4.80,0
+-148.80,-4.80,7.22,0.00,1.00,-172.80,-4.80,0
+-144.00,-4.80,7.18,0.00,1.00,-172.80,-4.80,0
+-139.20,-4.80,7.14,0.00,1.00,-172.80,-4.80,0
+-134.40,-4.80,7.10,0.00,1.00,-172.80,-9.60,0
+-129.60,-4.80,7.06,0.00,1.00,-168.00,-9.60,0
+-124.80,-4.80,7.02,0.00,1.00,-168.00,-9.60,0
+-120.00,-9.60,6.98,0.00,1.00,-168.00,-9.60,0
+-115.20,-9.60,6.94,0.00,1.00,-163.20,-9.60,0
+-110.40,-9.60,6.90,0.00,1.00,-158.40,-9.60,0
+-105.60,-9.60,6.86,0.00,1.00,-153.60,-9.60,0
+-100.80,-9.60,6.82,0.00,1.00,-144.00,-9.60,0
+-96.00,-9.60,6.78,0.00,1.00,-124.80,-9.60,0
+-91.20,-9.60,6.74,0.00,1.00,-96.00,-9.60,0
+-86.40,-9.60,6.70,0.00,1.00,-67.20,-9.60,0
+-81.60,-9.60,6.66,0.00,1.00,-43.20,-9.60,0
+-76.80,-9.60,6.62,0.00,1.00,-33.60,-9.60,0
+-72.00,-9.60,6.58,0.00,1.00,-24.00,-9.60,0
+-67.20,-9.60,6.54,0.00,1.00,-19.20,-9.60,0
+-62.40,-9.60,6.50,0.00,1.00,-14.40,-9.60,0
+-57.60,-4.80,6.46,0.00,1.00,-14.40,-9.60,0
+-52.80,-4.80,6.42,0.00,1.00,-9.60,-4.80,0
+-48.00,-4.80,6.38,0.00,1.00,-9.60,-4.80,0
+-43.20,-4.80,6.34,0.00,1.00,-9.60,-4.80,0
+-38.40,-4.80,6.30,0.00,1.00,-4.80,-4.80,0
+-33.60,-4.80,6.26,0.00,1.00,-4.80,-4.80,0
+-28.80,-4.80,6.22,0.00,1.00,-4.80,-4.80,0
+-24.00,-4.80,6.18,0.00,1.00,-4.80,-4.80,0
+-19.20,-4.80,6.14,0.00,1.00,-4.80,-0.00,0
+-14.40,-0.00,6.10,0.00,1.00,-0.00,-0.00,0
+-9.60,-0.00,6.06,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,6.02,0.00,1.00,-0.00,0.00,0
+0.00,0.00,5.97,0.00,1.00,0.00,0.00,0
+4.80,0.00,5.93,0.00,1.00,0.00,0.00,0
+9.60,0.00,5.89,0.00,1.00,0.00,0.00,0
+14.40,0.00,5.85,0.00,1.00,0.00,0.00,0
+19.20,0.00,5.81,0.00,1.00,0.00,0.00,0
+24.00,0.00,5.77,0.00,1.00,0.00,0.00,0
+28.80,0.00,5.73,0.00,1.00,0.00,4.80,0
+33.60,0.00,5.69,0.00,1.00,0.00,4.80,0
+38.40,0.00,5.65,0.00,1.00,4.80,4.80,0
+43.20,4.80,5.61,0.00,1.00,4.80,4.80,0
+48.00,4.80,5.57,0.00,1.00,4.80,4.80,0
+52.80,4.80,5.53,0.00,1.00,4.80,4.80,0
+57.60,4.80,5.49,0.00,1.00,4.80,4.80,0
+62.40,4.80,5.45,0.00,1.00,4.80,4.80,0
+67.20,4.80,5.41,0.00,1.00,9.60,4.80,0
+72.00,4.80,5.37,0.00,1.00,9.60,4.80,0
+76.80,4.80,5.33,0.00,1.00,14.40,4.80,0
+81.60,4.80,5.29,0.00,1.00,24.00,4.80,0
+86.40,4.80,5.25,0.00,1.00,43.20,4.80,0
+91.20,4.80,5.21,0.00,1.00,110.40,4.80,0
+96.00,4.80,5.17,0.00,1.00,148.80,4.80,0
+100.80,4.80,5.13,0.00,1.00,163.20,4.80,0
+105.60,4.80,5.09,0.00,1.00,168.00,4.80,0
+110.40,4.80,5.05,0.00,1.00,172.80,4.80,0
+115.20,4.80,5.01,0.00,1.00,172.80,4.80,0
+120.00,4.80,4.97,0.00,1.00,172.80,4.80,0
+124.80,4.80,4.93,0.00,1.00,172.80,4.80,0
+129.60,4.80,4.89,0.00,1.00,177.60,4.80,0
+134.40,4.80,4.85,0.00,1.00,177.60,4.80,0
+139.20,0.00,4.81,0.00,1.00,177.60,4.80,0
+144.00,0.00,4.77,0.00,1.00,177.60,4.80,0
+148.80,0.00,4.73,0.00,1.00,177.60,0.00,0
+153.60,0.00,4.69,0.00,1.00,177.60,0.00,0
+158.40,0.00,4.65,0.00,1.00,177.60,0.00,0
+163.20,0.00,4.61,0.00,1.00,177.60,0.00,0
+168.00,0.00,4.57,0.00,1.00,177.60,0.00,0
+172.80,0.00,4.53,0.00,1.00,177.60,0.00,0
+177.60,0.00,4.49,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,4.45,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,4.41,0.00,1.00,-177.60,-0.00,0
+-168.00,-0.00,4.37,0.00,1.00,-177.60,-0.00,0
+-163.20,-0.00,4.33,0.00,1.00,-177.60,-0.00,0
+-158.40,-0.00,4.29,0.00,1.00,-177.60,-0.00,0
+-153.60,-0.00,4.25,0.00,1.00,-177.60,-4.80,0
+-148.80,-0.00,4.21,0.00,1.00,-177.60,-4.80,0
+-144.00,-0.00,4.17,0.00,1.00,-177.60,-4.80,0
+-139.20,-0.00,4.13,0.00,1.00,-177.60,-4.80,0
+-134.40,-4.80,4.09,0.00,1.00,-177.60,-4.80,0
+-129.60,-4.80,4.05,0.00,1.00,-177.60,-4.80,0
+-124.80,-4.80,4.01,0.00,1.00,-172.80,-4.80,0
+-120.00,-4.80,3.97,0.00,1.00,-172.80,-4.80,0
+-115.20,-4.80,3.93,0.00,1.00,-172.80,-4.80,0
+-110.40,-4.80,3.89,0.00,1.00,-172.80,-4.80,0
+-105.60,-4.80,3.85,0.00,1.00,-168.00,-4.80,0
+-100.80,-4.80,3.81,0.00,1.00,-163.20,-4.80,0
+-96.00,-4.80,3.77,0.00,1.00,-148.80,-4.80,0
+-91.20,-4.80,3.73,0.00,1.00,-110.40,-4.80,0
+-86.40,-4.80,3.69,0.00,1.00,-43.20,-4.80,0
+-81.60,-4.80,3.65,0.00,1.00,-24.00,-4.80,0
+-76.80,-4.80,3.61,0.00,1.00,-14.40,-4.80,0
+-72.00,-4.80,3.57,0.00,1.00,-9.60,-4.80,0
+-67.20,-4.80,3.53,0.00,1.00,-9.60,-4.80,0
+-62.40,-4.80,3.49,0.00,1.00,-4.80,-4.80,0
+-57.60,-4.80,3.45,0.00,1.00,-4.80,-4.80,0
+-52.80,-4.80,3.41,0.00,1.00,-4.80,-4.80,0
+-48.00,-4.80,3.37,0.00,1.00,-4.80,-4.80,0
+-43.20,-4.80,3.33,0.00,1.00,-4.80,-4.80,0
+-38.40,-0.00,3.29,0.00,1.00,-4.80,-4.80,0
+-33.60,-0.00,3.25,0.00,1.00,-0.00,-0.00,0
+-28.80,-0.00,3.21,0.00,1.00,-0.00,-0.00,0
+-24.00,-0.00,3.17,0.00,1.00,-0.00,-0.00,0
+-19.20,-0.00,3.13,0.00,1.00,-0.00,-0.00,0
+-14.40,-0.00,3.09,0.00,1.00,-0.00,-0.00,0
+-9.60,-0.00,3.05,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,3.01,0.00,1.00,-0.00,0.00,0
+0.00,0.00,2.97,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,2.93,0.00,1.00,-0.00,0.00,0
+9.60,-0.00,2.89,0.00,1.00,-0.00,0.00,0
+14.40,-0.00,2.85,0.00,1.00,-0.00,0.00,0
+19.20,-0.00,2.81,0.00,1.00,-0.00,0.00,0
+24.00,-0.00,2.77,0.00,1.00,-0.00,0.00,0
+28.80,-0.00,2.73,0.00,1.00,-0.00,0.00,0
+33.60,-0.00,2.69,0.00,1.00,-0.00,0.00,0
+38.40,-0.00,2.65,0.00,1.00,-0.00,0.00,0
+43.20,-0.00,2.61,0.00,1.00,-0.00,0.00,0
+48.00,-0.00,2.57,0.00,1.00,-0.00,0.00,0
+52.80,-0.00,2.53,0.00,1.00,-0.00,0.00,0
+57.60,-0.00,2.49,0.00,1.00,-0.00,0.00,0
+62.40,-0.00,2.45,0.00,1.00,-0.00,0.00,0
+67.20,-0.00,2.41,0.00,1.00,-4.80,0.00,0
+72.00,-0.00,2.37,0.00,1.00,-4.80,0.00,0
+76.80,-0.00,2.33,0.00,1.00,-4.80,0.00,0
+81.60,-0.00,2.29,0.00,1.00,-9.60,0.00,0
+86.40,-0.00,2.25,0.00,1.00,-19.20,0.00,0
+91.20,-0.00,2.21,0.00,1.00,-134.40,0.00,0
+96.00,-0.00,2.17,0.00,1.00,-168.00,0.00,0
+100.80,-0.00,2.13,0.00,1.00,-172.80,0.00,0
+105.60,-0.00,2.09,0.00,1.00,-177.60,0.00,0
+110.40,-0.00,2.05,0.00,1.00,-177.60,0.00,0
+115.20,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+120.00,-0.00,1.96,0.00,1.00,-177.60,0.00,0
+124.80,-0.00,1.92,0.00,1.00,-177.60,0.00,0
+129.60,-0.00,1.88,0.00,1.00,-177.60,0.00,0
+134.40,-0.00,1.84,0.00,1.00,-177.60,0.00,0
+139.20,-0.00,1.80,0.00,1.00,-177.60,0.00,0
+144.00,-0.00,1.76,0.00,1.00,-177.60,0.00,0
+148.80,-0.00,1.72,0.00,1.00,-177.60,0.00,0
+153.60,-0.00,1.68,0.00,1.00,-177.60,0.00,0
+158.40,-0.00,1.64,0.00,1.00,-177.60,0.00,0
+163.20,-0.00,1.60,0.00,1.00,-177.60,0.00,0
+168.00,-0.00,1.56,0.00,1.00,-177.60,0.00,0
+172.80,-0.00,1.52,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,1.48,0.00,1.00,-177.60,0.00,0
+-177.60,0.00,1.44,0.00,1.00,177.60,0.00,0
+-172.80,0.00,1.40,0.00,1.00,177.60,0.00,0
+-168.00,0.00,1.36,0.00,1.00,177.60,0.00,0
+-163.20,0.00,1.32,0.00,1.00,177.60,0.00,0
+-158.40,0.00,1.28,0.00,1.00,177.60,0.00,0
+-153.60,0.00,1.24,0.00,1.00,177.60,0.00,0
+-148.80,0.00,1.20,0.00,1.00,177.60,0.00,0
+-144.00,0.00,1.16,0.00,1.00,177.60,0.00,0
+-139.20,0.00,1.12,0.00,1.00,177.60,0.00,0
+-134.40,0.00,1.08,0.00,1.00,177.60,0.00,0
+-129.60,0.00,1.04,0.00,1.00,177.60,0.00,0
+-124.80,0.00,1.00,0.00,1.00,177.60,0.00,0
+-120.00,0.00,0.96,0.00,1.00,177.60,0.00,0
+-115.20,0.00,0.92,0.00,1.00,177.60,0.00,0
+-110.40,0.00,0.88,0.00,1.00,177.60,0.00,0
+-105.60,0.00,0.84,0.00,1.00,177.60,0.00,0
+-100.80,0.00,0.80,0.00,1.00,172.80,0.00,0
+-96.00,0.00,0.76,0.00,1.00,168.00,0.00,0
+-91.20,0.00,0.72,0.00,1.00,134.40,0.00,0
+-86.40,0.00,0.68,0.00,1.00,19.20,0.00,0
+-81.60,0.00,0.64,0.00,1.00,9.60,0.00,0
+-76.80,0.00,0.60,0.00,1.00,4.80,0.00,0
+-72.00,0.00,0.56,0.00,1.00,4.80,0.00,0
+-67.20,0.00,0.52,0.00,1.00,4.80,0.00,0
+-62.40,0.00,0.48,0.00,1.00,0.00,0.00,0
+-57.60,0.00,0.44,0.00,1.00,0.00,0.00,0
+-52.80,0.00,0.40,0.00,1.00,0.00,0.00,0
+-48.00,0.00,0.36,0.00,1.00,0.00,0.00,0
+-43.20,0.00,0.32,0.00,1.00,0.00,0.00,0
+-38.40,0.00,0.28,0.00,1.00,0.00,0.00,0
+-33.60,0.00,0.24,0.00,1.00,0.00,0.00,0
+-28.80,0.00,0.20,0.00,1.00,0.00,0.00,0
+-24.00,0.00,0.16,0.00,1.00,0.00,0.00,0
+-19.20,0.00,0.12,0.00,1.00,0.00,0.00,0
+-14.40,0.00,0.08,0.00,1.00,0.00,0.00,0
+-9.60,0.00,0.04,0.00,1.00,0.00,0.00,0
+-4.80,0.00,0.00,0.00,1.00,0.00,0.00,0
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA1TC32c.met b/scripts/testv/stvOMASA_4ISM_1MASA1TC32c.met
new file mode 100644
index 0000000000000000000000000000000000000000..f2ce23bd2054140614b7d2ad88769d5d2db77990
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA1TC32c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6349efe3448d28979b80744bcdc29d57f1c025704939b42d7b913d7fc3f23ccc
+size 102300
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA1TC32c.wav b/scripts/testv/stvOMASA_4ISM_1MASA1TC32c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..ea48beb1ef078e626ce04ef912d84424a791978b
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA1TC32c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:05c8b46d2b819cc5705bfe6c931c3147944f27cc1b0d02174d4cacce1744d9c6
+size 960080
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA1TC32c_ISM1.csv b/scripts/testv/stvOMASA_4ISM_1MASA1TC32c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA1TC32c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA1TC32c_ISM2.csv b/scripts/testv/stvOMASA_4ISM_1MASA1TC32c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA1TC32c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA1TC32c_ISM3.csv b/scripts/testv/stvOMASA_4ISM_1MASA1TC32c_ISM3.csv
new file mode 100644
index 0000000000000000000000000000000000000000..14eee9b693b536fa2fd22d2813d7f588b8930b06
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA1TC32c_ISM3.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0
+-177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0
+4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0
+-168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0
+14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0
+-163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0
+19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0
+-153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0
+28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0
+-148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0
+38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0
+-139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0
+48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0
+-124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0
+57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0
+-115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0
+72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0
+-100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0
+86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0
+-86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0
+100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0
+-76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0
+110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0
+-62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0
+124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0
+-52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0
+134.40,33.60,0.28,0.00,1.00,177.60,0.00,0
+-38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0
+144.00,28.80,0.30,0.00,1.00,177.60,0.00,0
+-33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0
+153.60,24.00,0.32,0.00,1.00,177.60,0.00,0
+-24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0
+158.40,19.20,0.34,0.00,1.00,177.60,0.00,0
+-14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0
+168.00,9.60,0.36,0.00,1.00,177.60,0.00,0
+-9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0
+172.80,4.80,0.38,0.00,1.00,177.60,0.00,0
+-0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0
+-177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0
+4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0
+14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0
+19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0
+-158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0
+28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0
+-148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0
+33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0
+-139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0
+43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0
+-129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0
+57.60,38.40,15.47,0.00,1.00,177.60,0.00,0
+-120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0
+67.20,43.20,15.44,0.00,1.00,177.60,0.00,0
+-105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0
+81.60,43.20,15.42,0.00,1.00,177.60,0.00,0
+-91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0
+96.00,43.20,15.40,0.00,1.00,0.00,0.00,0
+-76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0
+110.40,43.20,15.38,0.00,1.00,0.00,0.00,0
+-67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0
+120.00,38.40,15.36,0.00,1.00,0.00,0.00,0
+-52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0
+129.60,38.40,15.34,0.00,1.00,0.00,0.00,0
+-43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0
+144.00,33.60,15.32,0.00,1.00,0.00,0.00,0
+-33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0
+148.80,24.00,15.30,0.00,1.00,0.00,0.00,0
+-24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0
+158.40,19.20,15.27,0.00,1.00,0.00,0.00,0
+-19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0
+168.00,14.40,15.25,0.00,1.00,0.00,0.00,0
+-9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0
+172.80,4.80,15.23,0.00,1.00,0.00,0.00,0
+-4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0
+0.00,0.00,15.21,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0
+9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0
+14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0
+-163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0
+24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0
+-153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0
+28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0
+-144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0
+38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0
+-134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0
+48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0
+-124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0
+62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0
+-115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0
+72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0
+-100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0
+86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0
+-86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0
+96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0
+-76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0
+110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0
+-62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0
+120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0
+-52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0
+134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0
+-43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0
+144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0
+-33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0
+148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0
+-24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0
+158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0
+-19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0
+168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0
+-9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0
+172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0
+4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0
+14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0
+19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0
+-153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0
+28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0
+-148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0
+38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0
+-139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0
+48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0
+-124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0
+57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0
+-115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0
+72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0
+-105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0
+81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0
+-91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0
+96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0
+-76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0
+105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0
+-67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0
+120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0
+-57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0
+129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0
+-43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0
+139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0
+-33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0
+148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0
+-28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0
+158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0
+-19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0
+163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0
+-9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0
+172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0
+0.00,0.00,1.60,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0
+9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0
+14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0
+-158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0
+24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0
+-153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0
+33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0
+-144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0
+43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0
+-134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0
+52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0
+-124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0
+62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0
+-110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0
+72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0
+-100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0
+86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0
+-86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0
+96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0
+-76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0
+110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0
+-67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0
+120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0
+-52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0
+129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0
+-43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0
+139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0
+-33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0
+148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0
+-24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0
+158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0
+-19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0
+168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0
+172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0
+14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0
+-163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0
+24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0
+-153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0
+28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0
+-144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0
+38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0
+-134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0
+48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0
+-124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0
+62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0
+-115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0
+72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0
+-100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0
+81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0
+-91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0
+96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0
+-81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0
+105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0
+-67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0
+115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0
+-57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0
+129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0
+-48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0
+139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0
+-38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0
+148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0
+-28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0
+153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0
+-19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0
+163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0
+-9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0
+172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0
+0.00,0.00,13.61,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0
+9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0
+-168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0
+24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0
+-148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0
+33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0
+-139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0
+43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0
+-129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0
+52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0
+-120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0
+62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0
+-110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0
+76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0
+-100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0
+86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0
+-86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0
+96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0
+-76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0
+105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0
+-67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0
+120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0
+-57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0
+129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0
+-48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0
+139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0
+-38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0
+148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0
+158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0
+-19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0
+163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0
+172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0
+4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0
+14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0
+-163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0
+24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0
+-153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0
+33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0
+-144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0
+43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0
+-134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0
+52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0
+-124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0
+62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0
+-115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0
+72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0
+-100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0
+81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0
+-91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0
+96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0
+-81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0
+105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0
+-67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0
+115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0
+-57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0
+124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0
+-48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0
+134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0
+-38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0
+144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0
+-28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0
+153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0
+-19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0
+163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0
+-14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0
+172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0
+-4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0
+0.00,0.00,3.20,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0
+9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0
+19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0
+24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0
+-148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0
+33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0
+-139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0
+43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0
+-129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0
+52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0
+-120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0
+67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0
+-110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0
+76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0
+-100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0
+86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0
+-86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0
+96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0
+-76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0
+105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0
+-67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0
+115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0
+-57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0
+129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0
+-48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0
+139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0
+-38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0
+148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0
+153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0
+-19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0
+163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0
+172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0
+4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0
+14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0
+24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0
+-153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0
+33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0
+-144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0
+43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0
+-134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0
+52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0
+-124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0
+62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0
+-110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0
+72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0
+-100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0
+81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0
+-91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0
+96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0
+-81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0
+105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0
+-72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0
+115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0
+-57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0
+124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0
+-48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0
+134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0
+-38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0
+144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0
+-28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0
+153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0
+-24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0
+163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0
+-14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0
+172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,12.01,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0
+9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0
+-158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0
+28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0
+-148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0
+38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0
+-139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0
+48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0
+-129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0
+57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0
+-120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0
+67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0
+-110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0
+76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0
+-100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0
+86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0
+-86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0
+96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0
+-76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0
+105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0
+-67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0
+115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0
+-57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0
+124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0
+-48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0
+134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0
+-38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0
+144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0
+-28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0
+153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0
+-19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0
+163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0
+172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0
+4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0
+14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0
+24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0
+-148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0
+33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0
+-139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0
+43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0
+-129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0
+52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0
+-120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0
+62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0
+-110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0
+72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0
+-100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0
+81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0
+-91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0
+96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0
+-81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0
+105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0
+-72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0
+115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0
+-62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0
+124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0
+-52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0
+134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0
+-43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0
+144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0
+-33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0
+153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0
+-24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0
+163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0
+172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0
+0.00,0.00,4.81,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0
+9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0
+19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0
+28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0
+-148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0
+38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0
+-139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0
+48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0
+-129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0
+57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0
+-120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0
+67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0
+-110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0
+76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0
+-100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0
+86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0
+-86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0
+96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0
+-76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0
+105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0
+-67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0
+115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0
+-57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0
+124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0
+-48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0
+134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0
+-38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0
+144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0
+-28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0
+153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0
+-19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0
+163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0
+-9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0
+172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0
+4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0
+14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0
+24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0
+-148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0
+33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0
+-139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0
+43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0
+-129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0
+52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0
+-120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0
+62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0
+-110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0
+72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0
+-100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0
+81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0
+-91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0
+96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0
+-81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0
+105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0
+-72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0
+115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0
+-62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0
+124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0
+-52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0
+134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0
+-43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0
+144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0
+-33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0
+153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0
+-24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0
+163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0
+172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+0.00,0.00,10.40,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0
+9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0
+19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0
+28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0
+-148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0
+38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0
+-139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0
+48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0
+-129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0
+57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0
+-120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0
+67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0
+-110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0
+76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0
+-100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0
+86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0
+-86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0
+96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0
+-76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0
+105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0
+-67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0
+115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0
+-57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0
+124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0
+-48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0
+134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0
+-38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0
+144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0
+-28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0
+153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0
+163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0
+-9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0
+172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0
+4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0
+14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0
+24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0
+33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0
+-139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0
+43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0
+-129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0
+52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0
+-120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0
+62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0
+-110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0
+72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0
+-100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0
+81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0
+-91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0
+96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0
+-81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0
+105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0
+-72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0
+115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0
+-62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0
+124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0
+-52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0
+134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0
+-43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0
+144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0
+-33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0
+153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0
+-24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0
+163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0
+172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,6.41,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0
+9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0
+19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0
+-158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0
+28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0
+-148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0
+38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0
+-139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0
+48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0
+-129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0
+57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0
+-120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0
+67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0
+-110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0
+76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0
+-100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0
+86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0
+-86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0
+96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0
+-76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0
+105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0
+-67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0
+115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0
+-57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0
+124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0
+-48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0
+134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0
+-38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0
+144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0
+-28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0
+153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0
+163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0
+172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0
+4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0
+14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0
+-158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0
+24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0
+33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0
+-139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0
+43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0
+-129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0
+52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0
+-120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0
+62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0
+-110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0
+72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0
+-100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0
+81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0
+-91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0
+96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0
+-81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0
+105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0
+-72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0
+115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0
+-62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0
+124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0
+-52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0
+134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0
+-43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0
+144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0
+-33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0
+153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0
+-24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0
+163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0
+-14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0
+172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.80,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0
+9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0
+19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0
+-158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0
+28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0
+-148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0
+38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0
+-139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0
+48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0
+-129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0
+57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0
+-120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0
+67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0
+-110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0
+76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0
+-100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0
+86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0
+-86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0
+96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0
+-76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0
+105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0
+-67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0
+115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0
+-57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0
+124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0
+-48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0
+134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0
+-38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0
+144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0
+-28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0
+153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0
+-19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0
+163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0
+172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0
+-0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0
+4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0
+-168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0
+14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0
+-158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0
+24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0
+-148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0
+33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0
+-139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0
+43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0
+-129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0
+52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0
+-120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0
+62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0
+-110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0
+72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0
+-100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0
+81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0
+-91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0
+96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0
+-81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0
+105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0
+-72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0
+115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0
+-62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0
+124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0
+-52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0
+134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0
+-43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0
+144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0
+-33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0
+153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0
+-24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0
+163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0
+-14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0
+172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.01,0.00,1.00,0.00,0.00,0
+-177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0
+-168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0
+19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0
+-158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0
+28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0
+-148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0
+38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0
+-139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0
+48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0
+-129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0
+57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0
+-120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0
+67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0
+-110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0
+76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0
+-100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0
+86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0
+-86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0
+96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0
+-76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0
+105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0
+-67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0
+115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0
+-57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0
+124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0
+-48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0
+134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0
+-38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0
+144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0
+-28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0
+153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0
+-19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0
+163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0
+172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0
+14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0
+-158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0
+24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0
+-148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0
+33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0
+-139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0
+43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0
+-129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0
+52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0
+-120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0
+62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0
+-110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0
+72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0
+-100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0
+81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0
+-91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0
+96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0
+-81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0
+105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0
+-72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0
+115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0
+-62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0
+124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0
+-52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0
+134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0
+-43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0
+144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0
+-33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0
+153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0
+-24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0
+163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0
+-4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0
+0.00,0.00,7.20,0.00,1.00,0.00,0.00,0
+-177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0
+-168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0
+19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0
+38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0
+-139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0
+48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0
+-129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0
+57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0
+-120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0
+67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0
+-110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0
+76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0
+-100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0
+86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0
+-86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0
+96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0
+-76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0
+105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0
+-67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0
+115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0
+-57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0
+124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0
+-48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0
+134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0
+-38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0
+144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0
+-19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0
+163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0
+14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0
+-148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0
+33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0
+-139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0
+43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0
+-129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0
+52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0
+-120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0
+62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0
+72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0
+-100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0
+81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0
+-91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0
+96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0
+-81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0
+105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0
+-72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0
+115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0
+-62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0
+124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0
+-52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0
+134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0
+-43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0
+144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0
+-33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0
+153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0
+0.00,0.00,9.61,0.00,1.00,0.00,0.00,0
+-177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0
+48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0
+-129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0
+57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0
+-120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0
+67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0
+-110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0
+76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0
+-100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0
+86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0
+-86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0
+96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0
+-76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0
+105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0
+-67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0
+115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0
+-57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0
+124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0
+-48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0
+134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0
+163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0
+-9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0
+-148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0
+33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0
+-139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0
+43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0
+-129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0
+52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0
+-120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0
+62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0
+72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0
+-100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0
+81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0
+-91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0
+96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0
+-81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0
+105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0
+-72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0
+115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0
+-62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0
+124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0
+-52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0
+134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0
+-43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0
+144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0
+-33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0
+153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0
+-14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0
+172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0
+0.00,0.00,5.60,0.00,1.00,0.00,0.00,0
+-177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0
+-158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0
+28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0
+-148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0
+48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0
+-129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0
+57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0
+-120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0
+67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0
+-110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0
+76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0
+-100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0
+86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0
+-86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0
+96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0
+-76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0
+105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0
+-67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0
+115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0
+-57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0
+124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0
+-48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0
+134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0
+-28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0
+153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0
+-158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0
+-148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0
+33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0
+-139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0
+43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0
+-129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0
+52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0
+-120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0
+62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0
+-110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0
+72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0
+-100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0
+81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0
+-91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0
+96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0
+-81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0
+105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0
+-72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0
+115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0
+-62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0
+124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0
+-52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0
+134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0
+-43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0
+144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0
+-33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0
+153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0
+0.00,0.00,11.21,0.00,1.00,0.00,0.00,0
+-177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0
+28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0
+-148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0
+38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0
+-139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0
+48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0
+57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0
+-120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0
+67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0
+-110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0
+76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0
+-100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0
+86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0
+-86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0
+96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0
+-76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0
+105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0
+-67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0
+115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0
+-57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0
+124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0
+-48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0
+134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0
+-38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0
+144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0
+-28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0
+153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0
+-148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0
+-139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0
+43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0
+-129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0
+52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0
+-120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0
+62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0
+-110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0
+72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0
+-100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0
+81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0
+-91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0
+96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0
+-81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0
+105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0
+-72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0
+115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0
+-62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0
+124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0
+-52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0
+134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0
+-43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0
+-33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0
+153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0
+-24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0
+163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,3.99,0.00,1.00,0.00,0.00,0
+-177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0
+19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0
+-148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0
+33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0
+43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0
+52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0
+-120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0
+62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0
+-110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0
+76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0
+-100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0
+86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0
+-86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0
+96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0
+-76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0
+105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0
+-67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0
+120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0
+-57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0
+-48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0
+139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0
+148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0
+158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0
+163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0
+43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0
+-134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0
+-124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0
+62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0
+-110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0
+72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0
+-100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0
+81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0
+-91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0
+96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0
+-81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0
+105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0
+-72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0
+115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0
+-57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0
+124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0
+-48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0
+134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0
+-38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0
+-28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0
+-24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,12.82,0.00,1.00,0.00,0.00,0
+-177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0
+-148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0
+33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0
+-129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0
+-120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0
+62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0
+-110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0
+76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0
+-100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0
+86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0
+-86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0
+96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0
+-76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0
+110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0
+-67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0
+120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0
+-57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0
+-48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0
+-163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0
+33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0
+43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0
+-134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0
+62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0
+-115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0
+72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0
+-100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0
+81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0
+-91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0
+96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0
+-81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0
+105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0
+-67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0
+115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0
+-57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0
+124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0
+-48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0
+134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0
+-38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0
+144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0
+-14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,2.39,0.00,1.00,0.00,0.00,0
+-177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0
+33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0
+-144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0
+-134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0
+62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0
+-110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0
+72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0
+-100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0
+86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0
+-86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0
+96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0
+-76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0
+110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0
+-67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0
+120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0
+-52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0
+129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0
+-19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0
+28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0
+-144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0
+38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0
+-134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0
+48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0
+57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0
+-115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0
+72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0
+-105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0
+81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0
+-91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0
+96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0
+-81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0
+105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0
+-67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0
+120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0
+-57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0
+129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0
+-48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0
+139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0
+-38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0
+158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0
+0.00,0.00,14.42,0.00,1.00,0.00,0.00,0
+-177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0
+-163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0
+24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0
+28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0
+-144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0
+38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0
+-134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0
+48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0
+62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0
+-115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0
+72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0
+86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0
+-86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0
+96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0
+-76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0
+110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0
+-62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0
+120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0
+-52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0
+134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0
+158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0
+-148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0
+38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0
+-139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0
+48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0
+-129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0
+-115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0
+67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0
+-105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0
+81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0
+-91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0
+96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0
+105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0
+-67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0
+120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0
+-52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0
+129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0
+139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0
+163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0
+0.00,0.00,0.79,0.00,1.00,0.00,0.00,0
+-177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0
+4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0
+-163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0
+19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0
+-153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0
+28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0
+-148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0
+38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0
+-139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0
+48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0
+-124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0
+57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0
+-115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0
+72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0
+86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0
+-86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0
+100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0
+-76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0
+110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0
+-62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0
+124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0
+-48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0
+134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0
+-38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0
+-28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0
+-24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0
+163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0
+168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0
+9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0
+-158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0
+-148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0
+33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0
+-139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0
+43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0
+-129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0
+-120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0
+67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0
+-105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0
+81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0
+-91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0
+96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0
+110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0
+-67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0
+120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0
+-52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0
+134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0
+144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0
+153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0
+-24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0
+-19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0
+168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA1TC32c_ISM4.csv b/scripts/testv/stvOMASA_4ISM_1MASA1TC32c_ISM4.csv
new file mode 100644
index 0000000000000000000000000000000000000000..8a14c3413ddd2dd47415bf6de3e19631f65f8f6c
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA1TC32c_ISM4.csv
@@ -0,0 +1,1500 @@
+-0.00,0.00,0.00,0.00,1.00,0.00,4.80,0
+-0.00,4.80,0.06,0.00,1.00,4.80,9.60,0
+-0.00,9.60,0.13,0.00,1.00,9.60,14.40,0
+-0.00,14.40,0.19,0.00,1.00,14.40,19.20,0
+-0.00,19.20,0.26,0.00,1.00,19.20,24.00,0
+-0.00,24.00,0.32,0.00,1.00,24.00,28.80,0
+-0.00,28.80,0.39,0.00,1.00,28.80,33.60,0
+-0.00,33.60,0.45,0.00,1.00,33.60,38.40,0
+-0.00,38.40,0.51,0.00,1.00,38.40,43.20,0
+-0.00,43.20,0.58,0.00,1.00,43.20,48.00,0
+-0.00,48.00,0.64,0.00,1.00,48.00,52.80,0
+-0.00,52.80,0.71,0.00,1.00,52.80,57.60,0
+-0.00,57.60,0.77,0.00,1.00,57.60,62.40,0
+-0.00,62.40,0.84,0.00,1.00,62.40,67.20,0
+-0.00,67.20,0.90,0.00,1.00,67.20,72.00,0
+-0.00,72.00,0.96,0.00,1.00,72.00,76.80,0
+-0.00,76.80,1.03,0.00,1.00,76.80,81.60,0
+-0.00,81.60,1.09,0.00,1.00,81.60,86.40,0
+-0.00,86.40,1.16,0.00,1.00,86.40,86.40,0
+-177.60,89.20,1.22,0.00,1.00,91.20,81.60,0
+-177.60,86.40,1.29,0.00,1.00,96.00,76.80,0
+-177.60,81.60,1.35,0.00,1.00,100.80,72.00,0
+-177.60,76.80,1.41,0.00,1.00,105.60,67.20,0
+-177.60,72.00,1.48,0.00,1.00,110.40,62.40,0
+-177.60,67.20,1.54,0.00,1.00,115.20,57.60,0
+177.60,62.40,1.61,0.00,1.00,120.00,52.80,0
+177.60,57.60,1.67,0.00,1.00,124.80,48.00,0
+177.60,52.80,1.73,0.00,1.00,129.60,43.20,0
+177.60,48.00,1.80,0.00,1.00,134.40,38.40,0
+177.60,43.20,1.86,0.00,1.00,139.20,33.60,0
+177.60,38.40,1.93,0.00,1.00,144.00,28.80,0
+177.60,33.60,1.99,0.00,1.00,148.80,24.00,0
+177.60,28.80,2.06,0.00,1.00,153.60,19.20,0
+177.60,24.00,2.12,0.00,1.00,158.40,14.40,0
+177.60,19.20,2.18,0.00,1.00,163.20,9.60,0
+177.60,14.40,2.25,0.00,1.00,168.00,4.80,0
+177.60,9.60,2.31,0.00,1.00,172.80,0.00,0
+177.60,4.80,2.38,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.44,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,2.51,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,2.57,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,2.63,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,2.70,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,2.76,0.00,1.00,-153.60,-28.80,0
+-177.60,-28.80,2.83,0.00,1.00,-148.80,-33.60,0
+-177.60,-33.60,2.89,0.00,1.00,-144.00,-38.40,0
+-177.60,-38.40,2.96,0.00,1.00,-139.20,-43.20,0
+-177.60,-48.00,3.02,0.00,1.00,-134.40,-48.00,0
+-177.60,-48.00,3.08,0.00,1.00,-129.60,-52.80,0
+-177.60,-52.80,3.15,0.00,1.00,-124.80,-57.60,0
+-177.60,-57.60,3.21,0.00,1.00,-120.00,-62.40,0
+177.60,-62.40,3.28,0.00,1.00,-115.20,-67.20,0
+177.60,-67.20,3.34,0.00,1.00,-110.40,-72.00,0
+177.60,-76.80,3.41,0.00,1.00,-105.60,-76.80,0
+177.60,-76.80,3.47,0.00,1.00,-100.80,-81.60,0
+177.60,-86.40,3.53,0.00,1.00,-96.00,-86.40,0
+177.60,-89.20,3.60,0.00,1.00,-91.20,-86.40,0
+0.00,-86.40,3.66,0.00,1.00,-86.40,-81.60,0
+0.00,-81.60,3.73,0.00,1.00,-81.60,-76.80,0
+0.00,-76.80,3.79,0.00,1.00,-76.80,-72.00,0
+0.00,-72.00,3.86,0.00,1.00,-72.00,-67.20,0
+0.00,-67.20,3.92,0.00,1.00,-67.20,-62.40,0
+0.00,-62.40,3.98,0.00,1.00,-62.40,-57.60,0
+0.00,-57.60,4.05,0.00,1.00,-57.60,-52.80,0
+0.00,-52.80,4.11,0.00,1.00,-52.80,-48.00,0
+0.00,-48.00,4.18,0.00,1.00,-48.00,-43.20,0
+0.00,-43.20,4.24,0.00,1.00,-43.20,-38.40,0
+0.00,-38.40,4.31,0.00,1.00,-38.40,-33.60,0
+0.00,-33.60,4.37,0.00,1.00,-33.60,-28.80,0
+0.00,-28.80,4.43,0.00,1.00,-28.80,-24.00,0
+0.00,-24.00,4.50,0.00,1.00,-24.00,-19.20,0
+0.00,-19.20,4.56,0.00,1.00,-19.20,-14.40,0
+0.00,-14.40,4.63,0.00,1.00,-14.40,-9.60,0
+0.00,-9.60,4.69,0.00,1.00,-9.60,-4.80,0
+0.00,-4.80,4.76,0.00,1.00,-4.80,0.00,0
+0.00,0.00,4.82,0.00,1.00,0.00,4.80,0
+0.00,4.80,4.88,0.00,1.00,4.80,9.60,0
+0.00,9.60,4.95,0.00,1.00,9.60,14.40,0
+0.00,14.40,5.01,0.00,1.00,14.40,19.20,0
+0.00,19.20,5.08,0.00,1.00,19.20,24.00,0
+0.00,24.00,5.14,0.00,1.00,24.00,28.80,0
+4.80,28.80,5.20,0.00,1.00,28.80,33.60,0
+4.80,33.60,5.27,0.00,1.00,33.60,38.40,0
+4.80,38.40,5.33,0.00,1.00,38.40,43.20,0
+4.80,43.20,5.40,0.00,1.00,43.20,48.00,0
+4.80,48.00,5.46,0.00,1.00,48.00,52.80,0
+4.80,52.80,5.53,0.00,1.00,52.80,57.60,0
+9.60,57.60,5.59,0.00,1.00,57.60,62.40,0
+9.60,62.40,5.65,0.00,1.00,62.40,67.20,0
+9.60,67.20,5.72,0.00,1.00,67.20,72.00,0
+14.40,72.00,5.78,0.00,1.00,72.00,76.80,0
+19.20,76.80,5.85,0.00,1.00,76.80,81.60,0
+28.80,81.60,5.91,0.00,1.00,81.60,86.40,0
+52.80,86.40,5.98,0.00,1.00,86.40,86.40,0
+105.60,86.40,6.04,0.00,1.00,91.20,81.60,0
+139.20,81.60,6.10,0.00,1.00,96.00,76.80,0
+158.40,76.80,6.17,0.00,1.00,100.80,72.00,0
+163.20,72.00,6.23,0.00,1.00,105.60,67.20,0
+168.00,67.20,6.30,0.00,1.00,110.40,62.40,0
+168.00,62.40,6.36,0.00,1.00,115.20,57.60,0
+172.80,57.60,6.43,0.00,1.00,120.00,52.80,0
+172.80,52.80,6.49,0.00,1.00,124.80,48.00,0
+172.80,48.00,6.55,0.00,1.00,129.60,43.20,0
+172.80,43.20,6.62,0.00,1.00,134.40,38.40,0
+177.60,38.40,6.68,0.00,1.00,139.20,33.60,0
+177.60,33.60,6.75,0.00,1.00,144.00,28.80,0
+177.60,28.80,6.81,0.00,1.00,148.80,24.00,0
+177.60,24.00,6.88,0.00,1.00,153.60,19.20,0
+177.60,19.20,6.94,0.00,1.00,158.40,14.40,0
+177.60,14.40,7.00,0.00,1.00,163.20,9.60,0
+177.60,9.60,7.07,0.00,1.00,168.00,4.80,0
+177.60,4.80,7.13,0.00,1.00,172.80,0.00,0
+177.60,0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,7.26,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,7.33,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,7.39,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,7.45,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,7.52,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,7.58,0.00,1.00,-153.60,-28.80,0
+-177.60,-28.80,7.65,0.00,1.00,-148.80,-33.60,0
+-177.60,-33.60,7.71,0.00,1.00,-144.00,-38.40,0
+-177.60,-38.40,7.78,0.00,1.00,-139.20,-43.20,0
+-172.80,-43.20,7.84,0.00,1.00,-134.40,-48.00,0
+-172.80,-48.00,7.90,0.00,1.00,-129.60,-52.80,0
+-172.80,-52.80,7.97,0.00,1.00,-124.80,-57.60,0
+-172.80,-57.60,8.03,0.00,1.00,-120.00,-62.40,0
+-168.00,-62.40,8.10,0.00,1.00,-115.20,-67.20,0
+-168.00,-67.20,8.16,0.00,1.00,-110.40,-72.00,0
+-163.20,-72.00,8.22,0.00,1.00,-105.60,-76.80,0
+-158.40,-76.80,8.29,0.00,1.00,-100.80,-81.60,0
+-139.20,-81.60,8.35,0.00,1.00,-96.00,-86.40,0
+-105.60,-86.40,8.42,0.00,1.00,-91.20,-86.40,0
+-52.80,-86.40,8.48,0.00,1.00,-86.40,-81.60,0
+-28.80,-81.60,8.55,0.00,1.00,-81.60,-76.80,0
+-19.20,-76.80,8.61,0.00,1.00,-76.80,-72.00,0
+-14.40,-72.00,8.67,0.00,1.00,-72.00,-67.20,0
+-9.60,-67.20,8.74,0.00,1.00,-67.20,-62.40,0
+-9.60,-62.40,8.80,0.00,1.00,-62.40,-57.60,0
+-9.60,-57.60,8.87,0.00,1.00,-57.60,-52.80,0
+-4.80,-52.80,8.93,0.00,1.00,-52.80,-48.00,0
+-4.80,-48.00,9.00,0.00,1.00,-48.00,-43.20,0
+-4.80,-43.20,9.06,0.00,1.00,-43.20,-38.40,0
+-4.80,-38.40,9.12,0.00,1.00,-38.40,-33.60,0
+-4.80,-33.60,9.19,0.00,1.00,-33.60,-28.80,0
+-4.80,-28.80,9.25,0.00,1.00,-28.80,-24.00,0
+-0.00,-24.00,9.32,0.00,1.00,-24.00,-19.20,0
+-0.00,-19.20,9.38,0.00,1.00,-19.20,-14.40,0
+-0.00,-14.40,9.45,0.00,1.00,-14.40,-9.60,0
+-0.00,-9.60,9.51,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,9.57,0.00,1.00,-4.80,0.00,0
+0.00,0.00,9.64,0.00,1.00,0.00,4.80,0
+0.00,4.80,9.70,0.00,1.00,4.80,9.60,0
+0.00,9.60,9.77,0.00,1.00,9.60,14.40,0
+4.80,14.40,9.83,0.00,1.00,14.40,19.20,0
+4.80,19.20,9.90,0.00,1.00,19.20,24.00,0
+4.80,24.00,9.96,0.00,1.00,24.00,28.80,0
+4.80,28.80,10.02,0.00,1.00,28.80,33.60,0
+4.80,33.60,10.09,0.00,1.00,33.60,38.40,0
+9.60,38.40,10.15,0.00,1.00,38.40,43.20,0
+9.60,43.20,10.22,0.00,1.00,43.20,48.00,0
+9.60,48.00,10.28,0.00,1.00,48.00,52.80,0
+14.40,52.80,10.35,0.00,1.00,52.80,57.60,0
+14.40,57.60,10.41,0.00,1.00,57.60,62.40,0
+19.20,62.40,10.47,0.00,1.00,62.40,67.20,0
+24.00,67.20,10.54,0.00,1.00,67.20,72.00,0
+28.80,72.00,10.60,0.00,1.00,72.00,72.00,0
+33.60,72.00,10.67,0.00,1.00,76.80,76.80,0
+48.00,76.80,10.73,0.00,1.00,81.60,81.60,0
+67.20,81.60,10.80,0.00,1.00,86.40,81.60,0
+96.00,81.60,10.86,0.00,1.00,91.20,81.60,0
+120.00,76.80,10.92,0.00,1.00,96.00,76.80,0
+139.20,76.80,10.99,0.00,1.00,100.80,72.00,0
+148.80,72.00,11.05,0.00,1.00,105.60,67.20,0
+153.60,67.20,11.12,0.00,1.00,110.40,62.40,0
+158.40,62.40,11.18,0.00,1.00,115.20,57.60,0
+163.20,57.60,11.24,0.00,1.00,120.00,52.80,0
+168.00,52.80,11.31,0.00,1.00,124.80,48.00,0
+168.00,48.00,11.37,0.00,1.00,129.60,43.20,0
+168.00,43.20,11.44,0.00,1.00,134.40,38.40,0
+172.80,38.40,11.50,0.00,1.00,139.20,33.60,0
+172.80,33.60,11.57,0.00,1.00,144.00,28.80,0
+172.80,28.80,11.63,0.00,1.00,148.80,24.00,0
+177.60,24.00,11.69,0.00,1.00,153.60,19.20,0
+177.60,19.20,11.76,0.00,1.00,158.40,14.40,0
+177.60,14.40,11.82,0.00,1.00,163.20,9.60,0
+177.60,9.60,11.89,0.00,1.00,168.00,4.80,0
+177.60,4.80,11.95,0.00,1.00,172.80,0.00,0
+177.60,0.00,12.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,12.08,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,12.14,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,12.21,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,12.27,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,12.34,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,12.40,0.00,1.00,-153.60,-28.80,0
+-172.80,-28.80,12.47,0.00,1.00,-148.80,-33.60,0
+-172.80,-33.60,12.53,0.00,1.00,-144.00,-38.40,0
+-172.80,-38.40,12.59,0.00,1.00,-139.20,-43.20,0
+-168.00,-43.20,12.66,0.00,1.00,-134.40,-48.00,0
+-168.00,-48.00,12.72,0.00,1.00,-129.60,-52.80,0
+-168.00,-52.80,12.79,0.00,1.00,-124.80,-57.60,0
+-163.20,-57.60,12.85,0.00,1.00,-120.00,-62.40,0
+-158.40,-62.40,12.92,0.00,1.00,-115.20,-67.20,0
+-153.60,-67.20,12.98,0.00,1.00,-110.40,-72.00,0
+-148.80,-72.00,13.04,0.00,1.00,-105.60,-76.80,0
+-139.20,-76.80,13.11,0.00,1.00,-100.80,-81.60,0
+-120.00,-76.80,13.17,0.00,1.00,-96.00,-81.60,0
+-96.00,-81.60,13.24,0.00,1.00,-91.20,-81.60,0
+-67.20,-81.60,13.30,0.00,1.00,-86.40,-76.80,0
+-48.00,-76.80,13.37,0.00,1.00,-81.60,-72.00,0
+-33.60,-72.00,13.43,0.00,1.00,-76.80,-72.00,0
+-28.80,-72.00,13.49,0.00,1.00,-72.00,-67.20,0
+-24.00,-67.20,13.56,0.00,1.00,-67.20,-62.40,0
+-19.20,-62.40,13.62,0.00,1.00,-62.40,-57.60,0
+-14.40,-57.60,13.69,0.00,1.00,-57.60,-52.80,0
+-14.40,-52.80,13.75,0.00,1.00,-52.80,-48.00,0
+-9.60,-48.00,13.82,0.00,1.00,-48.00,-43.20,0
+-9.60,-43.20,13.88,0.00,1.00,-43.20,-38.40,0
+-9.60,-38.40,13.94,0.00,1.00,-38.40,-33.60,0
+-4.80,-33.60,14.01,0.00,1.00,-33.60,-28.80,0
+-4.80,-28.80,14.07,0.00,1.00,-28.80,-24.00,0
+-4.80,-24.00,14.14,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,14.20,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,14.27,0.00,1.00,-14.40,-9.60,0
+-0.00,-9.60,14.33,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,14.39,0.00,1.00,-4.80,0.00,0
+0.00,0.00,14.46,0.00,1.00,0.00,4.80,0
+0.00,4.80,14.52,0.00,1.00,4.80,9.60,0
+4.80,9.60,14.59,0.00,1.00,9.60,14.40,0
+4.80,14.40,14.65,0.00,1.00,14.40,19.20,0
+4.80,19.20,14.71,0.00,1.00,19.20,24.00,0
+4.80,24.00,14.78,0.00,1.00,24.00,28.80,0
+9.60,28.80,14.84,0.00,1.00,28.80,33.60,0
+9.60,33.60,14.91,0.00,1.00,33.60,38.40,0
+9.60,38.40,14.97,0.00,1.00,38.40,43.20,0
+14.40,43.20,15.04,0.00,1.00,43.20,48.00,0
+14.40,48.00,15.10,0.00,1.00,48.00,52.80,0
+19.20,52.80,15.16,0.00,1.00,52.80,57.60,0
+19.20,52.80,15.23,0.00,1.00,57.60,57.60,0
+24.00,57.60,15.29,0.00,1.00,62.40,62.40,0
+28.80,62.40,15.36,0.00,1.00,67.20,67.20,0
+38.40,67.20,15.42,0.00,1.00,72.00,72.00,0
+48.00,72.00,15.49,0.00,1.00,76.80,72.00,0
+57.60,72.00,15.55,0.00,1.00,81.60,76.80,0
+76.80,76.80,15.61,0.00,1.00,86.40,76.80,0
+96.00,76.80,15.68,0.00,1.00,91.20,76.80,0
+115.20,76.80,15.74,0.00,1.00,96.00,72.00,0
+129.60,72.00,15.81,0.00,1.00,100.80,72.00,0
+139.20,67.20,15.87,0.00,1.00,105.60,67.20,0
+144.00,67.20,15.94,0.00,1.00,110.40,62.40,0
+153.60,62.40,16.00,0.00,1.00,115.20,57.60,0
+158.40,57.60,16.00,0.00,1.00,120.00,52.80,0
+158.40,52.80,15.94,0.00,1.00,124.80,48.00,0
+163.20,48.00,15.87,0.00,1.00,129.60,43.20,0
+168.00,43.20,15.81,0.00,1.00,134.40,38.40,0
+168.00,38.40,15.74,0.00,1.00,139.20,33.60,0
+168.00,33.60,15.68,0.00,1.00,144.00,28.80,0
+172.80,28.80,15.61,0.00,1.00,148.80,24.00,0
+172.80,24.00,15.55,0.00,1.00,153.60,19.20,0
+172.80,19.20,15.49,0.00,1.00,158.40,14.40,0
+177.60,14.40,15.42,0.00,1.00,163.20,9.60,0
+177.60,9.60,15.36,0.00,1.00,168.00,4.80,0
+177.60,4.80,15.29,0.00,1.00,172.80,0.00,0
+177.60,0.00,15.23,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,15.16,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,15.10,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,15.04,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,14.97,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,14.91,0.00,1.00,-158.40,-24.00,0
+-172.80,-24.00,14.84,0.00,1.00,-153.60,-28.80,0
+-172.80,-28.80,14.78,0.00,1.00,-148.80,-33.60,0
+-168.00,-33.60,14.71,0.00,1.00,-144.00,-38.40,0
+-168.00,-38.40,14.65,0.00,1.00,-139.20,-43.20,0
+-168.00,-43.20,14.59,0.00,1.00,-134.40,-48.00,0
+-163.20,-48.00,14.52,0.00,1.00,-129.60,-52.80,0
+-158.40,-52.80,14.46,0.00,1.00,-124.80,-57.60,0
+-158.40,-57.60,14.39,0.00,1.00,-120.00,-62.40,0
+-153.60,-62.40,14.33,0.00,1.00,-115.20,-67.20,0
+-144.00,-67.20,14.27,0.00,1.00,-110.40,-72.00,0
+-139.20,-67.20,14.20,0.00,1.00,-105.60,-72.00,0
+-129.60,-72.00,14.14,0.00,1.00,-100.80,-76.80,0
+-115.20,-76.80,14.07,0.00,1.00,-96.00,-76.80,0
+-96.00,-76.80,14.01,0.00,1.00,-91.20,-76.80,0
+-76.80,-76.80,13.94,0.00,1.00,-86.40,-72.00,0
+-57.60,-72.00,13.88,0.00,1.00,-81.60,-72.00,0
+-48.00,-72.00,13.82,0.00,1.00,-76.80,-67.20,0
+-38.40,-67.20,13.75,0.00,1.00,-72.00,-62.40,0
+-28.80,-62.40,13.69,0.00,1.00,-67.20,-57.60,0
+-24.00,-57.60,13.62,0.00,1.00,-62.40,-57.60,0
+-19.20,-52.80,13.56,0.00,1.00,-57.60,-52.80,0
+-19.20,-52.80,13.49,0.00,1.00,-52.80,-48.00,0
+-14.40,-48.00,13.43,0.00,1.00,-48.00,-43.20,0
+-14.40,-43.20,13.37,0.00,1.00,-43.20,-38.40,0
+-9.60,-38.40,13.30,0.00,1.00,-38.40,-33.60,0
+-9.60,-33.60,13.24,0.00,1.00,-33.60,-28.80,0
+-9.60,-28.80,13.17,0.00,1.00,-28.80,-24.00,0
+-4.80,-24.00,13.11,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,13.04,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,12.98,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,12.92,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,12.85,0.00,1.00,-4.80,0.00,0
+0.00,0.00,12.79,0.00,1.00,0.00,4.80,0
+0.00,4.80,12.72,0.00,1.00,4.80,9.60,0
+4.80,9.60,12.66,0.00,1.00,9.60,14.40,0
+4.80,14.40,12.59,0.00,1.00,14.40,19.20,0
+4.80,19.20,12.53,0.00,1.00,19.20,24.00,0
+9.60,24.00,12.47,0.00,1.00,24.00,28.80,0
+9.60,28.80,12.40,0.00,1.00,28.80,33.60,0
+14.40,33.60,12.34,0.00,1.00,33.60,38.40,0
+14.40,33.60,12.27,0.00,1.00,38.40,38.40,0
+19.20,38.40,12.21,0.00,1.00,43.20,43.20,0
+19.20,43.20,12.14,0.00,1.00,48.00,48.00,0
+24.00,48.00,12.08,0.00,1.00,52.80,52.80,0
+28.80,52.80,12.02,0.00,1.00,57.60,57.60,0
+33.60,57.60,11.95,0.00,1.00,62.40,62.40,0
+38.40,62.40,11.89,0.00,1.00,67.20,62.40,0
+43.20,62.40,11.82,0.00,1.00,72.00,67.20,0
+52.80,67.20,11.76,0.00,1.00,76.80,72.00,0
+67.20,67.20,11.69,0.00,1.00,81.60,72.00,0
+76.80,72.00,11.63,0.00,1.00,86.40,72.00,0
+96.00,72.00,11.57,0.00,1.00,91.20,72.00,0
+105.60,72.00,11.50,0.00,1.00,96.00,67.20,0
+120.00,67.20,11.44,0.00,1.00,100.80,67.20,0
+129.60,67.20,11.37,0.00,1.00,105.60,62.40,0
+139.20,62.40,11.31,0.00,1.00,110.40,57.60,0
+144.00,57.60,11.24,0.00,1.00,115.20,57.60,0
+148.80,52.80,11.18,0.00,1.00,120.00,52.80,0
+153.60,52.80,11.12,0.00,1.00,124.80,48.00,0
+158.40,48.00,11.05,0.00,1.00,129.60,43.20,0
+163.20,43.20,10.99,0.00,1.00,134.40,38.40,0
+163.20,38.40,10.92,0.00,1.00,139.20,33.60,0
+168.00,33.60,10.86,0.00,1.00,144.00,28.80,0
+168.00,28.80,10.80,0.00,1.00,148.80,24.00,0
+172.80,24.00,10.73,0.00,1.00,153.60,19.20,0
+172.80,19.20,10.67,0.00,1.00,158.40,14.40,0
+172.80,14.40,10.60,0.00,1.00,163.20,9.60,0
+177.60,9.60,10.54,0.00,1.00,168.00,4.80,0
+177.60,4.80,10.47,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.35,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,10.28,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,10.22,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,10.15,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,10.09,0.00,1.00,-158.40,-24.00,0
+-172.80,-24.00,10.02,0.00,1.00,-153.60,-28.80,0
+-168.00,-28.80,9.96,0.00,1.00,-148.80,-33.60,0
+-168.00,-33.60,9.90,0.00,1.00,-144.00,-38.40,0
+-163.20,-38.40,9.83,0.00,1.00,-139.20,-43.20,0
+-163.20,-43.20,9.77,0.00,1.00,-134.40,-48.00,0
+-158.40,-48.00,9.70,0.00,1.00,-129.60,-52.80,0
+-153.60,-52.80,9.64,0.00,1.00,-124.80,-57.60,0
+-148.80,-52.80,9.57,0.00,1.00,-120.00,-57.60,0
+-144.00,-57.60,9.51,0.00,1.00,-115.20,-62.40,0
+-139.20,-62.40,9.45,0.00,1.00,-110.40,-67.20,0
+-129.60,-67.20,9.38,0.00,1.00,-105.60,-67.20,0
+-120.00,-67.20,9.32,0.00,1.00,-100.80,-72.00,0
+-105.60,-72.00,9.25,0.00,1.00,-96.00,-72.00,0
+-96.00,-72.00,9.19,0.00,1.00,-91.20,-72.00,0
+-76.80,-72.00,9.12,0.00,1.00,-86.40,-72.00,0
+-67.20,-67.20,9.06,0.00,1.00,-81.60,-67.20,0
+-52.80,-67.20,9.00,0.00,1.00,-76.80,-62.40,0
+-43.20,-62.40,8.93,0.00,1.00,-72.00,-62.40,0
+-38.40,-62.40,8.87,0.00,1.00,-67.20,-57.60,0
+-33.60,-57.60,8.80,0.00,1.00,-62.40,-52.80,0
+-28.80,-52.80,8.74,0.00,1.00,-57.60,-48.00,0
+-24.00,-48.00,8.67,0.00,1.00,-52.80,-43.20,0
+-19.20,-43.20,8.61,0.00,1.00,-48.00,-38.40,0
+-19.20,-38.40,8.55,0.00,1.00,-43.20,-38.40,0
+-14.40,-33.60,8.48,0.00,1.00,-38.40,-33.60,0
+-14.40,-33.60,8.42,0.00,1.00,-33.60,-28.80,0
+-9.60,-28.80,8.35,0.00,1.00,-28.80,-24.00,0
+-9.60,-24.00,8.29,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,8.22,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,8.16,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,8.10,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,8.03,0.00,1.00,-4.80,0.00,0
+0.00,0.00,7.97,0.00,1.00,0.00,4.80,0
+0.00,4.80,7.90,0.00,1.00,4.80,9.60,0
+4.80,9.60,7.84,0.00,1.00,9.60,14.40,0
+4.80,14.40,7.78,0.00,1.00,14.40,19.20,0
+9.60,19.20,7.71,0.00,1.00,19.20,24.00,0
+9.60,24.00,7.65,0.00,1.00,24.00,24.00,0
+14.40,24.00,7.58,0.00,1.00,28.80,28.80,0
+14.40,28.80,7.52,0.00,1.00,33.60,33.60,0
+19.20,33.60,7.45,0.00,1.00,33.60,38.40,0
+19.20,38.40,7.39,0.00,1.00,38.40,43.20,0
+24.00,43.20,7.33,0.00,1.00,43.20,48.00,0
+28.80,48.00,7.26,0.00,1.00,48.00,52.80,0
+33.60,52.80,7.20,0.00,1.00,57.60,52.80,0
+38.40,52.80,7.13,0.00,1.00,62.40,57.60,0
+43.20,57.60,7.07,0.00,1.00,67.20,62.40,0
+52.80,62.40,7.00,0.00,1.00,72.00,62.40,0
+62.40,62.40,6.94,0.00,1.00,76.80,67.20,0
+72.00,62.40,6.88,0.00,1.00,81.60,67.20,0
+81.60,67.20,6.81,0.00,1.00,86.40,67.20,0
+91.20,67.20,6.75,0.00,1.00,91.20,67.20,0
+105.60,67.20,6.68,0.00,1.00,96.00,67.20,0
+115.20,62.40,6.62,0.00,1.00,100.80,62.40,0
+124.80,62.40,6.55,0.00,1.00,105.60,57.60,0
+134.40,57.60,6.49,0.00,1.00,110.40,57.60,0
+139.20,57.60,6.43,0.00,1.00,115.20,52.80,0
+144.00,52.80,6.36,0.00,1.00,120.00,48.00,0
+148.80,48.00,6.30,0.00,1.00,129.60,43.20,0
+153.60,43.20,6.23,0.00,1.00,134.40,43.20,0
+158.40,38.40,6.17,0.00,1.00,139.20,38.40,0
+158.40,38.40,6.10,0.00,1.00,144.00,33.60,0
+163.20,33.60,6.04,0.00,1.00,148.80,28.80,0
+168.00,28.80,5.98,0.00,1.00,148.80,24.00,0
+168.00,24.00,5.91,0.00,1.00,153.60,19.20,0
+172.80,19.20,5.85,0.00,1.00,158.40,14.40,0
+172.80,14.40,5.78,0.00,1.00,163.20,9.60,0
+172.80,9.60,5.72,0.00,1.00,168.00,4.80,0
+177.60,4.80,5.65,0.00,1.00,172.80,0.00,0
+177.60,0.00,5.59,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.53,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,5.46,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,5.40,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,5.33,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,5.27,0.00,1.00,-158.40,-24.00,0
+-168.00,-24.00,5.20,0.00,1.00,-153.60,-28.80,0
+-168.00,-28.80,5.14,0.00,1.00,-148.80,-33.60,0
+-163.20,-33.60,5.08,0.00,1.00,-148.80,-38.40,0
+-158.40,-38.40,5.01,0.00,1.00,-144.00,-43.20,0
+-158.40,-38.40,4.95,0.00,1.00,-139.20,-43.20,0
+-153.60,-43.20,4.88,0.00,1.00,-134.40,-48.00,0
+-148.80,-48.00,4.82,0.00,1.00,-129.60,-52.80,0
+-144.00,-52.80,4.76,0.00,1.00,-120.00,-57.60,0
+-139.20,-57.60,4.69,0.00,1.00,-115.20,-57.60,0
+-134.40,-57.60,4.63,0.00,1.00,-110.40,-62.40,0
+-124.80,-62.40,4.56,0.00,1.00,-105.60,-67.20,0
+-115.20,-62.40,4.50,0.00,1.00,-100.80,-67.20,0
+-105.60,-67.20,4.43,0.00,1.00,-96.00,-67.20,0
+-91.20,-67.20,4.37,0.00,1.00,-91.20,-67.20,0
+-81.60,-67.20,4.31,0.00,1.00,-86.40,-67.20,0
+-72.00,-62.40,4.24,0.00,1.00,-81.60,-62.40,0
+-62.40,-62.40,4.18,0.00,1.00,-76.80,-62.40,0
+-52.80,-62.40,4.11,0.00,1.00,-72.00,-57.60,0
+-43.20,-57.60,4.05,0.00,1.00,-67.20,-52.80,0
+-38.40,-52.80,3.98,0.00,1.00,-62.40,-52.80,0
+-33.60,-52.80,3.92,0.00,1.00,-57.60,-48.00,0
+-28.80,-48.00,3.86,0.00,1.00,-48.00,-43.20,0
+-24.00,-43.20,3.79,0.00,1.00,-43.20,-38.40,0
+-19.20,-38.40,3.73,0.00,1.00,-38.40,-33.60,0
+-19.20,-33.60,3.66,0.00,1.00,-33.60,-28.80,0
+-14.40,-28.80,3.60,0.00,1.00,-33.60,-24.00,0
+-14.40,-24.00,3.53,0.00,1.00,-28.80,-24.00,0
+-9.60,-24.00,3.47,0.00,1.00,-24.00,-19.20,0
+-9.60,-19.20,3.41,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,3.34,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,3.28,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,3.21,0.00,1.00,-4.80,0.00,0
+0.00,0.00,3.15,0.00,1.00,0.00,4.80,0
+0.00,4.80,3.08,0.00,1.00,4.80,9.60,0
+4.80,9.60,3.02,0.00,1.00,9.60,14.40,0
+4.80,14.40,2.96,0.00,1.00,14.40,19.20,0
+9.60,14.40,2.89,0.00,1.00,19.20,19.20,0
+14.40,19.20,2.83,0.00,1.00,19.20,24.00,0
+14.40,24.00,2.76,0.00,1.00,24.00,28.80,0
+19.20,28.80,2.70,0.00,1.00,28.80,33.60,0
+19.20,33.60,2.63,0.00,1.00,33.60,38.40,0
+24.00,38.40,2.57,0.00,1.00,38.40,43.20,0
+28.80,38.40,2.51,0.00,1.00,43.20,43.20,0
+33.60,43.20,2.44,0.00,1.00,48.00,48.00,0
+38.40,48.00,2.38,0.00,1.00,52.80,52.80,0
+43.20,52.80,2.31,0.00,1.00,57.60,52.80,0
+48.00,52.80,2.25,0.00,1.00,62.40,57.60,0
+57.60,57.60,2.18,0.00,1.00,72.00,57.60,0
+62.40,57.60,2.12,0.00,1.00,76.80,62.40,0
+72.00,62.40,2.06,0.00,1.00,81.60,62.40,0
+81.60,62.40,1.99,0.00,1.00,86.40,62.40,0
+91.20,62.40,1.93,0.00,1.00,91.20,62.40,0
+100.80,62.40,1.86,0.00,1.00,96.00,62.40,0
+110.40,57.60,1.80,0.00,1.00,100.80,57.60,0
+120.00,57.60,1.73,0.00,1.00,105.60,57.60,0
+129.60,57.60,1.67,0.00,1.00,115.20,52.80,0
+134.40,52.80,1.61,0.00,1.00,120.00,48.00,0
+139.20,48.00,1.54,0.00,1.00,124.80,48.00,0
+144.00,48.00,1.48,0.00,1.00,129.60,43.20,0
+148.80,43.20,1.41,0.00,1.00,134.40,38.40,0
+153.60,38.40,1.35,0.00,1.00,139.20,33.60,0
+158.40,33.60,1.29,0.00,1.00,144.00,33.60,0
+158.40,28.80,1.22,0.00,1.00,148.80,28.80,0
+163.20,28.80,1.16,0.00,1.00,153.60,24.00,0
+168.00,24.00,1.09,0.00,1.00,158.40,19.20,0
+168.00,19.20,1.03,0.00,1.00,163.20,14.40,0
+172.80,14.40,0.96,0.00,1.00,163.20,9.60,0
+172.80,9.60,0.90,0.00,1.00,168.00,4.80,0
+177.60,4.80,0.84,0.00,1.00,172.80,0.00,0
+177.60,0.00,0.77,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,0.71,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,0.64,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,0.58,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,0.51,0.00,1.00,-163.20,-19.20,0
+-168.00,-19.20,0.45,0.00,1.00,-163.20,-24.00,0
+-168.00,-24.00,0.39,0.00,1.00,-158.40,-28.80,0
+-163.20,-28.80,0.32,0.00,1.00,-153.60,-33.60,0
+-158.40,-28.80,0.26,0.00,1.00,-148.80,-33.60,0
+-158.40,-33.60,0.19,0.00,1.00,-144.00,-38.40,0
+-153.60,-38.40,0.13,0.00,1.00,-139.20,-43.20,0
+-148.80,-43.20,0.06,0.00,1.00,-134.40,-48.00,0
+-144.00,-48.00,0.00,0.00,1.00,-129.60,-48.00,0
+-139.20,-48.00,0.00,0.00,1.00,-124.80,-52.80,0
+-134.40,-52.80,0.16,0.00,1.00,-120.00,-57.60,0
+-129.60,-57.60,0.32,0.00,1.00,-115.20,-57.60,0
+-120.00,-57.60,0.48,0.00,1.00,-105.60,-62.40,0
+-110.40,-57.60,0.65,0.00,1.00,-100.80,-62.40,0
+-100.80,-62.40,0.81,0.00,1.00,-96.00,-62.40,0
+-91.20,-62.40,0.97,0.00,1.00,-91.20,-62.40,0
+-81.60,-62.40,1.13,0.00,1.00,-86.40,-62.40,0
+-72.00,-62.40,1.29,0.00,1.00,-81.60,-57.60,0
+-62.40,-57.60,1.45,0.00,1.00,-76.80,-57.60,0
+-57.60,-57.60,1.62,0.00,1.00,-72.00,-52.80,0
+-48.00,-52.80,1.78,0.00,1.00,-62.40,-52.80,0
+-43.20,-52.80,1.94,0.00,1.00,-57.60,-48.00,0
+-38.40,-48.00,2.10,0.00,1.00,-52.80,-43.20,0
+-33.60,-43.20,2.26,0.00,1.00,-48.00,-43.20,0
+-28.80,-38.40,2.42,0.00,1.00,-43.20,-38.40,0
+-24.00,-38.40,2.59,0.00,1.00,-38.40,-33.60,0
+-19.20,-33.60,2.75,0.00,1.00,-33.60,-28.80,0
+-19.20,-28.80,2.91,0.00,1.00,-28.80,-24.00,0
+-14.40,-24.00,3.07,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,3.23,0.00,1.00,-19.20,-19.20,0
+-9.60,-14.40,3.39,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,3.56,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,3.72,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,3.88,0.00,1.00,-4.80,0.00,0
+0.00,0.00,4.04,0.00,1.00,0.00,4.80,0
+4.80,4.80,4.20,0.00,1.00,4.80,9.60,0
+4.80,9.60,4.36,0.00,1.00,9.60,14.40,0
+9.60,9.60,4.53,0.00,1.00,14.40,14.40,0
+9.60,14.40,4.69,0.00,1.00,14.40,19.20,0
+14.40,19.20,4.85,0.00,1.00,19.20,24.00,0
+19.20,24.00,5.01,0.00,1.00,24.00,28.80,0
+19.20,28.80,5.17,0.00,1.00,28.80,33.60,0
+24.00,28.80,5.33,0.00,1.00,33.60,33.60,0
+28.80,33.60,5.49,0.00,1.00,38.40,38.40,0
+33.60,38.40,5.66,0.00,1.00,43.20,43.20,0
+38.40,43.20,5.82,0.00,1.00,48.00,43.20,0
+43.20,43.20,5.98,0.00,1.00,52.80,48.00,0
+48.00,48.00,6.14,0.00,1.00,57.60,52.80,0
+52.80,48.00,6.30,0.00,1.00,62.40,52.80,0
+57.60,52.80,6.46,0.00,1.00,67.20,57.60,0
+67.20,52.80,6.63,0.00,1.00,72.00,57.60,0
+76.80,57.60,6.79,0.00,1.00,81.60,57.60,0
+81.60,57.60,6.95,0.00,1.00,86.40,57.60,0
+91.20,57.60,7.11,0.00,1.00,91.20,57.60,0
+100.80,57.60,7.27,0.00,1.00,96.00,57.60,0
+110.40,52.80,7.43,0.00,1.00,100.80,52.80,0
+115.20,52.80,7.60,0.00,1.00,110.40,52.80,0
+124.80,52.80,7.76,0.00,1.00,115.20,48.00,0
+129.60,48.00,7.92,0.00,1.00,120.00,48.00,0
+134.40,48.00,8.08,0.00,1.00,124.80,43.20,0
+139.20,43.20,8.24,0.00,1.00,129.60,38.40,0
+144.00,38.40,8.40,0.00,1.00,134.40,38.40,0
+148.80,38.40,8.57,0.00,1.00,139.20,33.60,0
+153.60,33.60,8.73,0.00,1.00,144.00,28.80,0
+158.40,28.80,8.89,0.00,1.00,148.80,24.00,0
+163.20,24.00,9.05,0.00,1.00,153.60,24.00,0
+163.20,24.00,9.21,0.00,1.00,158.40,19.20,0
+168.00,19.20,9.37,0.00,1.00,163.20,14.40,0
+172.80,14.40,9.54,0.00,1.00,168.00,9.60,0
+172.80,9.60,9.70,0.00,1.00,168.00,4.80,0
+177.60,4.80,9.86,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.18,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,10.34,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,10.51,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,10.67,0.00,1.00,-168.00,-19.20,0
+-168.00,-19.20,10.83,0.00,1.00,-163.20,-24.00,0
+-163.20,-24.00,10.99,0.00,1.00,-158.40,-24.00,0
+-163.20,-24.00,11.15,0.00,1.00,-153.60,-28.80,0
+-158.40,-28.80,11.31,0.00,1.00,-148.80,-33.60,0
+-153.60,-33.60,11.47,0.00,1.00,-144.00,-38.40,0
+-148.80,-38.40,11.64,0.00,1.00,-139.20,-38.40,0
+-144.00,-38.40,11.80,0.00,1.00,-134.40,-43.20,0
+-139.20,-43.20,11.96,0.00,1.00,-129.60,-48.00,0
+-134.40,-48.00,12.12,0.00,1.00,-124.80,-48.00,0
+-129.60,-48.00,12.28,0.00,1.00,-120.00,-52.80,0
+-124.80,-52.80,12.44,0.00,1.00,-115.20,-52.80,0
+-115.20,-52.80,12.61,0.00,1.00,-110.40,-57.60,0
+-110.40,-52.80,12.77,0.00,1.00,-100.80,-57.60,0
+-100.80,-57.60,12.93,0.00,1.00,-96.00,-57.60,0
+-91.20,-57.60,13.09,0.00,1.00,-91.20,-57.60,0
+-81.60,-57.60,13.25,0.00,1.00,-86.40,-57.60,0
+-76.80,-57.60,13.41,0.00,1.00,-81.60,-57.60,0
+-67.20,-52.80,13.58,0.00,1.00,-72.00,-52.80,0
+-57.60,-52.80,13.74,0.00,1.00,-67.20,-52.80,0
+-52.80,-48.00,13.90,0.00,1.00,-62.40,-48.00,0
+-48.00,-48.00,14.06,0.00,1.00,-57.60,-43.20,0
+-43.20,-43.20,14.22,0.00,1.00,-52.80,-43.20,0
+-38.40,-43.20,14.38,0.00,1.00,-48.00,-38.40,0
+-33.60,-38.40,14.55,0.00,1.00,-43.20,-33.60,0
+-28.80,-33.60,14.71,0.00,1.00,-38.40,-33.60,0
+-24.00,-28.80,14.87,0.00,1.00,-33.60,-28.80,0
+-19.20,-28.80,15.03,0.00,1.00,-28.80,-24.00,0
+-19.20,-24.00,15.19,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,15.35,0.00,1.00,-19.20,-14.40,0
+-9.60,-14.40,15.52,0.00,1.00,-14.40,-14.40,0
+-9.60,-9.60,15.68,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,15.84,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,16.00,0.00,1.00,-4.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,0.00,4.80,0
+4.80,4.80,15.84,0.00,1.00,4.80,9.60,0
+4.80,9.60,15.68,0.00,1.00,9.60,9.60,0
+9.60,9.60,15.52,0.00,1.00,9.60,14.40,0
+14.40,14.40,15.35,0.00,1.00,14.40,19.20,0
+14.40,19.20,15.19,0.00,1.00,19.20,24.00,0
+19.20,24.00,15.03,0.00,1.00,24.00,24.00,0
+24.00,24.00,14.87,0.00,1.00,28.80,28.80,0
+24.00,28.80,14.71,0.00,1.00,33.60,33.60,0
+28.80,33.60,14.55,0.00,1.00,38.40,38.40,0
+33.60,33.60,14.38,0.00,1.00,43.20,38.40,0
+38.40,38.40,14.22,0.00,1.00,48.00,43.20,0
+43.20,43.20,14.06,0.00,1.00,52.80,43.20,0
+48.00,43.20,13.90,0.00,1.00,57.60,48.00,0
+57.60,48.00,13.74,0.00,1.00,62.40,48.00,0
+62.40,48.00,13.58,0.00,1.00,67.20,52.80,0
+67.20,48.00,13.41,0.00,1.00,72.00,52.80,0
+76.80,52.80,13.25,0.00,1.00,81.60,52.80,0
+86.40,52.80,13.09,0.00,1.00,86.40,52.80,0
+91.20,52.80,12.93,0.00,1.00,91.20,52.80,0
+100.80,52.80,12.77,0.00,1.00,96.00,52.80,0
+105.60,48.00,12.61,0.00,1.00,105.60,48.00,0
+115.20,48.00,12.44,0.00,1.00,110.40,48.00,0
+120.00,48.00,12.28,0.00,1.00,115.20,48.00,0
+124.80,43.20,12.12,0.00,1.00,120.00,43.20,0
+134.40,43.20,11.96,0.00,1.00,124.80,43.20,0
+139.20,38.40,11.80,0.00,1.00,129.60,38.40,0
+144.00,38.40,11.64,0.00,1.00,134.40,33.60,0
+148.80,33.60,11.47,0.00,1.00,139.20,33.60,0
+153.60,28.80,11.31,0.00,1.00,144.00,28.80,0
+153.60,28.80,11.15,0.00,1.00,148.80,24.00,0
+158.40,24.00,10.99,0.00,1.00,153.60,19.20,0
+163.20,19.20,10.83,0.00,1.00,158.40,19.20,0
+168.00,14.40,10.67,0.00,1.00,163.20,14.40,0
+168.00,14.40,10.51,0.00,1.00,168.00,9.60,0
+172.80,9.60,10.34,0.00,1.00,172.80,4.80,0
+177.60,4.80,10.18,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,9.86,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,9.70,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,9.54,0.00,1.00,-172.80,-14.40,0
+-168.00,-14.40,9.37,0.00,1.00,-168.00,-19.20,0
+-168.00,-14.40,9.21,0.00,1.00,-163.20,-19.20,0
+-163.20,-19.20,9.05,0.00,1.00,-158.40,-24.00,0
+-158.40,-24.00,8.89,0.00,1.00,-153.60,-28.80,0
+-153.60,-28.80,8.73,0.00,1.00,-148.80,-33.60,0
+-153.60,-28.80,8.57,0.00,1.00,-144.00,-33.60,0
+-148.80,-33.60,8.40,0.00,1.00,-139.20,-38.40,0
+-144.00,-38.40,8.24,0.00,1.00,-134.40,-43.20,0
+-139.20,-38.40,8.08,0.00,1.00,-129.60,-43.20,0
+-134.40,-43.20,7.92,0.00,1.00,-124.80,-48.00,0
+-124.80,-43.20,7.76,0.00,1.00,-120.00,-48.00,0
+-120.00,-48.00,7.60,0.00,1.00,-115.20,-48.00,0
+-115.20,-48.00,7.43,0.00,1.00,-110.40,-52.80,0
+-105.60,-48.00,7.27,0.00,1.00,-105.60,-52.80,0
+-100.80,-52.80,7.11,0.00,1.00,-96.00,-52.80,0
+-91.20,-52.80,6.95,0.00,1.00,-91.20,-52.80,0
+-86.40,-52.80,6.79,0.00,1.00,-86.40,-52.80,0
+-76.80,-52.80,6.63,0.00,1.00,-81.60,-52.80,0
+-67.20,-48.00,6.46,0.00,1.00,-72.00,-48.00,0
+-62.40,-48.00,6.30,0.00,1.00,-67.20,-48.00,0
+-57.60,-48.00,6.14,0.00,1.00,-62.40,-43.20,0
+-48.00,-43.20,5.98,0.00,1.00,-57.60,-43.20,0
+-43.20,-43.20,5.82,0.00,1.00,-52.80,-38.40,0
+-38.40,-38.40,5.66,0.00,1.00,-48.00,-38.40,0
+-33.60,-33.60,5.49,0.00,1.00,-43.20,-33.60,0
+-28.80,-33.60,5.33,0.00,1.00,-38.40,-28.80,0
+-24.00,-28.80,5.17,0.00,1.00,-33.60,-24.00,0
+-24.00,-24.00,5.01,0.00,1.00,-28.80,-24.00,0
+-19.20,-24.00,4.85,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,4.69,0.00,1.00,-19.20,-14.40,0
+-14.40,-14.40,4.53,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,4.36,0.00,1.00,-9.60,-9.60,0
+-4.80,-9.60,4.20,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,4.04,0.00,1.00,-4.80,0.00,0
+0.00,0.00,3.88,0.00,1.00,0.00,4.80,0
+4.80,4.80,3.72,0.00,1.00,4.80,4.80,0
+4.80,4.80,3.56,0.00,1.00,4.80,9.60,0
+9.60,9.60,3.39,0.00,1.00,9.60,14.40,0
+14.40,14.40,3.23,0.00,1.00,14.40,19.20,0
+19.20,19.20,3.07,0.00,1.00,19.20,19.20,0
+19.20,19.20,2.91,0.00,1.00,24.00,24.00,0
+24.00,24.00,2.75,0.00,1.00,24.00,28.80,0
+28.80,28.80,2.59,0.00,1.00,28.80,28.80,0
+33.60,28.80,2.42,0.00,1.00,33.60,33.60,0
+38.40,33.60,2.26,0.00,1.00,38.40,38.40,0
+43.20,33.60,2.10,0.00,1.00,43.20,38.40,0
+48.00,38.40,1.94,0.00,1.00,48.00,43.20,0
+52.80,38.40,1.78,0.00,1.00,52.80,43.20,0
+57.60,43.20,1.62,0.00,1.00,62.40,43.20,0
+62.40,43.20,1.45,0.00,1.00,67.20,48.00,0
+72.00,43.20,1.29,0.00,1.00,72.00,48.00,0
+76.80,48.00,1.13,0.00,1.00,76.80,48.00,0
+86.40,48.00,0.97,0.00,1.00,86.40,48.00,0
+91.20,48.00,0.81,0.00,1.00,91.20,48.00,0
+100.80,48.00,0.65,0.00,1.00,96.00,48.00,0
+105.60,48.00,0.48,0.00,1.00,105.60,48.00,0
+110.40,43.20,0.32,0.00,1.00,110.40,43.20,0
+120.00,43.20,0.16,0.00,1.00,115.20,43.20,0
+124.80,43.20,0.00,0.00,1.00,124.80,38.40,0
+129.60,38.40,0.00,0.00,1.00,129.60,38.40,0
+134.40,38.40,0.04,0.00,1.00,134.40,33.60,0
+139.20,33.60,0.08,0.00,1.00,139.20,33.60,0
+144.00,33.60,0.12,0.00,1.00,144.00,28.80,0
+148.80,28.80,0.16,0.00,1.00,148.80,24.00,0
+153.60,24.00,0.20,0.00,1.00,153.60,24.00,0
+158.40,24.00,0.24,0.00,1.00,158.40,19.20,0
+163.20,19.20,0.28,0.00,1.00,158.40,14.40,0
+163.20,14.40,0.32,0.00,1.00,163.20,14.40,0
+168.00,14.40,0.36,0.00,1.00,168.00,9.60,0
+172.80,9.60,0.40,0.00,1.00,172.80,4.80,0
+172.80,4.80,0.44,0.00,1.00,172.80,0.00,0
+177.60,0.00,0.48,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,0.52,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,0.56,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,0.60,0.00,1.00,-172.80,-14.40,0
+-168.00,-14.40,0.64,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,0.68,0.00,1.00,-163.20,-19.20,0
+-163.20,-19.20,0.72,0.00,1.00,-158.40,-24.00,0
+-158.40,-24.00,0.76,0.00,1.00,-158.40,-24.00,0
+-153.60,-24.00,0.80,0.00,1.00,-153.60,-28.80,0
+-148.80,-28.80,0.84,0.00,1.00,-148.80,-33.60,0
+-144.00,-33.60,0.88,0.00,1.00,-144.00,-33.60,0
+-139.20,-33.60,0.92,0.00,1.00,-139.20,-38.40,0
+-134.40,-38.40,0.96,0.00,1.00,-134.40,-38.40,0
+-129.60,-38.40,1.00,0.00,1.00,-129.60,-43.20,0
+-124.80,-43.20,1.04,0.00,1.00,-124.80,-43.20,0
+-120.00,-43.20,1.08,0.00,1.00,-115.20,-48.00,0
+-110.40,-43.20,1.12,0.00,1.00,-110.40,-48.00,0
+-105.60,-48.00,1.16,0.00,1.00,-105.60,-48.00,0
+-100.80,-48.00,1.20,0.00,1.00,-96.00,-48.00,0
+-91.20,-48.00,1.24,0.00,1.00,-91.20,-48.00,0
+-86.40,-48.00,1.28,0.00,1.00,-86.40,-48.00,0
+-76.80,-48.00,1.32,0.00,1.00,-76.80,-48.00,0
+-72.00,-43.20,1.36,0.00,1.00,-72.00,-43.20,0
+-62.40,-43.20,1.40,0.00,1.00,-67.20,-43.20,0
+-57.60,-43.20,1.44,0.00,1.00,-62.40,-43.20,0
+-52.80,-38.40,1.48,0.00,1.00,-52.80,-38.40,0
+-48.00,-38.40,1.52,0.00,1.00,-48.00,-38.40,0
+-43.20,-33.60,1.56,0.00,1.00,-43.20,-33.60,0
+-38.40,-33.60,1.60,0.00,1.00,-38.40,-28.80,0
+-33.60,-28.80,1.64,0.00,1.00,-33.60,-28.80,0
+-28.80,-28.80,1.68,0.00,1.00,-28.80,-24.00,0
+-24.00,-24.00,1.72,0.00,1.00,-24.00,-19.20,0
+-19.20,-19.20,1.76,0.00,1.00,-24.00,-19.20,0
+-19.20,-19.20,1.80,0.00,1.00,-19.20,-14.40,0
+-14.40,-14.40,1.84,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,1.88,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,1.92,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,1.96,0.00,1.00,-4.80,0.00,0
+0.00,0.00,2.01,0.00,1.00,0.00,4.80,0
+4.80,4.80,2.05,0.00,1.00,4.80,4.80,0
+4.80,4.80,2.09,0.00,1.00,4.80,9.60,0
+9.60,9.60,2.13,0.00,1.00,9.60,14.40,0
+14.40,14.40,2.17,0.00,1.00,14.40,14.40,0
+19.20,14.40,2.21,0.00,1.00,14.40,19.20,0
+24.00,19.20,2.25,0.00,1.00,19.20,24.00,0
+24.00,24.00,2.29,0.00,1.00,24.00,24.00,0
+28.80,24.00,2.33,0.00,1.00,28.80,28.80,0
+33.60,28.80,2.37,0.00,1.00,33.60,28.80,0
+38.40,28.80,2.41,0.00,1.00,38.40,33.60,0
+43.20,33.60,2.45,0.00,1.00,43.20,33.60,0
+48.00,33.60,2.49,0.00,1.00,48.00,38.40,0
+52.80,38.40,2.53,0.00,1.00,52.80,38.40,0
+62.40,38.40,2.57,0.00,1.00,57.60,38.40,0
+67.20,38.40,2.61,0.00,1.00,62.40,43.20,0
+72.00,38.40,2.65,0.00,1.00,72.00,43.20,0
+76.80,43.20,2.69,0.00,1.00,76.80,43.20,0
+86.40,43.20,2.73,0.00,1.00,86.40,43.20,0
+91.20,43.20,2.77,0.00,1.00,91.20,43.20,0
+96.00,43.20,2.81,0.00,1.00,100.80,43.20,0
+105.60,43.20,2.85,0.00,1.00,105.60,43.20,0
+110.40,38.40,2.89,0.00,1.00,110.40,38.40,0
+115.20,38.40,2.93,0.00,1.00,120.00,38.40,0
+120.00,38.40,2.97,0.00,1.00,124.80,38.40,0
+129.60,33.60,3.01,0.00,1.00,129.60,33.60,0
+134.40,33.60,3.05,0.00,1.00,134.40,33.60,0
+139.20,28.80,3.09,0.00,1.00,139.20,28.80,0
+144.00,28.80,3.13,0.00,1.00,144.00,28.80,0
+148.80,24.00,3.17,0.00,1.00,148.80,24.00,0
+153.60,24.00,3.21,0.00,1.00,153.60,19.20,0
+153.60,19.20,3.25,0.00,1.00,158.40,19.20,0
+158.40,19.20,3.29,0.00,1.00,163.20,14.40,0
+163.20,14.40,3.33,0.00,1.00,163.20,9.60,0
+168.00,9.60,3.37,0.00,1.00,168.00,9.60,0
+172.80,9.60,3.41,0.00,1.00,172.80,4.80,0
+172.80,4.80,3.45,0.00,1.00,172.80,0.00,0
+177.60,0.00,3.49,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.53,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,3.57,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,3.61,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,3.65,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,3.69,0.00,1.00,-163.20,-19.20,0
+-158.40,-19.20,3.73,0.00,1.00,-163.20,-19.20,0
+-153.60,-19.20,3.77,0.00,1.00,-158.40,-24.00,0
+-153.60,-24.00,3.81,0.00,1.00,-153.60,-28.80,0
+-148.80,-24.00,3.85,0.00,1.00,-148.80,-28.80,0
+-144.00,-28.80,3.89,0.00,1.00,-144.00,-33.60,0
+-139.20,-28.80,3.93,0.00,1.00,-139.20,-33.60,0
+-134.40,-33.60,3.97,0.00,1.00,-134.40,-38.40,0
+-129.60,-33.60,4.01,0.00,1.00,-129.60,-38.40,0
+-120.00,-38.40,4.05,0.00,1.00,-124.80,-38.40,0
+-115.20,-38.40,4.09,0.00,1.00,-120.00,-43.20,0
+-110.40,-38.40,4.13,0.00,1.00,-110.40,-43.20,0
+-105.60,-43.20,4.17,0.00,1.00,-105.60,-43.20,0
+-96.00,-43.20,4.21,0.00,1.00,-100.80,-43.20,0
+-91.20,-43.20,4.25,0.00,1.00,-91.20,-43.20,0
+-86.40,-43.20,4.29,0.00,1.00,-86.40,-43.20,0
+-76.80,-43.20,4.33,0.00,1.00,-76.80,-43.20,0
+-72.00,-38.40,4.37,0.00,1.00,-72.00,-38.40,0
+-67.20,-38.40,4.41,0.00,1.00,-62.40,-38.40,0
+-62.40,-38.40,4.45,0.00,1.00,-57.60,-38.40,0
+-52.80,-38.40,4.49,0.00,1.00,-52.80,-33.60,0
+-48.00,-33.60,4.53,0.00,1.00,-48.00,-33.60,0
+-43.20,-33.60,4.57,0.00,1.00,-43.20,-28.80,0
+-38.40,-28.80,4.61,0.00,1.00,-38.40,-28.80,0
+-33.60,-28.80,4.65,0.00,1.00,-33.60,-24.00,0
+-28.80,-24.00,4.69,0.00,1.00,-28.80,-24.00,0
+-24.00,-24.00,4.73,0.00,1.00,-24.00,-19.20,0
+-24.00,-19.20,4.77,0.00,1.00,-19.20,-14.40,0
+-19.20,-14.40,4.81,0.00,1.00,-14.40,-14.40,0
+-14.40,-14.40,4.85,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,4.89,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,4.93,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,4.97,0.00,1.00,-4.80,0.00,0
+0.00,0.00,5.01,0.00,1.00,0.00,4.80,0
+4.80,4.80,5.05,0.00,1.00,4.80,4.80,0
+9.60,4.80,5.09,0.00,1.00,4.80,9.60,0
+9.60,9.60,5.13,0.00,1.00,9.60,9.60,0
+14.40,9.60,5.17,0.00,1.00,9.60,14.40,0
+19.20,14.40,5.21,0.00,1.00,14.40,19.20,0
+24.00,19.20,5.25,0.00,1.00,19.20,19.20,0
+28.80,19.20,5.29,0.00,1.00,24.00,24.00,0
+33.60,24.00,5.33,0.00,1.00,24.00,24.00,0
+38.40,24.00,5.37,0.00,1.00,28.80,28.80,0
+43.20,28.80,5.41,0.00,1.00,33.60,28.80,0
+48.00,28.80,5.45,0.00,1.00,38.40,33.60,0
+52.80,28.80,5.49,0.00,1.00,43.20,33.60,0
+57.60,33.60,5.53,0.00,1.00,48.00,33.60,0
+62.40,33.60,5.57,0.00,1.00,52.80,38.40,0
+67.20,33.60,5.61,0.00,1.00,62.40,38.40,0
+72.00,38.40,5.65,0.00,1.00,67.20,38.40,0
+81.60,38.40,5.69,0.00,1.00,76.80,38.40,0
+86.40,38.40,5.73,0.00,1.00,86.40,38.40,0
+91.20,38.40,5.77,0.00,1.00,91.20,38.40,0
+96.00,38.40,5.81,0.00,1.00,100.80,38.40,0
+105.60,38.40,5.85,0.00,1.00,105.60,38.40,0
+110.40,33.60,5.89,0.00,1.00,115.20,33.60,0
+115.20,33.60,5.93,0.00,1.00,120.00,33.60,0
+120.00,33.60,5.97,0.00,1.00,129.60,33.60,0
+124.80,33.60,6.02,0.00,1.00,134.40,28.80,0
+129.60,28.80,6.06,0.00,1.00,139.20,28.80,0
+134.40,28.80,6.10,0.00,1.00,144.00,24.00,0
+139.20,24.00,6.14,0.00,1.00,148.80,24.00,0
+144.00,24.00,6.18,0.00,1.00,153.60,19.20,0
+148.80,19.20,6.22,0.00,1.00,158.40,19.20,0
+153.60,19.20,6.26,0.00,1.00,158.40,14.40,0
+158.40,14.40,6.30,0.00,1.00,163.20,14.40,0
+163.20,14.40,6.34,0.00,1.00,168.00,9.60,0
+168.00,9.60,6.38,0.00,1.00,168.00,9.60,0
+168.00,9.60,6.42,0.00,1.00,172.80,4.80,0
+172.80,4.80,6.46,0.00,1.00,177.60,0.00,0
+177.60,0.00,6.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.54,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,6.58,0.00,1.00,-177.60,-9.60,0
+-168.00,-9.60,6.62,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,6.66,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,6.70,0.00,1.00,-168.00,-14.40,0
+-158.40,-14.40,6.74,0.00,1.00,-163.20,-19.20,0
+-153.60,-19.20,6.78,0.00,1.00,-158.40,-19.20,0
+-148.80,-19.20,6.82,0.00,1.00,-158.40,-24.00,0
+-144.00,-24.00,6.86,0.00,1.00,-153.60,-24.00,0
+-139.20,-24.00,6.90,0.00,1.00,-148.80,-28.80,0
+-134.40,-28.80,6.94,0.00,1.00,-144.00,-28.80,0
+-129.60,-28.80,6.98,0.00,1.00,-139.20,-33.60,0
+-124.80,-33.60,7.02,0.00,1.00,-134.40,-33.60,0
+-120.00,-33.60,7.06,0.00,1.00,-129.60,-33.60,0
+-115.20,-33.60,7.10,0.00,1.00,-120.00,-38.40,0
+-110.40,-33.60,7.14,0.00,1.00,-115.20,-38.40,0
+-105.60,-38.40,7.18,0.00,1.00,-105.60,-38.40,0
+-96.00,-38.40,7.22,0.00,1.00,-100.80,-38.40,0
+-91.20,-38.40,7.26,0.00,1.00,-91.20,-38.40,0
+-86.40,-38.40,7.30,0.00,1.00,-86.40,-38.40,0
+-81.60,-38.40,7.34,0.00,1.00,-76.80,-38.40,0
+-72.00,-38.40,7.38,0.00,1.00,-67.20,-38.40,0
+-67.20,-33.60,7.42,0.00,1.00,-62.40,-33.60,0
+-62.40,-33.60,7.46,0.00,1.00,-52.80,-33.60,0
+-57.60,-33.60,7.50,0.00,1.00,-48.00,-33.60,0
+-52.80,-28.80,7.54,0.00,1.00,-43.20,-28.80,0
+-48.00,-28.80,7.58,0.00,1.00,-38.40,-28.80,0
+-43.20,-28.80,7.62,0.00,1.00,-33.60,-24.00,0
+-38.40,-24.00,7.66,0.00,1.00,-28.80,-24.00,0
+-33.60,-24.00,7.70,0.00,1.00,-24.00,-19.20,0
+-28.80,-19.20,7.74,0.00,1.00,-24.00,-19.20,0
+-24.00,-19.20,7.78,0.00,1.00,-19.20,-14.40,0
+-19.20,-14.40,7.82,0.00,1.00,-14.40,-9.60,0
+-14.40,-9.60,7.86,0.00,1.00,-9.60,-9.60,0
+-9.60,-9.60,7.90,0.00,1.00,-9.60,-4.80,0
+-9.60,-4.80,7.94,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,7.98,0.00,1.00,-4.80,0.00,0
+0.00,0.00,8.02,0.00,1.00,0.00,4.80,0
+4.80,4.80,8.06,0.00,1.00,4.80,4.80,0
+9.60,4.80,8.10,0.00,1.00,4.80,9.60,0
+14.40,9.60,8.14,0.00,1.00,9.60,9.60,0
+14.40,9.60,8.18,0.00,1.00,9.60,14.40,0
+19.20,14.40,8.22,0.00,1.00,14.40,14.40,0
+24.00,14.40,8.26,0.00,1.00,14.40,19.20,0
+28.80,19.20,8.30,0.00,1.00,19.20,19.20,0
+33.60,19.20,8.34,0.00,1.00,24.00,24.00,0
+38.40,19.20,8.38,0.00,1.00,28.80,24.00,0
+43.20,24.00,8.42,0.00,1.00,28.80,24.00,0
+48.00,24.00,8.46,0.00,1.00,33.60,28.80,0
+52.80,28.80,8.50,0.00,1.00,38.40,28.80,0
+57.60,28.80,8.54,0.00,1.00,48.00,28.80,0
+62.40,28.80,8.58,0.00,1.00,52.80,33.60,0
+67.20,28.80,8.62,0.00,1.00,57.60,33.60,0
+76.80,33.60,8.66,0.00,1.00,67.20,33.60,0
+81.60,33.60,8.70,0.00,1.00,76.80,33.60,0
+86.40,33.60,8.74,0.00,1.00,81.60,33.60,0
+91.20,33.60,8.78,0.00,1.00,91.20,33.60,0
+96.00,33.60,8.82,0.00,1.00,100.80,33.60,0
+100.80,33.60,8.86,0.00,1.00,110.40,33.60,0
+110.40,28.80,8.90,0.00,1.00,115.20,33.60,0
+115.20,28.80,8.94,0.00,1.00,124.80,28.80,0
+120.00,28.80,8.98,0.00,1.00,129.60,28.80,0
+124.80,28.80,9.02,0.00,1.00,139.20,28.80,0
+129.60,24.00,9.06,0.00,1.00,144.00,24.00,0
+134.40,24.00,9.10,0.00,1.00,148.80,24.00,0
+139.20,24.00,9.14,0.00,1.00,153.60,19.20,0
+144.00,19.20,9.18,0.00,1.00,153.60,19.20,0
+148.80,19.20,9.22,0.00,1.00,158.40,14.40,0
+153.60,14.40,9.26,0.00,1.00,163.20,14.40,0
+158.40,14.40,9.30,0.00,1.00,163.20,9.60,0
+163.20,9.60,9.34,0.00,1.00,168.00,9.60,0
+168.00,9.60,9.38,0.00,1.00,172.80,4.80,0
+168.00,4.80,9.42,0.00,1.00,172.80,4.80,0
+172.80,4.80,9.46,0.00,1.00,177.60,0.00,0
+177.60,0.00,9.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,9.54,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,9.58,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,9.62,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,9.66,0.00,1.00,-172.80,-9.60,0
+-163.20,-9.60,9.70,0.00,1.00,-168.00,-14.40,0
+-158.40,-14.40,9.74,0.00,1.00,-163.20,-14.40,0
+-153.60,-14.40,9.78,0.00,1.00,-163.20,-19.20,0
+-148.80,-19.20,9.82,0.00,1.00,-158.40,-19.20,0
+-144.00,-19.20,9.86,0.00,1.00,-153.60,-24.00,0
+-139.20,-24.00,9.90,0.00,1.00,-153.60,-24.00,0
+-134.40,-24.00,9.94,0.00,1.00,-148.80,-28.80,0
+-129.60,-24.00,9.98,0.00,1.00,-144.00,-28.80,0
+-124.80,-28.80,10.03,0.00,1.00,-139.20,-28.80,0
+-120.00,-28.80,10.07,0.00,1.00,-129.60,-33.60,0
+-115.20,-28.80,10.11,0.00,1.00,-124.80,-33.60,0
+-110.40,-28.80,10.15,0.00,1.00,-115.20,-33.60,0
+-100.80,-33.60,10.19,0.00,1.00,-110.40,-33.60,0
+-96.00,-33.60,10.23,0.00,1.00,-100.80,-33.60,0
+-91.20,-33.60,10.27,0.00,1.00,-91.20,-33.60,0
+-86.40,-33.60,10.31,0.00,1.00,-81.60,-33.60,0
+-81.60,-33.60,10.35,0.00,1.00,-76.80,-33.60,0
+-76.80,-33.60,10.39,0.00,1.00,-67.20,-33.60,0
+-67.20,-28.80,10.43,0.00,1.00,-57.60,-28.80,0
+-62.40,-28.80,10.47,0.00,1.00,-52.80,-28.80,0
+-57.60,-28.80,10.51,0.00,1.00,-48.00,-28.80,0
+-52.80,-28.80,10.55,0.00,1.00,-38.40,-24.00,0
+-48.00,-24.00,10.59,0.00,1.00,-33.60,-24.00,0
+-43.20,-24.00,10.63,0.00,1.00,-28.80,-24.00,0
+-38.40,-19.20,10.67,0.00,1.00,-28.80,-19.20,0
+-33.60,-19.20,10.71,0.00,1.00,-24.00,-19.20,0
+-28.80,-19.20,10.75,0.00,1.00,-19.20,-14.40,0
+-24.00,-14.40,10.79,0.00,1.00,-14.40,-14.40,0
+-19.20,-14.40,10.83,0.00,1.00,-14.40,-9.60,0
+-14.40,-9.60,10.87,0.00,1.00,-9.60,-9.60,0
+-14.40,-9.60,10.91,0.00,1.00,-9.60,-4.80,0
+-9.60,-4.80,10.95,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,10.99,0.00,1.00,-4.80,0.00,0
+0.00,0.00,11.03,0.00,1.00,0.00,0.00,0
+4.80,0.00,11.07,0.00,1.00,0.00,4.80,0
+9.60,4.80,11.11,0.00,1.00,4.80,4.80,0
+14.40,4.80,11.15,0.00,1.00,4.80,9.60,0
+19.20,9.60,11.19,0.00,1.00,9.60,9.60,0
+19.20,9.60,11.23,0.00,1.00,9.60,14.40,0
+24.00,14.40,11.27,0.00,1.00,14.40,14.40,0
+28.80,14.40,11.31,0.00,1.00,19.20,19.20,0
+33.60,14.40,11.35,0.00,1.00,19.20,19.20,0
+38.40,19.20,11.39,0.00,1.00,24.00,19.20,0
+43.20,19.20,11.43,0.00,1.00,28.80,24.00,0
+48.00,24.00,11.47,0.00,1.00,33.60,24.00,0
+52.80,24.00,11.51,0.00,1.00,38.40,24.00,0
+57.60,24.00,11.55,0.00,1.00,43.20,24.00,0
+62.40,24.00,11.59,0.00,1.00,48.00,28.80,0
+72.00,24.00,11.63,0.00,1.00,52.80,28.80,0
+76.80,28.80,11.67,0.00,1.00,62.40,28.80,0
+81.60,28.80,11.71,0.00,1.00,72.00,28.80,0
+86.40,28.80,11.75,0.00,1.00,81.60,28.80,0
+91.20,28.80,11.79,0.00,1.00,91.20,28.80,0
+96.00,28.80,11.83,0.00,1.00,100.80,28.80,0
+100.80,28.80,11.87,0.00,1.00,110.40,28.80,0
+105.60,28.80,11.91,0.00,1.00,120.00,28.80,0
+110.40,24.00,11.95,0.00,1.00,129.60,24.00,0
+120.00,24.00,11.99,0.00,1.00,134.40,24.00,0
+124.80,24.00,12.03,0.00,1.00,139.20,24.00,0
+129.60,24.00,12.07,0.00,1.00,144.00,24.00,0
+134.40,19.20,12.11,0.00,1.00,148.80,19.20,0
+139.20,19.20,12.15,0.00,1.00,153.60,19.20,0
+144.00,19.20,12.19,0.00,1.00,158.40,14.40,0
+148.80,14.40,12.23,0.00,1.00,163.20,14.40,0
+153.60,14.40,12.27,0.00,1.00,163.20,14.40,0
+158.40,9.60,12.31,0.00,1.00,168.00,9.60,0
+158.40,9.60,12.35,0.00,1.00,168.00,9.60,0
+163.20,9.60,12.39,0.00,1.00,172.80,4.80,0
+168.00,4.80,12.43,0.00,1.00,172.80,4.80,0
+172.80,4.80,12.47,0.00,1.00,177.60,0.00,0
+177.60,0.00,12.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,12.55,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,12.59,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,12.63,0.00,1.00,-172.80,-9.60,0
+-163.20,-9.60,12.67,0.00,1.00,-172.80,-9.60,0
+-158.40,-9.60,12.71,0.00,1.00,-168.00,-14.40,0
+-158.40,-9.60,12.75,0.00,1.00,-168.00,-14.40,0
+-153.60,-14.40,12.79,0.00,1.00,-163.20,-14.40,0
+-148.80,-14.40,12.83,0.00,1.00,-163.20,-19.20,0
+-144.00,-19.20,12.87,0.00,1.00,-158.40,-19.20,0
+-139.20,-19.20,12.91,0.00,1.00,-153.60,-24.00,0
+-134.40,-19.20,12.95,0.00,1.00,-148.80,-24.00,0
+-129.60,-24.00,12.99,0.00,1.00,-144.00,-24.00,0
+-124.80,-24.00,13.03,0.00,1.00,-139.20,-24.00,0
+-120.00,-24.00,13.07,0.00,1.00,-134.40,-28.80,0
+-110.40,-24.00,13.11,0.00,1.00,-129.60,-28.80,0
+-105.60,-28.80,13.15,0.00,1.00,-120.00,-28.80,0
+-100.80,-28.80,13.19,0.00,1.00,-110.40,-28.80,0
+-96.00,-28.80,13.23,0.00,1.00,-100.80,-28.80,0
+-91.20,-28.80,13.27,0.00,1.00,-91.20,-28.80,0
+-86.40,-28.80,13.31,0.00,1.00,-81.60,-28.80,0
+-81.60,-28.80,13.35,0.00,1.00,-72.00,-28.80,0
+-76.80,-28.80,13.39,0.00,1.00,-62.40,-28.80,0
+-72.00,-24.00,13.43,0.00,1.00,-52.80,-24.00,0
+-62.40,-24.00,13.47,0.00,1.00,-48.00,-24.00,0
+-57.60,-24.00,13.51,0.00,1.00,-43.20,-24.00,0
+-52.80,-24.00,13.55,0.00,1.00,-38.40,-24.00,0
+-48.00,-24.00,13.59,0.00,1.00,-33.60,-19.20,0
+-43.20,-19.20,13.63,0.00,1.00,-28.80,-19.20,0
+-38.40,-19.20,13.67,0.00,1.00,-24.00,-19.20,0
+-33.60,-14.40,13.71,0.00,1.00,-19.20,-14.40,0
+-28.80,-14.40,13.75,0.00,1.00,-19.20,-14.40,0
+-24.00,-14.40,13.79,0.00,1.00,-14.40,-9.60,0
+-19.20,-9.60,13.83,0.00,1.00,-9.60,-9.60,0
+-19.20,-9.60,13.87,0.00,1.00,-9.60,-4.80,0
+-14.40,-4.80,13.91,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,13.95,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,13.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,14.04,0.00,1.00,0.00,0.00,0
+4.80,0.00,14.08,0.00,1.00,0.00,4.80,0
+9.60,4.80,14.12,0.00,1.00,4.80,4.80,0
+14.40,4.80,14.16,0.00,1.00,4.80,9.60,0
+19.20,9.60,14.20,0.00,1.00,9.60,9.60,0
+24.00,9.60,14.24,0.00,1.00,9.60,9.60,0
+28.80,9.60,14.28,0.00,1.00,14.40,14.40,0
+33.60,14.40,14.32,0.00,1.00,14.40,14.40,0
+38.40,14.40,14.36,0.00,1.00,19.20,14.40,0
+43.20,14.40,14.40,0.00,1.00,19.20,19.20,0
+48.00,14.40,14.44,0.00,1.00,24.00,19.20,0
+52.80,19.20,14.48,0.00,1.00,28.80,19.20,0
+57.60,19.20,14.52,0.00,1.00,33.60,19.20,0
+62.40,19.20,14.56,0.00,1.00,38.40,24.00,0
+67.20,19.20,14.60,0.00,1.00,43.20,24.00,0
+72.00,24.00,14.64,0.00,1.00,48.00,24.00,0
+76.80,24.00,14.68,0.00,1.00,57.60,24.00,0
+81.60,24.00,14.72,0.00,1.00,67.20,24.00,0
+86.40,24.00,14.76,0.00,1.00,81.60,24.00,0
+91.20,24.00,14.80,0.00,1.00,91.20,24.00,0
+96.00,24.00,14.84,0.00,1.00,105.60,24.00,0
+100.80,24.00,14.88,0.00,1.00,115.20,24.00,0
+105.60,24.00,14.92,0.00,1.00,124.80,24.00,0
+110.40,19.20,14.96,0.00,1.00,134.40,19.20,0
+115.20,19.20,15.00,0.00,1.00,139.20,19.20,0
+120.00,19.20,15.04,0.00,1.00,144.00,19.20,0
+124.80,19.20,15.08,0.00,1.00,148.80,19.20,0
+129.60,19.20,15.12,0.00,1.00,153.60,19.20,0
+134.40,14.40,15.16,0.00,1.00,158.40,14.40,0
+139.20,14.40,15.20,0.00,1.00,163.20,14.40,0
+144.00,14.40,15.24,0.00,1.00,163.20,14.40,0
+148.80,9.60,15.28,0.00,1.00,168.00,9.60,0
+153.60,9.60,15.32,0.00,1.00,168.00,9.60,0
+158.40,9.60,15.36,0.00,1.00,172.80,4.80,0
+163.20,4.80,15.40,0.00,1.00,172.80,4.80,0
+168.00,4.80,15.44,0.00,1.00,177.60,4.80,0
+172.80,4.80,15.48,0.00,1.00,177.60,0.00,0
+177.60,0.00,15.52,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,15.56,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,15.60,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,15.64,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,15.68,0.00,1.00,-172.80,-9.60,0
+-158.40,-9.60,15.72,0.00,1.00,-172.80,-9.60,0
+-153.60,-9.60,15.76,0.00,1.00,-168.00,-14.40,0
+-148.80,-9.60,15.80,0.00,1.00,-168.00,-14.40,0
+-144.00,-14.40,15.84,0.00,1.00,-163.20,-14.40,0
+-139.20,-14.40,15.88,0.00,1.00,-163.20,-19.20,0
+-134.40,-14.40,15.92,0.00,1.00,-158.40,-19.20,0
+-129.60,-19.20,15.96,0.00,1.00,-153.60,-19.20,0
+-124.80,-19.20,16.00,0.00,1.00,-148.80,-19.20,0
+-120.00,-19.20,16.00,0.00,1.00,-144.00,-19.20,0
+-115.20,-19.20,15.96,0.00,1.00,-139.20,-24.00,0
+-110.40,-19.20,15.92,0.00,1.00,-134.40,-24.00,0
+-105.60,-24.00,15.88,0.00,1.00,-124.80,-24.00,0
+-100.80,-24.00,15.84,0.00,1.00,-115.20,-24.00,0
+-96.00,-24.00,15.80,0.00,1.00,-105.60,-24.00,0
+-91.20,-24.00,15.76,0.00,1.00,-91.20,-24.00,0
+-86.40,-24.00,15.72,0.00,1.00,-81.60,-24.00,0
+-81.60,-24.00,15.68,0.00,1.00,-67.20,-24.00,0
+-76.80,-24.00,15.64,0.00,1.00,-57.60,-24.00,0
+-72.00,-24.00,15.60,0.00,1.00,-48.00,-24.00,0
+-67.20,-19.20,15.56,0.00,1.00,-43.20,-19.20,0
+-62.40,-19.20,15.52,0.00,1.00,-38.40,-19.20,0
+-57.60,-19.20,15.48,0.00,1.00,-33.60,-19.20,0
+-52.80,-19.20,15.44,0.00,1.00,-28.80,-19.20,0
+-48.00,-14.40,15.40,0.00,1.00,-24.00,-14.40,0
+-43.20,-14.40,15.36,0.00,1.00,-19.20,-14.40,0
+-38.40,-14.40,15.32,0.00,1.00,-19.20,-14.40,0
+-33.60,-14.40,15.28,0.00,1.00,-14.40,-9.60,0
+-28.80,-9.60,15.24,0.00,1.00,-14.40,-9.60,0
+-24.00,-9.60,15.20,0.00,1.00,-9.60,-9.60,0
+-19.20,-9.60,15.16,0.00,1.00,-9.60,-4.80,0
+-14.40,-4.80,15.12,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,15.08,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,15.04,0.00,1.00,-0.00,0.00,0
+0.00,0.00,15.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,14.96,0.00,1.00,0.00,4.80,0
+9.60,4.80,14.92,0.00,1.00,4.80,4.80,0
+14.40,4.80,14.88,0.00,1.00,4.80,4.80,0
+19.20,4.80,14.84,0.00,1.00,4.80,9.60,0
+24.00,9.60,14.80,0.00,1.00,9.60,9.60,0
+28.80,9.60,14.76,0.00,1.00,9.60,9.60,0
+33.60,9.60,14.72,0.00,1.00,9.60,9.60,0
+38.40,9.60,14.68,0.00,1.00,14.40,14.40,0
+43.20,14.40,14.64,0.00,1.00,14.40,14.40,0
+48.00,14.40,14.60,0.00,1.00,19.20,14.40,0
+52.80,14.40,14.56,0.00,1.00,24.00,14.40,0
+57.60,14.40,14.52,0.00,1.00,24.00,19.20,0
+62.40,14.40,14.48,0.00,1.00,28.80,19.20,0
+67.20,14.40,14.44,0.00,1.00,38.40,19.20,0
+72.00,19.20,14.40,0.00,1.00,43.20,19.20,0
+76.80,19.20,14.36,0.00,1.00,52.80,19.20,0
+81.60,19.20,14.32,0.00,1.00,62.40,19.20,0
+86.40,19.20,14.28,0.00,1.00,76.80,19.20,0
+91.20,19.20,14.24,0.00,1.00,96.00,19.20,0
+96.00,19.20,14.20,0.00,1.00,110.40,19.20,0
+100.80,19.20,14.16,0.00,1.00,120.00,19.20,0
+105.60,19.20,14.12,0.00,1.00,134.40,19.20,0
+110.40,19.20,14.08,0.00,1.00,139.20,19.20,0
+115.20,14.40,14.04,0.00,1.00,148.80,14.40,0
+120.00,14.40,13.99,0.00,1.00,153.60,14.40,0
+124.80,14.40,13.95,0.00,1.00,158.40,14.40,0
+129.60,14.40,13.91,0.00,1.00,158.40,14.40,0
+134.40,14.40,13.87,0.00,1.00,163.20,14.40,0
+139.20,9.60,13.83,0.00,1.00,163.20,9.60,0
+144.00,9.60,13.79,0.00,1.00,168.00,9.60,0
+148.80,9.60,13.75,0.00,1.00,168.00,9.60,0
+153.60,9.60,13.71,0.00,1.00,172.80,4.80,0
+158.40,4.80,13.67,0.00,1.00,172.80,4.80,0
+163.20,4.80,13.63,0.00,1.00,172.80,4.80,0
+168.00,4.80,13.59,0.00,1.00,177.60,0.00,0
+172.80,0.00,13.55,0.00,1.00,177.60,0.00,0
+177.60,0.00,13.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.47,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,13.43,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,13.39,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,13.35,0.00,1.00,-172.80,-4.80,0
+-158.40,-4.80,13.31,0.00,1.00,-172.80,-9.60,0
+-153.60,-9.60,13.27,0.00,1.00,-172.80,-9.60,0
+-148.80,-9.60,13.23,0.00,1.00,-168.00,-9.60,0
+-144.00,-9.60,13.19,0.00,1.00,-168.00,-14.40,0
+-139.20,-9.60,13.15,0.00,1.00,-163.20,-14.40,0
+-134.40,-14.40,13.11,0.00,1.00,-163.20,-14.40,0
+-129.60,-14.40,13.07,0.00,1.00,-158.40,-14.40,0
+-124.80,-14.40,13.03,0.00,1.00,-158.40,-14.40,0
+-120.00,-14.40,12.99,0.00,1.00,-153.60,-19.20,0
+-115.20,-14.40,12.95,0.00,1.00,-148.80,-19.20,0
+-110.40,-19.20,12.91,0.00,1.00,-139.20,-19.20,0
+-105.60,-19.20,12.87,0.00,1.00,-134.40,-19.20,0
+-100.80,-19.20,12.83,0.00,1.00,-120.00,-19.20,0
+-96.00,-19.20,12.79,0.00,1.00,-110.40,-19.20,0
+-91.20,-19.20,12.75,0.00,1.00,-96.00,-19.20,0
+-86.40,-19.20,12.71,0.00,1.00,-76.80,-19.20,0
+-81.60,-19.20,12.67,0.00,1.00,-62.40,-19.20,0
+-76.80,-19.20,12.63,0.00,1.00,-52.80,-19.20,0
+-72.00,-19.20,12.59,0.00,1.00,-43.20,-19.20,0
+-67.20,-14.40,12.55,0.00,1.00,-38.40,-19.20,0
+-62.40,-14.40,12.51,0.00,1.00,-28.80,-14.40,0
+-57.60,-14.40,12.47,0.00,1.00,-24.00,-14.40,0
+-52.80,-14.40,12.43,0.00,1.00,-24.00,-14.40,0
+-48.00,-14.40,12.39,0.00,1.00,-19.20,-14.40,0
+-43.20,-14.40,12.35,0.00,1.00,-14.40,-9.60,0
+-38.40,-9.60,12.31,0.00,1.00,-14.40,-9.60,0
+-33.60,-9.60,12.27,0.00,1.00,-9.60,-9.60,0
+-28.80,-9.60,12.23,0.00,1.00,-9.60,-9.60,0
+-24.00,-9.60,12.19,0.00,1.00,-9.60,-4.80,0
+-19.20,-4.80,12.15,0.00,1.00,-4.80,-4.80,0
+-14.40,-4.80,12.11,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,12.07,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,12.03,0.00,1.00,-0.00,0.00,0
+0.00,0.00,11.99,0.00,1.00,0.00,0.00,0
+4.80,0.00,11.95,0.00,1.00,0.00,0.00,0
+9.60,0.00,11.91,0.00,1.00,0.00,4.80,0
+14.40,4.80,11.87,0.00,1.00,4.80,4.80,0
+19.20,4.80,11.83,0.00,1.00,4.80,4.80,0
+24.00,4.80,11.79,0.00,1.00,4.80,4.80,0
+28.80,4.80,11.75,0.00,1.00,4.80,9.60,0
+33.60,9.60,11.71,0.00,1.00,9.60,9.60,0
+38.40,9.60,11.67,0.00,1.00,9.60,9.60,0
+43.20,9.60,11.63,0.00,1.00,14.40,9.60,0
+48.00,9.60,11.59,0.00,1.00,14.40,9.60,0
+52.80,9.60,11.55,0.00,1.00,14.40,14.40,0
+57.60,9.60,11.51,0.00,1.00,19.20,14.40,0
+62.40,9.60,11.47,0.00,1.00,24.00,14.40,0
+67.20,14.40,11.43,0.00,1.00,28.80,14.40,0
+72.00,14.40,11.39,0.00,1.00,33.60,14.40,0
+76.80,14.40,11.35,0.00,1.00,43.20,14.40,0
+81.60,14.40,11.31,0.00,1.00,57.60,14.40,0
+86.40,14.40,11.27,0.00,1.00,76.80,14.40,0
+91.20,14.40,11.23,0.00,1.00,96.00,14.40,0
+96.00,14.40,11.19,0.00,1.00,115.20,14.40,0
+100.80,14.40,11.15,0.00,1.00,129.60,14.40,0
+105.60,14.40,11.11,0.00,1.00,139.20,14.40,0
+110.40,14.40,11.07,0.00,1.00,148.80,14.40,0
+115.20,9.60,11.03,0.00,1.00,153.60,14.40,0
+120.00,9.60,10.99,0.00,1.00,158.40,9.60,0
+124.80,9.60,10.95,0.00,1.00,163.20,9.60,0
+129.60,9.60,10.91,0.00,1.00,163.20,9.60,0
+134.40,9.60,10.87,0.00,1.00,168.00,9.60,0
+139.20,9.60,10.83,0.00,1.00,168.00,9.60,0
+144.00,9.60,10.79,0.00,1.00,172.80,9.60,0
+148.80,4.80,10.75,0.00,1.00,172.80,4.80,0
+153.60,4.80,10.71,0.00,1.00,172.80,4.80,0
+158.40,4.80,10.67,0.00,1.00,172.80,4.80,0
+163.20,4.80,10.63,0.00,1.00,177.60,4.80,0
+168.00,4.80,10.59,0.00,1.00,177.60,0.00,0
+172.80,0.00,10.55,0.00,1.00,177.60,0.00,0
+177.60,0.00,10.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.47,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,10.43,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,10.39,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,10.35,0.00,1.00,-177.60,-4.80,0
+-158.40,-4.80,10.31,0.00,1.00,-172.80,-4.80,0
+-153.60,-4.80,10.27,0.00,1.00,-172.80,-9.60,0
+-148.80,-4.80,10.23,0.00,1.00,-172.80,-9.60,0
+-144.00,-9.60,10.19,0.00,1.00,-172.80,-9.60,0
+-139.20,-9.60,10.15,0.00,1.00,-168.00,-9.60,0
+-134.40,-9.60,10.11,0.00,1.00,-168.00,-9.60,0
+-129.60,-9.60,10.07,0.00,1.00,-163.20,-9.60,0
+-124.80,-9.60,10.03,0.00,1.00,-163.20,-14.40,0
+-120.00,-9.60,9.98,0.00,1.00,-158.40,-14.40,0
+-115.20,-9.60,9.94,0.00,1.00,-153.60,-14.40,0
+-110.40,-14.40,9.90,0.00,1.00,-148.80,-14.40,0
+-105.60,-14.40,9.86,0.00,1.00,-139.20,-14.40,0
+-100.80,-14.40,9.82,0.00,1.00,-129.60,-14.40,0
+-96.00,-14.40,9.78,0.00,1.00,-115.20,-14.40,0
+-91.20,-14.40,9.74,0.00,1.00,-96.00,-14.40,0
+-86.40,-14.40,9.70,0.00,1.00,-76.80,-14.40,0
+-81.60,-14.40,9.66,0.00,1.00,-57.60,-14.40,0
+-76.80,-14.40,9.62,0.00,1.00,-43.20,-14.40,0
+-72.00,-14.40,9.58,0.00,1.00,-33.60,-14.40,0
+-67.20,-14.40,9.54,0.00,1.00,-28.80,-14.40,0
+-62.40,-9.60,9.50,0.00,1.00,-24.00,-14.40,0
+-57.60,-9.60,9.46,0.00,1.00,-19.20,-9.60,0
+-52.80,-9.60,9.42,0.00,1.00,-14.40,-9.60,0
+-48.00,-9.60,9.38,0.00,1.00,-14.40,-9.60,0
+-43.20,-9.60,9.34,0.00,1.00,-14.40,-9.60,0
+-38.40,-9.60,9.30,0.00,1.00,-9.60,-9.60,0
+-33.60,-9.60,9.26,0.00,1.00,-9.60,-4.80,0
+-28.80,-4.80,9.22,0.00,1.00,-4.80,-4.80,0
+-24.00,-4.80,9.18,0.00,1.00,-4.80,-4.80,0
+-19.20,-4.80,9.14,0.00,1.00,-4.80,-4.80,0
+-14.40,-4.80,9.10,0.00,1.00,-4.80,-0.00,0
+-9.60,-0.00,9.06,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,9.02,0.00,1.00,-0.00,0.00,0
+0.00,0.00,8.98,0.00,1.00,0.00,0.00,0
+4.80,0.00,8.94,0.00,1.00,0.00,0.00,0
+9.60,0.00,8.90,0.00,1.00,0.00,0.00,0
+14.40,0.00,8.86,0.00,1.00,0.00,4.80,0
+19.20,4.80,8.82,0.00,1.00,4.80,4.80,0
+24.00,4.80,8.78,0.00,1.00,4.80,4.80,0
+28.80,4.80,8.74,0.00,1.00,4.80,4.80,0
+33.60,4.80,8.70,0.00,1.00,4.80,4.80,0
+38.40,4.80,8.66,0.00,1.00,4.80,4.80,0
+43.20,4.80,8.62,0.00,1.00,9.60,4.80,0
+48.00,4.80,8.58,0.00,1.00,9.60,9.60,0
+52.80,4.80,8.54,0.00,1.00,9.60,9.60,0
+57.60,4.80,8.50,0.00,1.00,14.40,9.60,0
+62.40,9.60,8.46,0.00,1.00,14.40,9.60,0
+67.20,9.60,8.42,0.00,1.00,19.20,9.60,0
+72.00,9.60,8.38,0.00,1.00,24.00,9.60,0
+76.80,9.60,8.34,0.00,1.00,33.60,9.60,0
+81.60,9.60,8.30,0.00,1.00,43.20,9.60,0
+86.40,9.60,8.26,0.00,1.00,67.20,9.60,0
+91.20,9.60,8.22,0.00,1.00,96.00,9.60,0
+96.00,9.60,8.18,0.00,1.00,124.80,9.60,0
+100.80,9.60,8.14,0.00,1.00,144.00,9.60,0
+105.60,9.60,8.10,0.00,1.00,153.60,9.60,0
+110.40,9.60,8.06,0.00,1.00,158.40,9.60,0
+115.20,9.60,8.02,0.00,1.00,163.20,9.60,0
+120.00,9.60,7.98,0.00,1.00,168.00,9.60,0
+124.80,4.80,7.94,0.00,1.00,168.00,9.60,0
+129.60,4.80,7.90,0.00,1.00,168.00,4.80,0
+134.40,4.80,7.86,0.00,1.00,172.80,4.80,0
+139.20,4.80,7.82,0.00,1.00,172.80,4.80,0
+144.00,4.80,7.78,0.00,1.00,172.80,4.80,0
+148.80,4.80,7.74,0.00,1.00,172.80,4.80,0
+153.60,4.80,7.70,0.00,1.00,177.60,4.80,0
+158.40,4.80,7.66,0.00,1.00,177.60,4.80,0
+163.20,4.80,7.62,0.00,1.00,177.60,0.00,0
+168.00,0.00,7.58,0.00,1.00,177.60,0.00,0
+172.80,0.00,7.54,0.00,1.00,177.60,0.00,0
+177.60,0.00,7.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,7.46,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,7.42,0.00,1.00,-177.60,-0.00,0
+-168.00,-0.00,7.38,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,7.34,0.00,1.00,-177.60,-4.80,0
+-158.40,-4.80,7.30,0.00,1.00,-177.60,-4.80,0
+-153.60,-4.80,7.26,0.00,1.00,-177.60,-4.80,0
+-148.80,-4.80,7.22,0.00,1.00,-172.80,-4.80,0
+-144.00,-4.80,7.18,0.00,1.00,-172.80,-4.80,0
+-139.20,-4.80,7.14,0.00,1.00,-172.80,-4.80,0
+-134.40,-4.80,7.10,0.00,1.00,-172.80,-9.60,0
+-129.60,-4.80,7.06,0.00,1.00,-168.00,-9.60,0
+-124.80,-4.80,7.02,0.00,1.00,-168.00,-9.60,0
+-120.00,-9.60,6.98,0.00,1.00,-168.00,-9.60,0
+-115.20,-9.60,6.94,0.00,1.00,-163.20,-9.60,0
+-110.40,-9.60,6.90,0.00,1.00,-158.40,-9.60,0
+-105.60,-9.60,6.86,0.00,1.00,-153.60,-9.60,0
+-100.80,-9.60,6.82,0.00,1.00,-144.00,-9.60,0
+-96.00,-9.60,6.78,0.00,1.00,-124.80,-9.60,0
+-91.20,-9.60,6.74,0.00,1.00,-96.00,-9.60,0
+-86.40,-9.60,6.70,0.00,1.00,-67.20,-9.60,0
+-81.60,-9.60,6.66,0.00,1.00,-43.20,-9.60,0
+-76.80,-9.60,6.62,0.00,1.00,-33.60,-9.60,0
+-72.00,-9.60,6.58,0.00,1.00,-24.00,-9.60,0
+-67.20,-9.60,6.54,0.00,1.00,-19.20,-9.60,0
+-62.40,-9.60,6.50,0.00,1.00,-14.40,-9.60,0
+-57.60,-4.80,6.46,0.00,1.00,-14.40,-9.60,0
+-52.80,-4.80,6.42,0.00,1.00,-9.60,-4.80,0
+-48.00,-4.80,6.38,0.00,1.00,-9.60,-4.80,0
+-43.20,-4.80,6.34,0.00,1.00,-9.60,-4.80,0
+-38.40,-4.80,6.30,0.00,1.00,-4.80,-4.80,0
+-33.60,-4.80,6.26,0.00,1.00,-4.80,-4.80,0
+-28.80,-4.80,6.22,0.00,1.00,-4.80,-4.80,0
+-24.00,-4.80,6.18,0.00,1.00,-4.80,-4.80,0
+-19.20,-4.80,6.14,0.00,1.00,-4.80,-0.00,0
+-14.40,-0.00,6.10,0.00,1.00,-0.00,-0.00,0
+-9.60,-0.00,6.06,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,6.02,0.00,1.00,-0.00,0.00,0
+0.00,0.00,5.97,0.00,1.00,0.00,0.00,0
+4.80,0.00,5.93,0.00,1.00,0.00,0.00,0
+9.60,0.00,5.89,0.00,1.00,0.00,0.00,0
+14.40,0.00,5.85,0.00,1.00,0.00,0.00,0
+19.20,0.00,5.81,0.00,1.00,0.00,0.00,0
+24.00,0.00,5.77,0.00,1.00,0.00,0.00,0
+28.80,0.00,5.73,0.00,1.00,0.00,4.80,0
+33.60,0.00,5.69,0.00,1.00,0.00,4.80,0
+38.40,0.00,5.65,0.00,1.00,4.80,4.80,0
+43.20,4.80,5.61,0.00,1.00,4.80,4.80,0
+48.00,4.80,5.57,0.00,1.00,4.80,4.80,0
+52.80,4.80,5.53,0.00,1.00,4.80,4.80,0
+57.60,4.80,5.49,0.00,1.00,4.80,4.80,0
+62.40,4.80,5.45,0.00,1.00,4.80,4.80,0
+67.20,4.80,5.41,0.00,1.00,9.60,4.80,0
+72.00,4.80,5.37,0.00,1.00,9.60,4.80,0
+76.80,4.80,5.33,0.00,1.00,14.40,4.80,0
+81.60,4.80,5.29,0.00,1.00,24.00,4.80,0
+86.40,4.80,5.25,0.00,1.00,43.20,4.80,0
+91.20,4.80,5.21,0.00,1.00,110.40,4.80,0
+96.00,4.80,5.17,0.00,1.00,148.80,4.80,0
+100.80,4.80,5.13,0.00,1.00,163.20,4.80,0
+105.60,4.80,5.09,0.00,1.00,168.00,4.80,0
+110.40,4.80,5.05,0.00,1.00,172.80,4.80,0
+115.20,4.80,5.01,0.00,1.00,172.80,4.80,0
+120.00,4.80,4.97,0.00,1.00,172.80,4.80,0
+124.80,4.80,4.93,0.00,1.00,172.80,4.80,0
+129.60,4.80,4.89,0.00,1.00,177.60,4.80,0
+134.40,4.80,4.85,0.00,1.00,177.60,4.80,0
+139.20,0.00,4.81,0.00,1.00,177.60,4.80,0
+144.00,0.00,4.77,0.00,1.00,177.60,4.80,0
+148.80,0.00,4.73,0.00,1.00,177.60,0.00,0
+153.60,0.00,4.69,0.00,1.00,177.60,0.00,0
+158.40,0.00,4.65,0.00,1.00,177.60,0.00,0
+163.20,0.00,4.61,0.00,1.00,177.60,0.00,0
+168.00,0.00,4.57,0.00,1.00,177.60,0.00,0
+172.80,0.00,4.53,0.00,1.00,177.60,0.00,0
+177.60,0.00,4.49,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,4.45,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,4.41,0.00,1.00,-177.60,-0.00,0
+-168.00,-0.00,4.37,0.00,1.00,-177.60,-0.00,0
+-163.20,-0.00,4.33,0.00,1.00,-177.60,-0.00,0
+-158.40,-0.00,4.29,0.00,1.00,-177.60,-0.00,0
+-153.60,-0.00,4.25,0.00,1.00,-177.60,-4.80,0
+-148.80,-0.00,4.21,0.00,1.00,-177.60,-4.80,0
+-144.00,-0.00,4.17,0.00,1.00,-177.60,-4.80,0
+-139.20,-0.00,4.13,0.00,1.00,-177.60,-4.80,0
+-134.40,-4.80,4.09,0.00,1.00,-177.60,-4.80,0
+-129.60,-4.80,4.05,0.00,1.00,-177.60,-4.80,0
+-124.80,-4.80,4.01,0.00,1.00,-172.80,-4.80,0
+-120.00,-4.80,3.97,0.00,1.00,-172.80,-4.80,0
+-115.20,-4.80,3.93,0.00,1.00,-172.80,-4.80,0
+-110.40,-4.80,3.89,0.00,1.00,-172.80,-4.80,0
+-105.60,-4.80,3.85,0.00,1.00,-168.00,-4.80,0
+-100.80,-4.80,3.81,0.00,1.00,-163.20,-4.80,0
+-96.00,-4.80,3.77,0.00,1.00,-148.80,-4.80,0
+-91.20,-4.80,3.73,0.00,1.00,-110.40,-4.80,0
+-86.40,-4.80,3.69,0.00,1.00,-43.20,-4.80,0
+-81.60,-4.80,3.65,0.00,1.00,-24.00,-4.80,0
+-76.80,-4.80,3.61,0.00,1.00,-14.40,-4.80,0
+-72.00,-4.80,3.57,0.00,1.00,-9.60,-4.80,0
+-67.20,-4.80,3.53,0.00,1.00,-9.60,-4.80,0
+-62.40,-4.80,3.49,0.00,1.00,-4.80,-4.80,0
+-57.60,-4.80,3.45,0.00,1.00,-4.80,-4.80,0
+-52.80,-4.80,3.41,0.00,1.00,-4.80,-4.80,0
+-48.00,-4.80,3.37,0.00,1.00,-4.80,-4.80,0
+-43.20,-4.80,3.33,0.00,1.00,-4.80,-4.80,0
+-38.40,-0.00,3.29,0.00,1.00,-4.80,-4.80,0
+-33.60,-0.00,3.25,0.00,1.00,-0.00,-0.00,0
+-28.80,-0.00,3.21,0.00,1.00,-0.00,-0.00,0
+-24.00,-0.00,3.17,0.00,1.00,-0.00,-0.00,0
+-19.20,-0.00,3.13,0.00,1.00,-0.00,-0.00,0
+-14.40,-0.00,3.09,0.00,1.00,-0.00,-0.00,0
+-9.60,-0.00,3.05,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,3.01,0.00,1.00,-0.00,0.00,0
+0.00,0.00,2.97,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,2.93,0.00,1.00,-0.00,0.00,0
+9.60,-0.00,2.89,0.00,1.00,-0.00,0.00,0
+14.40,-0.00,2.85,0.00,1.00,-0.00,0.00,0
+19.20,-0.00,2.81,0.00,1.00,-0.00,0.00,0
+24.00,-0.00,2.77,0.00,1.00,-0.00,0.00,0
+28.80,-0.00,2.73,0.00,1.00,-0.00,0.00,0
+33.60,-0.00,2.69,0.00,1.00,-0.00,0.00,0
+38.40,-0.00,2.65,0.00,1.00,-0.00,0.00,0
+43.20,-0.00,2.61,0.00,1.00,-0.00,0.00,0
+48.00,-0.00,2.57,0.00,1.00,-0.00,0.00,0
+52.80,-0.00,2.53,0.00,1.00,-0.00,0.00,0
+57.60,-0.00,2.49,0.00,1.00,-0.00,0.00,0
+62.40,-0.00,2.45,0.00,1.00,-0.00,0.00,0
+67.20,-0.00,2.41,0.00,1.00,-4.80,0.00,0
+72.00,-0.00,2.37,0.00,1.00,-4.80,0.00,0
+76.80,-0.00,2.33,0.00,1.00,-4.80,0.00,0
+81.60,-0.00,2.29,0.00,1.00,-9.60,0.00,0
+86.40,-0.00,2.25,0.00,1.00,-19.20,0.00,0
+91.20,-0.00,2.21,0.00,1.00,-134.40,0.00,0
+96.00,-0.00,2.17,0.00,1.00,-168.00,0.00,0
+100.80,-0.00,2.13,0.00,1.00,-172.80,0.00,0
+105.60,-0.00,2.09,0.00,1.00,-177.60,0.00,0
+110.40,-0.00,2.05,0.00,1.00,-177.60,0.00,0
+115.20,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+120.00,-0.00,1.96,0.00,1.00,-177.60,0.00,0
+124.80,-0.00,1.92,0.00,1.00,-177.60,0.00,0
+129.60,-0.00,1.88,0.00,1.00,-177.60,0.00,0
+134.40,-0.00,1.84,0.00,1.00,-177.60,0.00,0
+139.20,-0.00,1.80,0.00,1.00,-177.60,0.00,0
+144.00,-0.00,1.76,0.00,1.00,-177.60,0.00,0
+148.80,-0.00,1.72,0.00,1.00,-177.60,0.00,0
+153.60,-0.00,1.68,0.00,1.00,-177.60,0.00,0
+158.40,-0.00,1.64,0.00,1.00,-177.60,0.00,0
+163.20,-0.00,1.60,0.00,1.00,-177.60,0.00,0
+168.00,-0.00,1.56,0.00,1.00,-177.60,0.00,0
+172.80,-0.00,1.52,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,1.48,0.00,1.00,-177.60,0.00,0
+-177.60,0.00,1.44,0.00,1.00,177.60,0.00,0
+-172.80,0.00,1.40,0.00,1.00,177.60,0.00,0
+-168.00,0.00,1.36,0.00,1.00,177.60,0.00,0
+-163.20,0.00,1.32,0.00,1.00,177.60,0.00,0
+-158.40,0.00,1.28,0.00,1.00,177.60,0.00,0
+-153.60,0.00,1.24,0.00,1.00,177.60,0.00,0
+-148.80,0.00,1.20,0.00,1.00,177.60,0.00,0
+-144.00,0.00,1.16,0.00,1.00,177.60,0.00,0
+-139.20,0.00,1.12,0.00,1.00,177.60,0.00,0
+-134.40,0.00,1.08,0.00,1.00,177.60,0.00,0
+-129.60,0.00,1.04,0.00,1.00,177.60,0.00,0
+-124.80,0.00,1.00,0.00,1.00,177.60,0.00,0
+-120.00,0.00,0.96,0.00,1.00,177.60,0.00,0
+-115.20,0.00,0.92,0.00,1.00,177.60,0.00,0
+-110.40,0.00,0.88,0.00,1.00,177.60,0.00,0
+-105.60,0.00,0.84,0.00,1.00,177.60,0.00,0
+-100.80,0.00,0.80,0.00,1.00,172.80,0.00,0
+-96.00,0.00,0.76,0.00,1.00,168.00,0.00,0
+-91.20,0.00,0.72,0.00,1.00,134.40,0.00,0
+-86.40,0.00,0.68,0.00,1.00,19.20,0.00,0
+-81.60,0.00,0.64,0.00,1.00,9.60,0.00,0
+-76.80,0.00,0.60,0.00,1.00,4.80,0.00,0
+-72.00,0.00,0.56,0.00,1.00,4.80,0.00,0
+-67.20,0.00,0.52,0.00,1.00,4.80,0.00,0
+-62.40,0.00,0.48,0.00,1.00,0.00,0.00,0
+-57.60,0.00,0.44,0.00,1.00,0.00,0.00,0
+-52.80,0.00,0.40,0.00,1.00,0.00,0.00,0
+-48.00,0.00,0.36,0.00,1.00,0.00,0.00,0
+-43.20,0.00,0.32,0.00,1.00,0.00,0.00,0
+-38.40,0.00,0.28,0.00,1.00,0.00,0.00,0
+-33.60,0.00,0.24,0.00,1.00,0.00,0.00,0
+-28.80,0.00,0.20,0.00,1.00,0.00,0.00,0
+-24.00,0.00,0.16,0.00,1.00,0.00,0.00,0
+-19.20,0.00,0.12,0.00,1.00,0.00,0.00,0
+-14.40,0.00,0.08,0.00,1.00,0.00,0.00,0
+-9.60,0.00,0.04,0.00,1.00,0.00,0.00,0
+-4.80,0.00,0.00,0.00,1.00,0.00,0.00,0
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA1TC48c.met b/scripts/testv/stvOMASA_4ISM_1MASA1TC48c.met
new file mode 100644
index 0000000000000000000000000000000000000000..f2ce23bd2054140614b7d2ad88769d5d2db77990
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA1TC48c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6349efe3448d28979b80744bcdc29d57f1c025704939b42d7b913d7fc3f23ccc
+size 102300
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA1TC48c_ISM1.csv b/scripts/testv/stvOMASA_4ISM_1MASA1TC48c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA1TC48c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA1TC48c_ISM2.csv b/scripts/testv/stvOMASA_4ISM_1MASA1TC48c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA1TC48c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA1TC48c_ISM3.csv b/scripts/testv/stvOMASA_4ISM_1MASA1TC48c_ISM3.csv
new file mode 100644
index 0000000000000000000000000000000000000000..14eee9b693b536fa2fd22d2813d7f588b8930b06
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA1TC48c_ISM3.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0
+-177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0
+4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0
+-168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0
+14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0
+-163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0
+19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0
+-153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0
+28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0
+-148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0
+38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0
+-139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0
+48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0
+-124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0
+57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0
+-115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0
+72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0
+-100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0
+86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0
+-86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0
+100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0
+-76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0
+110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0
+-62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0
+124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0
+-52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0
+134.40,33.60,0.28,0.00,1.00,177.60,0.00,0
+-38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0
+144.00,28.80,0.30,0.00,1.00,177.60,0.00,0
+-33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0
+153.60,24.00,0.32,0.00,1.00,177.60,0.00,0
+-24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0
+158.40,19.20,0.34,0.00,1.00,177.60,0.00,0
+-14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0
+168.00,9.60,0.36,0.00,1.00,177.60,0.00,0
+-9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0
+172.80,4.80,0.38,0.00,1.00,177.60,0.00,0
+-0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0
+-177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0
+4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0
+14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0
+19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0
+-158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0
+28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0
+-148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0
+33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0
+-139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0
+43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0
+-129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0
+57.60,38.40,15.47,0.00,1.00,177.60,0.00,0
+-120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0
+67.20,43.20,15.44,0.00,1.00,177.60,0.00,0
+-105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0
+81.60,43.20,15.42,0.00,1.00,177.60,0.00,0
+-91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0
+96.00,43.20,15.40,0.00,1.00,0.00,0.00,0
+-76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0
+110.40,43.20,15.38,0.00,1.00,0.00,0.00,0
+-67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0
+120.00,38.40,15.36,0.00,1.00,0.00,0.00,0
+-52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0
+129.60,38.40,15.34,0.00,1.00,0.00,0.00,0
+-43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0
+144.00,33.60,15.32,0.00,1.00,0.00,0.00,0
+-33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0
+148.80,24.00,15.30,0.00,1.00,0.00,0.00,0
+-24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0
+158.40,19.20,15.27,0.00,1.00,0.00,0.00,0
+-19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0
+168.00,14.40,15.25,0.00,1.00,0.00,0.00,0
+-9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0
+172.80,4.80,15.23,0.00,1.00,0.00,0.00,0
+-4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0
+0.00,0.00,15.21,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0
+9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0
+14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0
+-163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0
+24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0
+-153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0
+28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0
+-144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0
+38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0
+-134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0
+48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0
+-124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0
+62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0
+-115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0
+72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0
+-100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0
+86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0
+-86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0
+96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0
+-76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0
+110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0
+-62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0
+120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0
+-52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0
+134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0
+-43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0
+144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0
+-33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0
+148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0
+-24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0
+158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0
+-19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0
+168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0
+-9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0
+172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0
+4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0
+14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0
+19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0
+-153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0
+28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0
+-148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0
+38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0
+-139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0
+48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0
+-124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0
+57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0
+-115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0
+72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0
+-105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0
+81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0
+-91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0
+96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0
+-76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0
+105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0
+-67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0
+120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0
+-57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0
+129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0
+-43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0
+139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0
+-33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0
+148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0
+-28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0
+158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0
+-19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0
+163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0
+-9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0
+172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0
+0.00,0.00,1.60,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0
+9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0
+14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0
+-158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0
+24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0
+-153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0
+33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0
+-144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0
+43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0
+-134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0
+52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0
+-124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0
+62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0
+-110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0
+72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0
+-100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0
+86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0
+-86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0
+96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0
+-76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0
+110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0
+-67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0
+120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0
+-52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0
+129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0
+-43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0
+139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0
+-33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0
+148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0
+-24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0
+158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0
+-19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0
+168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0
+172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0
+14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0
+-163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0
+24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0
+-153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0
+28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0
+-144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0
+38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0
+-134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0
+48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0
+-124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0
+62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0
+-115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0
+72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0
+-100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0
+81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0
+-91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0
+96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0
+-81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0
+105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0
+-67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0
+115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0
+-57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0
+129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0
+-48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0
+139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0
+-38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0
+148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0
+-28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0
+153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0
+-19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0
+163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0
+-9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0
+172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0
+0.00,0.00,13.61,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0
+9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0
+-168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0
+24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0
+-148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0
+33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0
+-139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0
+43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0
+-129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0
+52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0
+-120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0
+62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0
+-110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0
+76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0
+-100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0
+86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0
+-86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0
+96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0
+-76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0
+105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0
+-67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0
+120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0
+-57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0
+129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0
+-48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0
+139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0
+-38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0
+148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0
+158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0
+-19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0
+163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0
+172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0
+4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0
+14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0
+-163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0
+24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0
+-153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0
+33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0
+-144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0
+43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0
+-134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0
+52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0
+-124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0
+62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0
+-115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0
+72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0
+-100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0
+81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0
+-91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0
+96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0
+-81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0
+105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0
+-67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0
+115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0
+-57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0
+124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0
+-48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0
+134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0
+-38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0
+144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0
+-28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0
+153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0
+-19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0
+163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0
+-14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0
+172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0
+-4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0
+0.00,0.00,3.20,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0
+9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0
+19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0
+24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0
+-148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0
+33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0
+-139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0
+43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0
+-129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0
+52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0
+-120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0
+67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0
+-110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0
+76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0
+-100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0
+86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0
+-86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0
+96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0
+-76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0
+105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0
+-67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0
+115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0
+-57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0
+129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0
+-48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0
+139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0
+-38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0
+148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0
+153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0
+-19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0
+163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0
+172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0
+4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0
+14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0
+24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0
+-153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0
+33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0
+-144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0
+43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0
+-134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0
+52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0
+-124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0
+62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0
+-110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0
+72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0
+-100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0
+81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0
+-91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0
+96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0
+-81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0
+105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0
+-72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0
+115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0
+-57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0
+124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0
+-48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0
+134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0
+-38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0
+144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0
+-28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0
+153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0
+-24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0
+163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0
+-14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0
+172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,12.01,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0
+9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0
+-158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0
+28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0
+-148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0
+38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0
+-139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0
+48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0
+-129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0
+57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0
+-120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0
+67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0
+-110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0
+76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0
+-100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0
+86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0
+-86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0
+96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0
+-76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0
+105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0
+-67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0
+115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0
+-57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0
+124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0
+-48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0
+134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0
+-38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0
+144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0
+-28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0
+153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0
+-19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0
+163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0
+172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0
+4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0
+14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0
+24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0
+-148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0
+33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0
+-139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0
+43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0
+-129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0
+52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0
+-120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0
+62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0
+-110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0
+72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0
+-100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0
+81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0
+-91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0
+96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0
+-81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0
+105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0
+-72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0
+115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0
+-62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0
+124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0
+-52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0
+134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0
+-43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0
+144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0
+-33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0
+153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0
+-24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0
+163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0
+172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0
+0.00,0.00,4.81,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0
+9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0
+19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0
+28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0
+-148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0
+38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0
+-139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0
+48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0
+-129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0
+57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0
+-120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0
+67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0
+-110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0
+76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0
+-100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0
+86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0
+-86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0
+96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0
+-76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0
+105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0
+-67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0
+115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0
+-57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0
+124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0
+-48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0
+134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0
+-38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0
+144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0
+-28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0
+153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0
+-19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0
+163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0
+-9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0
+172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0
+4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0
+14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0
+24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0
+-148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0
+33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0
+-139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0
+43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0
+-129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0
+52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0
+-120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0
+62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0
+-110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0
+72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0
+-100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0
+81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0
+-91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0
+96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0
+-81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0
+105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0
+-72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0
+115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0
+-62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0
+124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0
+-52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0
+134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0
+-43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0
+144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0
+-33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0
+153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0
+-24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0
+163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0
+172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+0.00,0.00,10.40,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0
+9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0
+19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0
+28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0
+-148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0
+38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0
+-139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0
+48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0
+-129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0
+57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0
+-120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0
+67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0
+-110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0
+76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0
+-100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0
+86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0
+-86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0
+96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0
+-76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0
+105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0
+-67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0
+115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0
+-57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0
+124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0
+-48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0
+134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0
+-38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0
+144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0
+-28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0
+153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0
+163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0
+-9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0
+172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0
+4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0
+14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0
+24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0
+33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0
+-139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0
+43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0
+-129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0
+52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0
+-120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0
+62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0
+-110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0
+72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0
+-100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0
+81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0
+-91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0
+96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0
+-81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0
+105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0
+-72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0
+115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0
+-62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0
+124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0
+-52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0
+134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0
+-43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0
+144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0
+-33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0
+153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0
+-24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0
+163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0
+172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,6.41,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0
+9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0
+19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0
+-158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0
+28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0
+-148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0
+38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0
+-139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0
+48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0
+-129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0
+57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0
+-120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0
+67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0
+-110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0
+76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0
+-100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0
+86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0
+-86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0
+96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0
+-76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0
+105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0
+-67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0
+115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0
+-57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0
+124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0
+-48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0
+134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0
+-38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0
+144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0
+-28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0
+153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0
+163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0
+172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0
+4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0
+14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0
+-158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0
+24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0
+33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0
+-139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0
+43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0
+-129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0
+52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0
+-120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0
+62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0
+-110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0
+72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0
+-100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0
+81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0
+-91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0
+96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0
+-81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0
+105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0
+-72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0
+115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0
+-62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0
+124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0
+-52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0
+134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0
+-43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0
+144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0
+-33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0
+153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0
+-24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0
+163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0
+-14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0
+172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.80,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0
+9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0
+19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0
+-158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0
+28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0
+-148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0
+38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0
+-139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0
+48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0
+-129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0
+57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0
+-120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0
+67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0
+-110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0
+76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0
+-100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0
+86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0
+-86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0
+96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0
+-76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0
+105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0
+-67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0
+115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0
+-57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0
+124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0
+-48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0
+134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0
+-38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0
+144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0
+-28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0
+153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0
+-19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0
+163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0
+172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0
+-0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0
+4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0
+-168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0
+14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0
+-158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0
+24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0
+-148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0
+33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0
+-139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0
+43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0
+-129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0
+52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0
+-120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0
+62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0
+-110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0
+72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0
+-100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0
+81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0
+-91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0
+96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0
+-81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0
+105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0
+-72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0
+115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0
+-62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0
+124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0
+-52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0
+134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0
+-43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0
+144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0
+-33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0
+153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0
+-24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0
+163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0
+-14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0
+172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.01,0.00,1.00,0.00,0.00,0
+-177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0
+-168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0
+19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0
+-158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0
+28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0
+-148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0
+38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0
+-139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0
+48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0
+-129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0
+57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0
+-120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0
+67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0
+-110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0
+76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0
+-100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0
+86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0
+-86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0
+96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0
+-76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0
+105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0
+-67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0
+115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0
+-57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0
+124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0
+-48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0
+134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0
+-38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0
+144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0
+-28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0
+153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0
+-19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0
+163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0
+172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0
+14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0
+-158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0
+24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0
+-148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0
+33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0
+-139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0
+43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0
+-129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0
+52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0
+-120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0
+62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0
+-110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0
+72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0
+-100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0
+81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0
+-91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0
+96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0
+-81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0
+105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0
+-72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0
+115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0
+-62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0
+124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0
+-52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0
+134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0
+-43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0
+144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0
+-33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0
+153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0
+-24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0
+163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0
+-4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0
+0.00,0.00,7.20,0.00,1.00,0.00,0.00,0
+-177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0
+-168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0
+19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0
+38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0
+-139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0
+48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0
+-129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0
+57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0
+-120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0
+67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0
+-110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0
+76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0
+-100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0
+86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0
+-86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0
+96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0
+-76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0
+105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0
+-67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0
+115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0
+-57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0
+124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0
+-48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0
+134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0
+-38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0
+144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0
+-19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0
+163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0
+14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0
+-148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0
+33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0
+-139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0
+43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0
+-129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0
+52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0
+-120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0
+62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0
+72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0
+-100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0
+81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0
+-91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0
+96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0
+-81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0
+105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0
+-72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0
+115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0
+-62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0
+124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0
+-52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0
+134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0
+-43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0
+144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0
+-33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0
+153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0
+0.00,0.00,9.61,0.00,1.00,0.00,0.00,0
+-177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0
+48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0
+-129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0
+57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0
+-120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0
+67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0
+-110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0
+76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0
+-100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0
+86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0
+-86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0
+96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0
+-76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0
+105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0
+-67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0
+115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0
+-57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0
+124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0
+-48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0
+134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0
+163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0
+-9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0
+-148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0
+33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0
+-139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0
+43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0
+-129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0
+52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0
+-120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0
+62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0
+72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0
+-100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0
+81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0
+-91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0
+96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0
+-81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0
+105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0
+-72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0
+115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0
+-62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0
+124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0
+-52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0
+134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0
+-43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0
+144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0
+-33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0
+153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0
+-14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0
+172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0
+0.00,0.00,5.60,0.00,1.00,0.00,0.00,0
+-177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0
+-158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0
+28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0
+-148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0
+48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0
+-129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0
+57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0
+-120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0
+67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0
+-110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0
+76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0
+-100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0
+86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0
+-86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0
+96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0
+-76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0
+105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0
+-67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0
+115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0
+-57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0
+124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0
+-48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0
+134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0
+-28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0
+153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0
+-158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0
+-148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0
+33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0
+-139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0
+43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0
+-129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0
+52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0
+-120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0
+62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0
+-110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0
+72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0
+-100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0
+81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0
+-91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0
+96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0
+-81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0
+105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0
+-72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0
+115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0
+-62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0
+124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0
+-52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0
+134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0
+-43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0
+144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0
+-33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0
+153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0
+0.00,0.00,11.21,0.00,1.00,0.00,0.00,0
+-177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0
+28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0
+-148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0
+38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0
+-139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0
+48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0
+57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0
+-120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0
+67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0
+-110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0
+76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0
+-100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0
+86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0
+-86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0
+96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0
+-76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0
+105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0
+-67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0
+115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0
+-57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0
+124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0
+-48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0
+134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0
+-38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0
+144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0
+-28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0
+153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0
+-148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0
+-139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0
+43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0
+-129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0
+52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0
+-120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0
+62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0
+-110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0
+72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0
+-100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0
+81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0
+-91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0
+96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0
+-81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0
+105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0
+-72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0
+115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0
+-62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0
+124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0
+-52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0
+134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0
+-43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0
+-33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0
+153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0
+-24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0
+163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,3.99,0.00,1.00,0.00,0.00,0
+-177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0
+19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0
+-148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0
+33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0
+43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0
+52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0
+-120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0
+62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0
+-110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0
+76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0
+-100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0
+86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0
+-86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0
+96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0
+-76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0
+105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0
+-67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0
+120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0
+-57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0
+-48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0
+139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0
+148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0
+158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0
+163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0
+43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0
+-134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0
+-124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0
+62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0
+-110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0
+72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0
+-100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0
+81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0
+-91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0
+96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0
+-81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0
+105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0
+-72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0
+115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0
+-57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0
+124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0
+-48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0
+134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0
+-38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0
+-28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0
+-24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,12.82,0.00,1.00,0.00,0.00,0
+-177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0
+-148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0
+33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0
+-129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0
+-120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0
+62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0
+-110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0
+76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0
+-100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0
+86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0
+-86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0
+96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0
+-76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0
+110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0
+-67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0
+120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0
+-57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0
+-48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0
+-163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0
+33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0
+43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0
+-134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0
+62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0
+-115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0
+72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0
+-100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0
+81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0
+-91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0
+96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0
+-81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0
+105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0
+-67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0
+115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0
+-57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0
+124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0
+-48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0
+134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0
+-38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0
+144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0
+-14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,2.39,0.00,1.00,0.00,0.00,0
+-177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0
+33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0
+-144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0
+-134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0
+62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0
+-110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0
+72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0
+-100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0
+86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0
+-86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0
+96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0
+-76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0
+110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0
+-67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0
+120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0
+-52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0
+129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0
+-19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0
+28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0
+-144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0
+38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0
+-134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0
+48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0
+57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0
+-115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0
+72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0
+-105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0
+81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0
+-91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0
+96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0
+-81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0
+105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0
+-67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0
+120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0
+-57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0
+129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0
+-48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0
+139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0
+-38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0
+158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0
+0.00,0.00,14.42,0.00,1.00,0.00,0.00,0
+-177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0
+-163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0
+24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0
+28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0
+-144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0
+38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0
+-134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0
+48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0
+62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0
+-115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0
+72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0
+86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0
+-86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0
+96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0
+-76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0
+110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0
+-62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0
+120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0
+-52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0
+134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0
+158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0
+-148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0
+38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0
+-139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0
+48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0
+-129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0
+-115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0
+67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0
+-105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0
+81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0
+-91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0
+96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0
+105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0
+-67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0
+120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0
+-52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0
+129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0
+139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0
+163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0
+0.00,0.00,0.79,0.00,1.00,0.00,0.00,0
+-177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0
+4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0
+-163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0
+19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0
+-153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0
+28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0
+-148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0
+38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0
+-139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0
+48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0
+-124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0
+57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0
+-115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0
+72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0
+86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0
+-86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0
+100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0
+-76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0
+110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0
+-62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0
+124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0
+-48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0
+134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0
+-38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0
+-28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0
+-24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0
+163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0
+168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0
+9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0
+-158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0
+-148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0
+33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0
+-139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0
+43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0
+-129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0
+-120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0
+67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0
+-105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0
+81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0
+-91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0
+96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0
+110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0
+-67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0
+120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0
+-52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0
+134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0
+144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0
+153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0
+-24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0
+-19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0
+168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA1TC48c_ISM4.csv b/scripts/testv/stvOMASA_4ISM_1MASA1TC48c_ISM4.csv
new file mode 100644
index 0000000000000000000000000000000000000000..8a14c3413ddd2dd47415bf6de3e19631f65f8f6c
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA1TC48c_ISM4.csv
@@ -0,0 +1,1500 @@
+-0.00,0.00,0.00,0.00,1.00,0.00,4.80,0
+-0.00,4.80,0.06,0.00,1.00,4.80,9.60,0
+-0.00,9.60,0.13,0.00,1.00,9.60,14.40,0
+-0.00,14.40,0.19,0.00,1.00,14.40,19.20,0
+-0.00,19.20,0.26,0.00,1.00,19.20,24.00,0
+-0.00,24.00,0.32,0.00,1.00,24.00,28.80,0
+-0.00,28.80,0.39,0.00,1.00,28.80,33.60,0
+-0.00,33.60,0.45,0.00,1.00,33.60,38.40,0
+-0.00,38.40,0.51,0.00,1.00,38.40,43.20,0
+-0.00,43.20,0.58,0.00,1.00,43.20,48.00,0
+-0.00,48.00,0.64,0.00,1.00,48.00,52.80,0
+-0.00,52.80,0.71,0.00,1.00,52.80,57.60,0
+-0.00,57.60,0.77,0.00,1.00,57.60,62.40,0
+-0.00,62.40,0.84,0.00,1.00,62.40,67.20,0
+-0.00,67.20,0.90,0.00,1.00,67.20,72.00,0
+-0.00,72.00,0.96,0.00,1.00,72.00,76.80,0
+-0.00,76.80,1.03,0.00,1.00,76.80,81.60,0
+-0.00,81.60,1.09,0.00,1.00,81.60,86.40,0
+-0.00,86.40,1.16,0.00,1.00,86.40,86.40,0
+-177.60,89.20,1.22,0.00,1.00,91.20,81.60,0
+-177.60,86.40,1.29,0.00,1.00,96.00,76.80,0
+-177.60,81.60,1.35,0.00,1.00,100.80,72.00,0
+-177.60,76.80,1.41,0.00,1.00,105.60,67.20,0
+-177.60,72.00,1.48,0.00,1.00,110.40,62.40,0
+-177.60,67.20,1.54,0.00,1.00,115.20,57.60,0
+177.60,62.40,1.61,0.00,1.00,120.00,52.80,0
+177.60,57.60,1.67,0.00,1.00,124.80,48.00,0
+177.60,52.80,1.73,0.00,1.00,129.60,43.20,0
+177.60,48.00,1.80,0.00,1.00,134.40,38.40,0
+177.60,43.20,1.86,0.00,1.00,139.20,33.60,0
+177.60,38.40,1.93,0.00,1.00,144.00,28.80,0
+177.60,33.60,1.99,0.00,1.00,148.80,24.00,0
+177.60,28.80,2.06,0.00,1.00,153.60,19.20,0
+177.60,24.00,2.12,0.00,1.00,158.40,14.40,0
+177.60,19.20,2.18,0.00,1.00,163.20,9.60,0
+177.60,14.40,2.25,0.00,1.00,168.00,4.80,0
+177.60,9.60,2.31,0.00,1.00,172.80,0.00,0
+177.60,4.80,2.38,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.44,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,2.51,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,2.57,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,2.63,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,2.70,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,2.76,0.00,1.00,-153.60,-28.80,0
+-177.60,-28.80,2.83,0.00,1.00,-148.80,-33.60,0
+-177.60,-33.60,2.89,0.00,1.00,-144.00,-38.40,0
+-177.60,-38.40,2.96,0.00,1.00,-139.20,-43.20,0
+-177.60,-48.00,3.02,0.00,1.00,-134.40,-48.00,0
+-177.60,-48.00,3.08,0.00,1.00,-129.60,-52.80,0
+-177.60,-52.80,3.15,0.00,1.00,-124.80,-57.60,0
+-177.60,-57.60,3.21,0.00,1.00,-120.00,-62.40,0
+177.60,-62.40,3.28,0.00,1.00,-115.20,-67.20,0
+177.60,-67.20,3.34,0.00,1.00,-110.40,-72.00,0
+177.60,-76.80,3.41,0.00,1.00,-105.60,-76.80,0
+177.60,-76.80,3.47,0.00,1.00,-100.80,-81.60,0
+177.60,-86.40,3.53,0.00,1.00,-96.00,-86.40,0
+177.60,-89.20,3.60,0.00,1.00,-91.20,-86.40,0
+0.00,-86.40,3.66,0.00,1.00,-86.40,-81.60,0
+0.00,-81.60,3.73,0.00,1.00,-81.60,-76.80,0
+0.00,-76.80,3.79,0.00,1.00,-76.80,-72.00,0
+0.00,-72.00,3.86,0.00,1.00,-72.00,-67.20,0
+0.00,-67.20,3.92,0.00,1.00,-67.20,-62.40,0
+0.00,-62.40,3.98,0.00,1.00,-62.40,-57.60,0
+0.00,-57.60,4.05,0.00,1.00,-57.60,-52.80,0
+0.00,-52.80,4.11,0.00,1.00,-52.80,-48.00,0
+0.00,-48.00,4.18,0.00,1.00,-48.00,-43.20,0
+0.00,-43.20,4.24,0.00,1.00,-43.20,-38.40,0
+0.00,-38.40,4.31,0.00,1.00,-38.40,-33.60,0
+0.00,-33.60,4.37,0.00,1.00,-33.60,-28.80,0
+0.00,-28.80,4.43,0.00,1.00,-28.80,-24.00,0
+0.00,-24.00,4.50,0.00,1.00,-24.00,-19.20,0
+0.00,-19.20,4.56,0.00,1.00,-19.20,-14.40,0
+0.00,-14.40,4.63,0.00,1.00,-14.40,-9.60,0
+0.00,-9.60,4.69,0.00,1.00,-9.60,-4.80,0
+0.00,-4.80,4.76,0.00,1.00,-4.80,0.00,0
+0.00,0.00,4.82,0.00,1.00,0.00,4.80,0
+0.00,4.80,4.88,0.00,1.00,4.80,9.60,0
+0.00,9.60,4.95,0.00,1.00,9.60,14.40,0
+0.00,14.40,5.01,0.00,1.00,14.40,19.20,0
+0.00,19.20,5.08,0.00,1.00,19.20,24.00,0
+0.00,24.00,5.14,0.00,1.00,24.00,28.80,0
+4.80,28.80,5.20,0.00,1.00,28.80,33.60,0
+4.80,33.60,5.27,0.00,1.00,33.60,38.40,0
+4.80,38.40,5.33,0.00,1.00,38.40,43.20,0
+4.80,43.20,5.40,0.00,1.00,43.20,48.00,0
+4.80,48.00,5.46,0.00,1.00,48.00,52.80,0
+4.80,52.80,5.53,0.00,1.00,52.80,57.60,0
+9.60,57.60,5.59,0.00,1.00,57.60,62.40,0
+9.60,62.40,5.65,0.00,1.00,62.40,67.20,0
+9.60,67.20,5.72,0.00,1.00,67.20,72.00,0
+14.40,72.00,5.78,0.00,1.00,72.00,76.80,0
+19.20,76.80,5.85,0.00,1.00,76.80,81.60,0
+28.80,81.60,5.91,0.00,1.00,81.60,86.40,0
+52.80,86.40,5.98,0.00,1.00,86.40,86.40,0
+105.60,86.40,6.04,0.00,1.00,91.20,81.60,0
+139.20,81.60,6.10,0.00,1.00,96.00,76.80,0
+158.40,76.80,6.17,0.00,1.00,100.80,72.00,0
+163.20,72.00,6.23,0.00,1.00,105.60,67.20,0
+168.00,67.20,6.30,0.00,1.00,110.40,62.40,0
+168.00,62.40,6.36,0.00,1.00,115.20,57.60,0
+172.80,57.60,6.43,0.00,1.00,120.00,52.80,0
+172.80,52.80,6.49,0.00,1.00,124.80,48.00,0
+172.80,48.00,6.55,0.00,1.00,129.60,43.20,0
+172.80,43.20,6.62,0.00,1.00,134.40,38.40,0
+177.60,38.40,6.68,0.00,1.00,139.20,33.60,0
+177.60,33.60,6.75,0.00,1.00,144.00,28.80,0
+177.60,28.80,6.81,0.00,1.00,148.80,24.00,0
+177.60,24.00,6.88,0.00,1.00,153.60,19.20,0
+177.60,19.20,6.94,0.00,1.00,158.40,14.40,0
+177.60,14.40,7.00,0.00,1.00,163.20,9.60,0
+177.60,9.60,7.07,0.00,1.00,168.00,4.80,0
+177.60,4.80,7.13,0.00,1.00,172.80,0.00,0
+177.60,0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,7.26,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,7.33,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,7.39,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,7.45,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,7.52,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,7.58,0.00,1.00,-153.60,-28.80,0
+-177.60,-28.80,7.65,0.00,1.00,-148.80,-33.60,0
+-177.60,-33.60,7.71,0.00,1.00,-144.00,-38.40,0
+-177.60,-38.40,7.78,0.00,1.00,-139.20,-43.20,0
+-172.80,-43.20,7.84,0.00,1.00,-134.40,-48.00,0
+-172.80,-48.00,7.90,0.00,1.00,-129.60,-52.80,0
+-172.80,-52.80,7.97,0.00,1.00,-124.80,-57.60,0
+-172.80,-57.60,8.03,0.00,1.00,-120.00,-62.40,0
+-168.00,-62.40,8.10,0.00,1.00,-115.20,-67.20,0
+-168.00,-67.20,8.16,0.00,1.00,-110.40,-72.00,0
+-163.20,-72.00,8.22,0.00,1.00,-105.60,-76.80,0
+-158.40,-76.80,8.29,0.00,1.00,-100.80,-81.60,0
+-139.20,-81.60,8.35,0.00,1.00,-96.00,-86.40,0
+-105.60,-86.40,8.42,0.00,1.00,-91.20,-86.40,0
+-52.80,-86.40,8.48,0.00,1.00,-86.40,-81.60,0
+-28.80,-81.60,8.55,0.00,1.00,-81.60,-76.80,0
+-19.20,-76.80,8.61,0.00,1.00,-76.80,-72.00,0
+-14.40,-72.00,8.67,0.00,1.00,-72.00,-67.20,0
+-9.60,-67.20,8.74,0.00,1.00,-67.20,-62.40,0
+-9.60,-62.40,8.80,0.00,1.00,-62.40,-57.60,0
+-9.60,-57.60,8.87,0.00,1.00,-57.60,-52.80,0
+-4.80,-52.80,8.93,0.00,1.00,-52.80,-48.00,0
+-4.80,-48.00,9.00,0.00,1.00,-48.00,-43.20,0
+-4.80,-43.20,9.06,0.00,1.00,-43.20,-38.40,0
+-4.80,-38.40,9.12,0.00,1.00,-38.40,-33.60,0
+-4.80,-33.60,9.19,0.00,1.00,-33.60,-28.80,0
+-4.80,-28.80,9.25,0.00,1.00,-28.80,-24.00,0
+-0.00,-24.00,9.32,0.00,1.00,-24.00,-19.20,0
+-0.00,-19.20,9.38,0.00,1.00,-19.20,-14.40,0
+-0.00,-14.40,9.45,0.00,1.00,-14.40,-9.60,0
+-0.00,-9.60,9.51,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,9.57,0.00,1.00,-4.80,0.00,0
+0.00,0.00,9.64,0.00,1.00,0.00,4.80,0
+0.00,4.80,9.70,0.00,1.00,4.80,9.60,0
+0.00,9.60,9.77,0.00,1.00,9.60,14.40,0
+4.80,14.40,9.83,0.00,1.00,14.40,19.20,0
+4.80,19.20,9.90,0.00,1.00,19.20,24.00,0
+4.80,24.00,9.96,0.00,1.00,24.00,28.80,0
+4.80,28.80,10.02,0.00,1.00,28.80,33.60,0
+4.80,33.60,10.09,0.00,1.00,33.60,38.40,0
+9.60,38.40,10.15,0.00,1.00,38.40,43.20,0
+9.60,43.20,10.22,0.00,1.00,43.20,48.00,0
+9.60,48.00,10.28,0.00,1.00,48.00,52.80,0
+14.40,52.80,10.35,0.00,1.00,52.80,57.60,0
+14.40,57.60,10.41,0.00,1.00,57.60,62.40,0
+19.20,62.40,10.47,0.00,1.00,62.40,67.20,0
+24.00,67.20,10.54,0.00,1.00,67.20,72.00,0
+28.80,72.00,10.60,0.00,1.00,72.00,72.00,0
+33.60,72.00,10.67,0.00,1.00,76.80,76.80,0
+48.00,76.80,10.73,0.00,1.00,81.60,81.60,0
+67.20,81.60,10.80,0.00,1.00,86.40,81.60,0
+96.00,81.60,10.86,0.00,1.00,91.20,81.60,0
+120.00,76.80,10.92,0.00,1.00,96.00,76.80,0
+139.20,76.80,10.99,0.00,1.00,100.80,72.00,0
+148.80,72.00,11.05,0.00,1.00,105.60,67.20,0
+153.60,67.20,11.12,0.00,1.00,110.40,62.40,0
+158.40,62.40,11.18,0.00,1.00,115.20,57.60,0
+163.20,57.60,11.24,0.00,1.00,120.00,52.80,0
+168.00,52.80,11.31,0.00,1.00,124.80,48.00,0
+168.00,48.00,11.37,0.00,1.00,129.60,43.20,0
+168.00,43.20,11.44,0.00,1.00,134.40,38.40,0
+172.80,38.40,11.50,0.00,1.00,139.20,33.60,0
+172.80,33.60,11.57,0.00,1.00,144.00,28.80,0
+172.80,28.80,11.63,0.00,1.00,148.80,24.00,0
+177.60,24.00,11.69,0.00,1.00,153.60,19.20,0
+177.60,19.20,11.76,0.00,1.00,158.40,14.40,0
+177.60,14.40,11.82,0.00,1.00,163.20,9.60,0
+177.60,9.60,11.89,0.00,1.00,168.00,4.80,0
+177.60,4.80,11.95,0.00,1.00,172.80,0.00,0
+177.60,0.00,12.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,12.08,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,12.14,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,12.21,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,12.27,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,12.34,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,12.40,0.00,1.00,-153.60,-28.80,0
+-172.80,-28.80,12.47,0.00,1.00,-148.80,-33.60,0
+-172.80,-33.60,12.53,0.00,1.00,-144.00,-38.40,0
+-172.80,-38.40,12.59,0.00,1.00,-139.20,-43.20,0
+-168.00,-43.20,12.66,0.00,1.00,-134.40,-48.00,0
+-168.00,-48.00,12.72,0.00,1.00,-129.60,-52.80,0
+-168.00,-52.80,12.79,0.00,1.00,-124.80,-57.60,0
+-163.20,-57.60,12.85,0.00,1.00,-120.00,-62.40,0
+-158.40,-62.40,12.92,0.00,1.00,-115.20,-67.20,0
+-153.60,-67.20,12.98,0.00,1.00,-110.40,-72.00,0
+-148.80,-72.00,13.04,0.00,1.00,-105.60,-76.80,0
+-139.20,-76.80,13.11,0.00,1.00,-100.80,-81.60,0
+-120.00,-76.80,13.17,0.00,1.00,-96.00,-81.60,0
+-96.00,-81.60,13.24,0.00,1.00,-91.20,-81.60,0
+-67.20,-81.60,13.30,0.00,1.00,-86.40,-76.80,0
+-48.00,-76.80,13.37,0.00,1.00,-81.60,-72.00,0
+-33.60,-72.00,13.43,0.00,1.00,-76.80,-72.00,0
+-28.80,-72.00,13.49,0.00,1.00,-72.00,-67.20,0
+-24.00,-67.20,13.56,0.00,1.00,-67.20,-62.40,0
+-19.20,-62.40,13.62,0.00,1.00,-62.40,-57.60,0
+-14.40,-57.60,13.69,0.00,1.00,-57.60,-52.80,0
+-14.40,-52.80,13.75,0.00,1.00,-52.80,-48.00,0
+-9.60,-48.00,13.82,0.00,1.00,-48.00,-43.20,0
+-9.60,-43.20,13.88,0.00,1.00,-43.20,-38.40,0
+-9.60,-38.40,13.94,0.00,1.00,-38.40,-33.60,0
+-4.80,-33.60,14.01,0.00,1.00,-33.60,-28.80,0
+-4.80,-28.80,14.07,0.00,1.00,-28.80,-24.00,0
+-4.80,-24.00,14.14,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,14.20,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,14.27,0.00,1.00,-14.40,-9.60,0
+-0.00,-9.60,14.33,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,14.39,0.00,1.00,-4.80,0.00,0
+0.00,0.00,14.46,0.00,1.00,0.00,4.80,0
+0.00,4.80,14.52,0.00,1.00,4.80,9.60,0
+4.80,9.60,14.59,0.00,1.00,9.60,14.40,0
+4.80,14.40,14.65,0.00,1.00,14.40,19.20,0
+4.80,19.20,14.71,0.00,1.00,19.20,24.00,0
+4.80,24.00,14.78,0.00,1.00,24.00,28.80,0
+9.60,28.80,14.84,0.00,1.00,28.80,33.60,0
+9.60,33.60,14.91,0.00,1.00,33.60,38.40,0
+9.60,38.40,14.97,0.00,1.00,38.40,43.20,0
+14.40,43.20,15.04,0.00,1.00,43.20,48.00,0
+14.40,48.00,15.10,0.00,1.00,48.00,52.80,0
+19.20,52.80,15.16,0.00,1.00,52.80,57.60,0
+19.20,52.80,15.23,0.00,1.00,57.60,57.60,0
+24.00,57.60,15.29,0.00,1.00,62.40,62.40,0
+28.80,62.40,15.36,0.00,1.00,67.20,67.20,0
+38.40,67.20,15.42,0.00,1.00,72.00,72.00,0
+48.00,72.00,15.49,0.00,1.00,76.80,72.00,0
+57.60,72.00,15.55,0.00,1.00,81.60,76.80,0
+76.80,76.80,15.61,0.00,1.00,86.40,76.80,0
+96.00,76.80,15.68,0.00,1.00,91.20,76.80,0
+115.20,76.80,15.74,0.00,1.00,96.00,72.00,0
+129.60,72.00,15.81,0.00,1.00,100.80,72.00,0
+139.20,67.20,15.87,0.00,1.00,105.60,67.20,0
+144.00,67.20,15.94,0.00,1.00,110.40,62.40,0
+153.60,62.40,16.00,0.00,1.00,115.20,57.60,0
+158.40,57.60,16.00,0.00,1.00,120.00,52.80,0
+158.40,52.80,15.94,0.00,1.00,124.80,48.00,0
+163.20,48.00,15.87,0.00,1.00,129.60,43.20,0
+168.00,43.20,15.81,0.00,1.00,134.40,38.40,0
+168.00,38.40,15.74,0.00,1.00,139.20,33.60,0
+168.00,33.60,15.68,0.00,1.00,144.00,28.80,0
+172.80,28.80,15.61,0.00,1.00,148.80,24.00,0
+172.80,24.00,15.55,0.00,1.00,153.60,19.20,0
+172.80,19.20,15.49,0.00,1.00,158.40,14.40,0
+177.60,14.40,15.42,0.00,1.00,163.20,9.60,0
+177.60,9.60,15.36,0.00,1.00,168.00,4.80,0
+177.60,4.80,15.29,0.00,1.00,172.80,0.00,0
+177.60,0.00,15.23,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,15.16,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,15.10,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,15.04,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,14.97,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,14.91,0.00,1.00,-158.40,-24.00,0
+-172.80,-24.00,14.84,0.00,1.00,-153.60,-28.80,0
+-172.80,-28.80,14.78,0.00,1.00,-148.80,-33.60,0
+-168.00,-33.60,14.71,0.00,1.00,-144.00,-38.40,0
+-168.00,-38.40,14.65,0.00,1.00,-139.20,-43.20,0
+-168.00,-43.20,14.59,0.00,1.00,-134.40,-48.00,0
+-163.20,-48.00,14.52,0.00,1.00,-129.60,-52.80,0
+-158.40,-52.80,14.46,0.00,1.00,-124.80,-57.60,0
+-158.40,-57.60,14.39,0.00,1.00,-120.00,-62.40,0
+-153.60,-62.40,14.33,0.00,1.00,-115.20,-67.20,0
+-144.00,-67.20,14.27,0.00,1.00,-110.40,-72.00,0
+-139.20,-67.20,14.20,0.00,1.00,-105.60,-72.00,0
+-129.60,-72.00,14.14,0.00,1.00,-100.80,-76.80,0
+-115.20,-76.80,14.07,0.00,1.00,-96.00,-76.80,0
+-96.00,-76.80,14.01,0.00,1.00,-91.20,-76.80,0
+-76.80,-76.80,13.94,0.00,1.00,-86.40,-72.00,0
+-57.60,-72.00,13.88,0.00,1.00,-81.60,-72.00,0
+-48.00,-72.00,13.82,0.00,1.00,-76.80,-67.20,0
+-38.40,-67.20,13.75,0.00,1.00,-72.00,-62.40,0
+-28.80,-62.40,13.69,0.00,1.00,-67.20,-57.60,0
+-24.00,-57.60,13.62,0.00,1.00,-62.40,-57.60,0
+-19.20,-52.80,13.56,0.00,1.00,-57.60,-52.80,0
+-19.20,-52.80,13.49,0.00,1.00,-52.80,-48.00,0
+-14.40,-48.00,13.43,0.00,1.00,-48.00,-43.20,0
+-14.40,-43.20,13.37,0.00,1.00,-43.20,-38.40,0
+-9.60,-38.40,13.30,0.00,1.00,-38.40,-33.60,0
+-9.60,-33.60,13.24,0.00,1.00,-33.60,-28.80,0
+-9.60,-28.80,13.17,0.00,1.00,-28.80,-24.00,0
+-4.80,-24.00,13.11,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,13.04,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,12.98,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,12.92,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,12.85,0.00,1.00,-4.80,0.00,0
+0.00,0.00,12.79,0.00,1.00,0.00,4.80,0
+0.00,4.80,12.72,0.00,1.00,4.80,9.60,0
+4.80,9.60,12.66,0.00,1.00,9.60,14.40,0
+4.80,14.40,12.59,0.00,1.00,14.40,19.20,0
+4.80,19.20,12.53,0.00,1.00,19.20,24.00,0
+9.60,24.00,12.47,0.00,1.00,24.00,28.80,0
+9.60,28.80,12.40,0.00,1.00,28.80,33.60,0
+14.40,33.60,12.34,0.00,1.00,33.60,38.40,0
+14.40,33.60,12.27,0.00,1.00,38.40,38.40,0
+19.20,38.40,12.21,0.00,1.00,43.20,43.20,0
+19.20,43.20,12.14,0.00,1.00,48.00,48.00,0
+24.00,48.00,12.08,0.00,1.00,52.80,52.80,0
+28.80,52.80,12.02,0.00,1.00,57.60,57.60,0
+33.60,57.60,11.95,0.00,1.00,62.40,62.40,0
+38.40,62.40,11.89,0.00,1.00,67.20,62.40,0
+43.20,62.40,11.82,0.00,1.00,72.00,67.20,0
+52.80,67.20,11.76,0.00,1.00,76.80,72.00,0
+67.20,67.20,11.69,0.00,1.00,81.60,72.00,0
+76.80,72.00,11.63,0.00,1.00,86.40,72.00,0
+96.00,72.00,11.57,0.00,1.00,91.20,72.00,0
+105.60,72.00,11.50,0.00,1.00,96.00,67.20,0
+120.00,67.20,11.44,0.00,1.00,100.80,67.20,0
+129.60,67.20,11.37,0.00,1.00,105.60,62.40,0
+139.20,62.40,11.31,0.00,1.00,110.40,57.60,0
+144.00,57.60,11.24,0.00,1.00,115.20,57.60,0
+148.80,52.80,11.18,0.00,1.00,120.00,52.80,0
+153.60,52.80,11.12,0.00,1.00,124.80,48.00,0
+158.40,48.00,11.05,0.00,1.00,129.60,43.20,0
+163.20,43.20,10.99,0.00,1.00,134.40,38.40,0
+163.20,38.40,10.92,0.00,1.00,139.20,33.60,0
+168.00,33.60,10.86,0.00,1.00,144.00,28.80,0
+168.00,28.80,10.80,0.00,1.00,148.80,24.00,0
+172.80,24.00,10.73,0.00,1.00,153.60,19.20,0
+172.80,19.20,10.67,0.00,1.00,158.40,14.40,0
+172.80,14.40,10.60,0.00,1.00,163.20,9.60,0
+177.60,9.60,10.54,0.00,1.00,168.00,4.80,0
+177.60,4.80,10.47,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.35,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,10.28,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,10.22,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,10.15,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,10.09,0.00,1.00,-158.40,-24.00,0
+-172.80,-24.00,10.02,0.00,1.00,-153.60,-28.80,0
+-168.00,-28.80,9.96,0.00,1.00,-148.80,-33.60,0
+-168.00,-33.60,9.90,0.00,1.00,-144.00,-38.40,0
+-163.20,-38.40,9.83,0.00,1.00,-139.20,-43.20,0
+-163.20,-43.20,9.77,0.00,1.00,-134.40,-48.00,0
+-158.40,-48.00,9.70,0.00,1.00,-129.60,-52.80,0
+-153.60,-52.80,9.64,0.00,1.00,-124.80,-57.60,0
+-148.80,-52.80,9.57,0.00,1.00,-120.00,-57.60,0
+-144.00,-57.60,9.51,0.00,1.00,-115.20,-62.40,0
+-139.20,-62.40,9.45,0.00,1.00,-110.40,-67.20,0
+-129.60,-67.20,9.38,0.00,1.00,-105.60,-67.20,0
+-120.00,-67.20,9.32,0.00,1.00,-100.80,-72.00,0
+-105.60,-72.00,9.25,0.00,1.00,-96.00,-72.00,0
+-96.00,-72.00,9.19,0.00,1.00,-91.20,-72.00,0
+-76.80,-72.00,9.12,0.00,1.00,-86.40,-72.00,0
+-67.20,-67.20,9.06,0.00,1.00,-81.60,-67.20,0
+-52.80,-67.20,9.00,0.00,1.00,-76.80,-62.40,0
+-43.20,-62.40,8.93,0.00,1.00,-72.00,-62.40,0
+-38.40,-62.40,8.87,0.00,1.00,-67.20,-57.60,0
+-33.60,-57.60,8.80,0.00,1.00,-62.40,-52.80,0
+-28.80,-52.80,8.74,0.00,1.00,-57.60,-48.00,0
+-24.00,-48.00,8.67,0.00,1.00,-52.80,-43.20,0
+-19.20,-43.20,8.61,0.00,1.00,-48.00,-38.40,0
+-19.20,-38.40,8.55,0.00,1.00,-43.20,-38.40,0
+-14.40,-33.60,8.48,0.00,1.00,-38.40,-33.60,0
+-14.40,-33.60,8.42,0.00,1.00,-33.60,-28.80,0
+-9.60,-28.80,8.35,0.00,1.00,-28.80,-24.00,0
+-9.60,-24.00,8.29,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,8.22,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,8.16,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,8.10,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,8.03,0.00,1.00,-4.80,0.00,0
+0.00,0.00,7.97,0.00,1.00,0.00,4.80,0
+0.00,4.80,7.90,0.00,1.00,4.80,9.60,0
+4.80,9.60,7.84,0.00,1.00,9.60,14.40,0
+4.80,14.40,7.78,0.00,1.00,14.40,19.20,0
+9.60,19.20,7.71,0.00,1.00,19.20,24.00,0
+9.60,24.00,7.65,0.00,1.00,24.00,24.00,0
+14.40,24.00,7.58,0.00,1.00,28.80,28.80,0
+14.40,28.80,7.52,0.00,1.00,33.60,33.60,0
+19.20,33.60,7.45,0.00,1.00,33.60,38.40,0
+19.20,38.40,7.39,0.00,1.00,38.40,43.20,0
+24.00,43.20,7.33,0.00,1.00,43.20,48.00,0
+28.80,48.00,7.26,0.00,1.00,48.00,52.80,0
+33.60,52.80,7.20,0.00,1.00,57.60,52.80,0
+38.40,52.80,7.13,0.00,1.00,62.40,57.60,0
+43.20,57.60,7.07,0.00,1.00,67.20,62.40,0
+52.80,62.40,7.00,0.00,1.00,72.00,62.40,0
+62.40,62.40,6.94,0.00,1.00,76.80,67.20,0
+72.00,62.40,6.88,0.00,1.00,81.60,67.20,0
+81.60,67.20,6.81,0.00,1.00,86.40,67.20,0
+91.20,67.20,6.75,0.00,1.00,91.20,67.20,0
+105.60,67.20,6.68,0.00,1.00,96.00,67.20,0
+115.20,62.40,6.62,0.00,1.00,100.80,62.40,0
+124.80,62.40,6.55,0.00,1.00,105.60,57.60,0
+134.40,57.60,6.49,0.00,1.00,110.40,57.60,0
+139.20,57.60,6.43,0.00,1.00,115.20,52.80,0
+144.00,52.80,6.36,0.00,1.00,120.00,48.00,0
+148.80,48.00,6.30,0.00,1.00,129.60,43.20,0
+153.60,43.20,6.23,0.00,1.00,134.40,43.20,0
+158.40,38.40,6.17,0.00,1.00,139.20,38.40,0
+158.40,38.40,6.10,0.00,1.00,144.00,33.60,0
+163.20,33.60,6.04,0.00,1.00,148.80,28.80,0
+168.00,28.80,5.98,0.00,1.00,148.80,24.00,0
+168.00,24.00,5.91,0.00,1.00,153.60,19.20,0
+172.80,19.20,5.85,0.00,1.00,158.40,14.40,0
+172.80,14.40,5.78,0.00,1.00,163.20,9.60,0
+172.80,9.60,5.72,0.00,1.00,168.00,4.80,0
+177.60,4.80,5.65,0.00,1.00,172.80,0.00,0
+177.60,0.00,5.59,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.53,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,5.46,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,5.40,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,5.33,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,5.27,0.00,1.00,-158.40,-24.00,0
+-168.00,-24.00,5.20,0.00,1.00,-153.60,-28.80,0
+-168.00,-28.80,5.14,0.00,1.00,-148.80,-33.60,0
+-163.20,-33.60,5.08,0.00,1.00,-148.80,-38.40,0
+-158.40,-38.40,5.01,0.00,1.00,-144.00,-43.20,0
+-158.40,-38.40,4.95,0.00,1.00,-139.20,-43.20,0
+-153.60,-43.20,4.88,0.00,1.00,-134.40,-48.00,0
+-148.80,-48.00,4.82,0.00,1.00,-129.60,-52.80,0
+-144.00,-52.80,4.76,0.00,1.00,-120.00,-57.60,0
+-139.20,-57.60,4.69,0.00,1.00,-115.20,-57.60,0
+-134.40,-57.60,4.63,0.00,1.00,-110.40,-62.40,0
+-124.80,-62.40,4.56,0.00,1.00,-105.60,-67.20,0
+-115.20,-62.40,4.50,0.00,1.00,-100.80,-67.20,0
+-105.60,-67.20,4.43,0.00,1.00,-96.00,-67.20,0
+-91.20,-67.20,4.37,0.00,1.00,-91.20,-67.20,0
+-81.60,-67.20,4.31,0.00,1.00,-86.40,-67.20,0
+-72.00,-62.40,4.24,0.00,1.00,-81.60,-62.40,0
+-62.40,-62.40,4.18,0.00,1.00,-76.80,-62.40,0
+-52.80,-62.40,4.11,0.00,1.00,-72.00,-57.60,0
+-43.20,-57.60,4.05,0.00,1.00,-67.20,-52.80,0
+-38.40,-52.80,3.98,0.00,1.00,-62.40,-52.80,0
+-33.60,-52.80,3.92,0.00,1.00,-57.60,-48.00,0
+-28.80,-48.00,3.86,0.00,1.00,-48.00,-43.20,0
+-24.00,-43.20,3.79,0.00,1.00,-43.20,-38.40,0
+-19.20,-38.40,3.73,0.00,1.00,-38.40,-33.60,0
+-19.20,-33.60,3.66,0.00,1.00,-33.60,-28.80,0
+-14.40,-28.80,3.60,0.00,1.00,-33.60,-24.00,0
+-14.40,-24.00,3.53,0.00,1.00,-28.80,-24.00,0
+-9.60,-24.00,3.47,0.00,1.00,-24.00,-19.20,0
+-9.60,-19.20,3.41,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,3.34,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,3.28,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,3.21,0.00,1.00,-4.80,0.00,0
+0.00,0.00,3.15,0.00,1.00,0.00,4.80,0
+0.00,4.80,3.08,0.00,1.00,4.80,9.60,0
+4.80,9.60,3.02,0.00,1.00,9.60,14.40,0
+4.80,14.40,2.96,0.00,1.00,14.40,19.20,0
+9.60,14.40,2.89,0.00,1.00,19.20,19.20,0
+14.40,19.20,2.83,0.00,1.00,19.20,24.00,0
+14.40,24.00,2.76,0.00,1.00,24.00,28.80,0
+19.20,28.80,2.70,0.00,1.00,28.80,33.60,0
+19.20,33.60,2.63,0.00,1.00,33.60,38.40,0
+24.00,38.40,2.57,0.00,1.00,38.40,43.20,0
+28.80,38.40,2.51,0.00,1.00,43.20,43.20,0
+33.60,43.20,2.44,0.00,1.00,48.00,48.00,0
+38.40,48.00,2.38,0.00,1.00,52.80,52.80,0
+43.20,52.80,2.31,0.00,1.00,57.60,52.80,0
+48.00,52.80,2.25,0.00,1.00,62.40,57.60,0
+57.60,57.60,2.18,0.00,1.00,72.00,57.60,0
+62.40,57.60,2.12,0.00,1.00,76.80,62.40,0
+72.00,62.40,2.06,0.00,1.00,81.60,62.40,0
+81.60,62.40,1.99,0.00,1.00,86.40,62.40,0
+91.20,62.40,1.93,0.00,1.00,91.20,62.40,0
+100.80,62.40,1.86,0.00,1.00,96.00,62.40,0
+110.40,57.60,1.80,0.00,1.00,100.80,57.60,0
+120.00,57.60,1.73,0.00,1.00,105.60,57.60,0
+129.60,57.60,1.67,0.00,1.00,115.20,52.80,0
+134.40,52.80,1.61,0.00,1.00,120.00,48.00,0
+139.20,48.00,1.54,0.00,1.00,124.80,48.00,0
+144.00,48.00,1.48,0.00,1.00,129.60,43.20,0
+148.80,43.20,1.41,0.00,1.00,134.40,38.40,0
+153.60,38.40,1.35,0.00,1.00,139.20,33.60,0
+158.40,33.60,1.29,0.00,1.00,144.00,33.60,0
+158.40,28.80,1.22,0.00,1.00,148.80,28.80,0
+163.20,28.80,1.16,0.00,1.00,153.60,24.00,0
+168.00,24.00,1.09,0.00,1.00,158.40,19.20,0
+168.00,19.20,1.03,0.00,1.00,163.20,14.40,0
+172.80,14.40,0.96,0.00,1.00,163.20,9.60,0
+172.80,9.60,0.90,0.00,1.00,168.00,4.80,0
+177.60,4.80,0.84,0.00,1.00,172.80,0.00,0
+177.60,0.00,0.77,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,0.71,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,0.64,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,0.58,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,0.51,0.00,1.00,-163.20,-19.20,0
+-168.00,-19.20,0.45,0.00,1.00,-163.20,-24.00,0
+-168.00,-24.00,0.39,0.00,1.00,-158.40,-28.80,0
+-163.20,-28.80,0.32,0.00,1.00,-153.60,-33.60,0
+-158.40,-28.80,0.26,0.00,1.00,-148.80,-33.60,0
+-158.40,-33.60,0.19,0.00,1.00,-144.00,-38.40,0
+-153.60,-38.40,0.13,0.00,1.00,-139.20,-43.20,0
+-148.80,-43.20,0.06,0.00,1.00,-134.40,-48.00,0
+-144.00,-48.00,0.00,0.00,1.00,-129.60,-48.00,0
+-139.20,-48.00,0.00,0.00,1.00,-124.80,-52.80,0
+-134.40,-52.80,0.16,0.00,1.00,-120.00,-57.60,0
+-129.60,-57.60,0.32,0.00,1.00,-115.20,-57.60,0
+-120.00,-57.60,0.48,0.00,1.00,-105.60,-62.40,0
+-110.40,-57.60,0.65,0.00,1.00,-100.80,-62.40,0
+-100.80,-62.40,0.81,0.00,1.00,-96.00,-62.40,0
+-91.20,-62.40,0.97,0.00,1.00,-91.20,-62.40,0
+-81.60,-62.40,1.13,0.00,1.00,-86.40,-62.40,0
+-72.00,-62.40,1.29,0.00,1.00,-81.60,-57.60,0
+-62.40,-57.60,1.45,0.00,1.00,-76.80,-57.60,0
+-57.60,-57.60,1.62,0.00,1.00,-72.00,-52.80,0
+-48.00,-52.80,1.78,0.00,1.00,-62.40,-52.80,0
+-43.20,-52.80,1.94,0.00,1.00,-57.60,-48.00,0
+-38.40,-48.00,2.10,0.00,1.00,-52.80,-43.20,0
+-33.60,-43.20,2.26,0.00,1.00,-48.00,-43.20,0
+-28.80,-38.40,2.42,0.00,1.00,-43.20,-38.40,0
+-24.00,-38.40,2.59,0.00,1.00,-38.40,-33.60,0
+-19.20,-33.60,2.75,0.00,1.00,-33.60,-28.80,0
+-19.20,-28.80,2.91,0.00,1.00,-28.80,-24.00,0
+-14.40,-24.00,3.07,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,3.23,0.00,1.00,-19.20,-19.20,0
+-9.60,-14.40,3.39,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,3.56,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,3.72,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,3.88,0.00,1.00,-4.80,0.00,0
+0.00,0.00,4.04,0.00,1.00,0.00,4.80,0
+4.80,4.80,4.20,0.00,1.00,4.80,9.60,0
+4.80,9.60,4.36,0.00,1.00,9.60,14.40,0
+9.60,9.60,4.53,0.00,1.00,14.40,14.40,0
+9.60,14.40,4.69,0.00,1.00,14.40,19.20,0
+14.40,19.20,4.85,0.00,1.00,19.20,24.00,0
+19.20,24.00,5.01,0.00,1.00,24.00,28.80,0
+19.20,28.80,5.17,0.00,1.00,28.80,33.60,0
+24.00,28.80,5.33,0.00,1.00,33.60,33.60,0
+28.80,33.60,5.49,0.00,1.00,38.40,38.40,0
+33.60,38.40,5.66,0.00,1.00,43.20,43.20,0
+38.40,43.20,5.82,0.00,1.00,48.00,43.20,0
+43.20,43.20,5.98,0.00,1.00,52.80,48.00,0
+48.00,48.00,6.14,0.00,1.00,57.60,52.80,0
+52.80,48.00,6.30,0.00,1.00,62.40,52.80,0
+57.60,52.80,6.46,0.00,1.00,67.20,57.60,0
+67.20,52.80,6.63,0.00,1.00,72.00,57.60,0
+76.80,57.60,6.79,0.00,1.00,81.60,57.60,0
+81.60,57.60,6.95,0.00,1.00,86.40,57.60,0
+91.20,57.60,7.11,0.00,1.00,91.20,57.60,0
+100.80,57.60,7.27,0.00,1.00,96.00,57.60,0
+110.40,52.80,7.43,0.00,1.00,100.80,52.80,0
+115.20,52.80,7.60,0.00,1.00,110.40,52.80,0
+124.80,52.80,7.76,0.00,1.00,115.20,48.00,0
+129.60,48.00,7.92,0.00,1.00,120.00,48.00,0
+134.40,48.00,8.08,0.00,1.00,124.80,43.20,0
+139.20,43.20,8.24,0.00,1.00,129.60,38.40,0
+144.00,38.40,8.40,0.00,1.00,134.40,38.40,0
+148.80,38.40,8.57,0.00,1.00,139.20,33.60,0
+153.60,33.60,8.73,0.00,1.00,144.00,28.80,0
+158.40,28.80,8.89,0.00,1.00,148.80,24.00,0
+163.20,24.00,9.05,0.00,1.00,153.60,24.00,0
+163.20,24.00,9.21,0.00,1.00,158.40,19.20,0
+168.00,19.20,9.37,0.00,1.00,163.20,14.40,0
+172.80,14.40,9.54,0.00,1.00,168.00,9.60,0
+172.80,9.60,9.70,0.00,1.00,168.00,4.80,0
+177.60,4.80,9.86,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.18,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,10.34,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,10.51,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,10.67,0.00,1.00,-168.00,-19.20,0
+-168.00,-19.20,10.83,0.00,1.00,-163.20,-24.00,0
+-163.20,-24.00,10.99,0.00,1.00,-158.40,-24.00,0
+-163.20,-24.00,11.15,0.00,1.00,-153.60,-28.80,0
+-158.40,-28.80,11.31,0.00,1.00,-148.80,-33.60,0
+-153.60,-33.60,11.47,0.00,1.00,-144.00,-38.40,0
+-148.80,-38.40,11.64,0.00,1.00,-139.20,-38.40,0
+-144.00,-38.40,11.80,0.00,1.00,-134.40,-43.20,0
+-139.20,-43.20,11.96,0.00,1.00,-129.60,-48.00,0
+-134.40,-48.00,12.12,0.00,1.00,-124.80,-48.00,0
+-129.60,-48.00,12.28,0.00,1.00,-120.00,-52.80,0
+-124.80,-52.80,12.44,0.00,1.00,-115.20,-52.80,0
+-115.20,-52.80,12.61,0.00,1.00,-110.40,-57.60,0
+-110.40,-52.80,12.77,0.00,1.00,-100.80,-57.60,0
+-100.80,-57.60,12.93,0.00,1.00,-96.00,-57.60,0
+-91.20,-57.60,13.09,0.00,1.00,-91.20,-57.60,0
+-81.60,-57.60,13.25,0.00,1.00,-86.40,-57.60,0
+-76.80,-57.60,13.41,0.00,1.00,-81.60,-57.60,0
+-67.20,-52.80,13.58,0.00,1.00,-72.00,-52.80,0
+-57.60,-52.80,13.74,0.00,1.00,-67.20,-52.80,0
+-52.80,-48.00,13.90,0.00,1.00,-62.40,-48.00,0
+-48.00,-48.00,14.06,0.00,1.00,-57.60,-43.20,0
+-43.20,-43.20,14.22,0.00,1.00,-52.80,-43.20,0
+-38.40,-43.20,14.38,0.00,1.00,-48.00,-38.40,0
+-33.60,-38.40,14.55,0.00,1.00,-43.20,-33.60,0
+-28.80,-33.60,14.71,0.00,1.00,-38.40,-33.60,0
+-24.00,-28.80,14.87,0.00,1.00,-33.60,-28.80,0
+-19.20,-28.80,15.03,0.00,1.00,-28.80,-24.00,0
+-19.20,-24.00,15.19,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,15.35,0.00,1.00,-19.20,-14.40,0
+-9.60,-14.40,15.52,0.00,1.00,-14.40,-14.40,0
+-9.60,-9.60,15.68,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,15.84,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,16.00,0.00,1.00,-4.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,0.00,4.80,0
+4.80,4.80,15.84,0.00,1.00,4.80,9.60,0
+4.80,9.60,15.68,0.00,1.00,9.60,9.60,0
+9.60,9.60,15.52,0.00,1.00,9.60,14.40,0
+14.40,14.40,15.35,0.00,1.00,14.40,19.20,0
+14.40,19.20,15.19,0.00,1.00,19.20,24.00,0
+19.20,24.00,15.03,0.00,1.00,24.00,24.00,0
+24.00,24.00,14.87,0.00,1.00,28.80,28.80,0
+24.00,28.80,14.71,0.00,1.00,33.60,33.60,0
+28.80,33.60,14.55,0.00,1.00,38.40,38.40,0
+33.60,33.60,14.38,0.00,1.00,43.20,38.40,0
+38.40,38.40,14.22,0.00,1.00,48.00,43.20,0
+43.20,43.20,14.06,0.00,1.00,52.80,43.20,0
+48.00,43.20,13.90,0.00,1.00,57.60,48.00,0
+57.60,48.00,13.74,0.00,1.00,62.40,48.00,0
+62.40,48.00,13.58,0.00,1.00,67.20,52.80,0
+67.20,48.00,13.41,0.00,1.00,72.00,52.80,0
+76.80,52.80,13.25,0.00,1.00,81.60,52.80,0
+86.40,52.80,13.09,0.00,1.00,86.40,52.80,0
+91.20,52.80,12.93,0.00,1.00,91.20,52.80,0
+100.80,52.80,12.77,0.00,1.00,96.00,52.80,0
+105.60,48.00,12.61,0.00,1.00,105.60,48.00,0
+115.20,48.00,12.44,0.00,1.00,110.40,48.00,0
+120.00,48.00,12.28,0.00,1.00,115.20,48.00,0
+124.80,43.20,12.12,0.00,1.00,120.00,43.20,0
+134.40,43.20,11.96,0.00,1.00,124.80,43.20,0
+139.20,38.40,11.80,0.00,1.00,129.60,38.40,0
+144.00,38.40,11.64,0.00,1.00,134.40,33.60,0
+148.80,33.60,11.47,0.00,1.00,139.20,33.60,0
+153.60,28.80,11.31,0.00,1.00,144.00,28.80,0
+153.60,28.80,11.15,0.00,1.00,148.80,24.00,0
+158.40,24.00,10.99,0.00,1.00,153.60,19.20,0
+163.20,19.20,10.83,0.00,1.00,158.40,19.20,0
+168.00,14.40,10.67,0.00,1.00,163.20,14.40,0
+168.00,14.40,10.51,0.00,1.00,168.00,9.60,0
+172.80,9.60,10.34,0.00,1.00,172.80,4.80,0
+177.60,4.80,10.18,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,9.86,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,9.70,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,9.54,0.00,1.00,-172.80,-14.40,0
+-168.00,-14.40,9.37,0.00,1.00,-168.00,-19.20,0
+-168.00,-14.40,9.21,0.00,1.00,-163.20,-19.20,0
+-163.20,-19.20,9.05,0.00,1.00,-158.40,-24.00,0
+-158.40,-24.00,8.89,0.00,1.00,-153.60,-28.80,0
+-153.60,-28.80,8.73,0.00,1.00,-148.80,-33.60,0
+-153.60,-28.80,8.57,0.00,1.00,-144.00,-33.60,0
+-148.80,-33.60,8.40,0.00,1.00,-139.20,-38.40,0
+-144.00,-38.40,8.24,0.00,1.00,-134.40,-43.20,0
+-139.20,-38.40,8.08,0.00,1.00,-129.60,-43.20,0
+-134.40,-43.20,7.92,0.00,1.00,-124.80,-48.00,0
+-124.80,-43.20,7.76,0.00,1.00,-120.00,-48.00,0
+-120.00,-48.00,7.60,0.00,1.00,-115.20,-48.00,0
+-115.20,-48.00,7.43,0.00,1.00,-110.40,-52.80,0
+-105.60,-48.00,7.27,0.00,1.00,-105.60,-52.80,0
+-100.80,-52.80,7.11,0.00,1.00,-96.00,-52.80,0
+-91.20,-52.80,6.95,0.00,1.00,-91.20,-52.80,0
+-86.40,-52.80,6.79,0.00,1.00,-86.40,-52.80,0
+-76.80,-52.80,6.63,0.00,1.00,-81.60,-52.80,0
+-67.20,-48.00,6.46,0.00,1.00,-72.00,-48.00,0
+-62.40,-48.00,6.30,0.00,1.00,-67.20,-48.00,0
+-57.60,-48.00,6.14,0.00,1.00,-62.40,-43.20,0
+-48.00,-43.20,5.98,0.00,1.00,-57.60,-43.20,0
+-43.20,-43.20,5.82,0.00,1.00,-52.80,-38.40,0
+-38.40,-38.40,5.66,0.00,1.00,-48.00,-38.40,0
+-33.60,-33.60,5.49,0.00,1.00,-43.20,-33.60,0
+-28.80,-33.60,5.33,0.00,1.00,-38.40,-28.80,0
+-24.00,-28.80,5.17,0.00,1.00,-33.60,-24.00,0
+-24.00,-24.00,5.01,0.00,1.00,-28.80,-24.00,0
+-19.20,-24.00,4.85,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,4.69,0.00,1.00,-19.20,-14.40,0
+-14.40,-14.40,4.53,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,4.36,0.00,1.00,-9.60,-9.60,0
+-4.80,-9.60,4.20,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,4.04,0.00,1.00,-4.80,0.00,0
+0.00,0.00,3.88,0.00,1.00,0.00,4.80,0
+4.80,4.80,3.72,0.00,1.00,4.80,4.80,0
+4.80,4.80,3.56,0.00,1.00,4.80,9.60,0
+9.60,9.60,3.39,0.00,1.00,9.60,14.40,0
+14.40,14.40,3.23,0.00,1.00,14.40,19.20,0
+19.20,19.20,3.07,0.00,1.00,19.20,19.20,0
+19.20,19.20,2.91,0.00,1.00,24.00,24.00,0
+24.00,24.00,2.75,0.00,1.00,24.00,28.80,0
+28.80,28.80,2.59,0.00,1.00,28.80,28.80,0
+33.60,28.80,2.42,0.00,1.00,33.60,33.60,0
+38.40,33.60,2.26,0.00,1.00,38.40,38.40,0
+43.20,33.60,2.10,0.00,1.00,43.20,38.40,0
+48.00,38.40,1.94,0.00,1.00,48.00,43.20,0
+52.80,38.40,1.78,0.00,1.00,52.80,43.20,0
+57.60,43.20,1.62,0.00,1.00,62.40,43.20,0
+62.40,43.20,1.45,0.00,1.00,67.20,48.00,0
+72.00,43.20,1.29,0.00,1.00,72.00,48.00,0
+76.80,48.00,1.13,0.00,1.00,76.80,48.00,0
+86.40,48.00,0.97,0.00,1.00,86.40,48.00,0
+91.20,48.00,0.81,0.00,1.00,91.20,48.00,0
+100.80,48.00,0.65,0.00,1.00,96.00,48.00,0
+105.60,48.00,0.48,0.00,1.00,105.60,48.00,0
+110.40,43.20,0.32,0.00,1.00,110.40,43.20,0
+120.00,43.20,0.16,0.00,1.00,115.20,43.20,0
+124.80,43.20,0.00,0.00,1.00,124.80,38.40,0
+129.60,38.40,0.00,0.00,1.00,129.60,38.40,0
+134.40,38.40,0.04,0.00,1.00,134.40,33.60,0
+139.20,33.60,0.08,0.00,1.00,139.20,33.60,0
+144.00,33.60,0.12,0.00,1.00,144.00,28.80,0
+148.80,28.80,0.16,0.00,1.00,148.80,24.00,0
+153.60,24.00,0.20,0.00,1.00,153.60,24.00,0
+158.40,24.00,0.24,0.00,1.00,158.40,19.20,0
+163.20,19.20,0.28,0.00,1.00,158.40,14.40,0
+163.20,14.40,0.32,0.00,1.00,163.20,14.40,0
+168.00,14.40,0.36,0.00,1.00,168.00,9.60,0
+172.80,9.60,0.40,0.00,1.00,172.80,4.80,0
+172.80,4.80,0.44,0.00,1.00,172.80,0.00,0
+177.60,0.00,0.48,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,0.52,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,0.56,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,0.60,0.00,1.00,-172.80,-14.40,0
+-168.00,-14.40,0.64,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,0.68,0.00,1.00,-163.20,-19.20,0
+-163.20,-19.20,0.72,0.00,1.00,-158.40,-24.00,0
+-158.40,-24.00,0.76,0.00,1.00,-158.40,-24.00,0
+-153.60,-24.00,0.80,0.00,1.00,-153.60,-28.80,0
+-148.80,-28.80,0.84,0.00,1.00,-148.80,-33.60,0
+-144.00,-33.60,0.88,0.00,1.00,-144.00,-33.60,0
+-139.20,-33.60,0.92,0.00,1.00,-139.20,-38.40,0
+-134.40,-38.40,0.96,0.00,1.00,-134.40,-38.40,0
+-129.60,-38.40,1.00,0.00,1.00,-129.60,-43.20,0
+-124.80,-43.20,1.04,0.00,1.00,-124.80,-43.20,0
+-120.00,-43.20,1.08,0.00,1.00,-115.20,-48.00,0
+-110.40,-43.20,1.12,0.00,1.00,-110.40,-48.00,0
+-105.60,-48.00,1.16,0.00,1.00,-105.60,-48.00,0
+-100.80,-48.00,1.20,0.00,1.00,-96.00,-48.00,0
+-91.20,-48.00,1.24,0.00,1.00,-91.20,-48.00,0
+-86.40,-48.00,1.28,0.00,1.00,-86.40,-48.00,0
+-76.80,-48.00,1.32,0.00,1.00,-76.80,-48.00,0
+-72.00,-43.20,1.36,0.00,1.00,-72.00,-43.20,0
+-62.40,-43.20,1.40,0.00,1.00,-67.20,-43.20,0
+-57.60,-43.20,1.44,0.00,1.00,-62.40,-43.20,0
+-52.80,-38.40,1.48,0.00,1.00,-52.80,-38.40,0
+-48.00,-38.40,1.52,0.00,1.00,-48.00,-38.40,0
+-43.20,-33.60,1.56,0.00,1.00,-43.20,-33.60,0
+-38.40,-33.60,1.60,0.00,1.00,-38.40,-28.80,0
+-33.60,-28.80,1.64,0.00,1.00,-33.60,-28.80,0
+-28.80,-28.80,1.68,0.00,1.00,-28.80,-24.00,0
+-24.00,-24.00,1.72,0.00,1.00,-24.00,-19.20,0
+-19.20,-19.20,1.76,0.00,1.00,-24.00,-19.20,0
+-19.20,-19.20,1.80,0.00,1.00,-19.20,-14.40,0
+-14.40,-14.40,1.84,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,1.88,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,1.92,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,1.96,0.00,1.00,-4.80,0.00,0
+0.00,0.00,2.01,0.00,1.00,0.00,4.80,0
+4.80,4.80,2.05,0.00,1.00,4.80,4.80,0
+4.80,4.80,2.09,0.00,1.00,4.80,9.60,0
+9.60,9.60,2.13,0.00,1.00,9.60,14.40,0
+14.40,14.40,2.17,0.00,1.00,14.40,14.40,0
+19.20,14.40,2.21,0.00,1.00,14.40,19.20,0
+24.00,19.20,2.25,0.00,1.00,19.20,24.00,0
+24.00,24.00,2.29,0.00,1.00,24.00,24.00,0
+28.80,24.00,2.33,0.00,1.00,28.80,28.80,0
+33.60,28.80,2.37,0.00,1.00,33.60,28.80,0
+38.40,28.80,2.41,0.00,1.00,38.40,33.60,0
+43.20,33.60,2.45,0.00,1.00,43.20,33.60,0
+48.00,33.60,2.49,0.00,1.00,48.00,38.40,0
+52.80,38.40,2.53,0.00,1.00,52.80,38.40,0
+62.40,38.40,2.57,0.00,1.00,57.60,38.40,0
+67.20,38.40,2.61,0.00,1.00,62.40,43.20,0
+72.00,38.40,2.65,0.00,1.00,72.00,43.20,0
+76.80,43.20,2.69,0.00,1.00,76.80,43.20,0
+86.40,43.20,2.73,0.00,1.00,86.40,43.20,0
+91.20,43.20,2.77,0.00,1.00,91.20,43.20,0
+96.00,43.20,2.81,0.00,1.00,100.80,43.20,0
+105.60,43.20,2.85,0.00,1.00,105.60,43.20,0
+110.40,38.40,2.89,0.00,1.00,110.40,38.40,0
+115.20,38.40,2.93,0.00,1.00,120.00,38.40,0
+120.00,38.40,2.97,0.00,1.00,124.80,38.40,0
+129.60,33.60,3.01,0.00,1.00,129.60,33.60,0
+134.40,33.60,3.05,0.00,1.00,134.40,33.60,0
+139.20,28.80,3.09,0.00,1.00,139.20,28.80,0
+144.00,28.80,3.13,0.00,1.00,144.00,28.80,0
+148.80,24.00,3.17,0.00,1.00,148.80,24.00,0
+153.60,24.00,3.21,0.00,1.00,153.60,19.20,0
+153.60,19.20,3.25,0.00,1.00,158.40,19.20,0
+158.40,19.20,3.29,0.00,1.00,163.20,14.40,0
+163.20,14.40,3.33,0.00,1.00,163.20,9.60,0
+168.00,9.60,3.37,0.00,1.00,168.00,9.60,0
+172.80,9.60,3.41,0.00,1.00,172.80,4.80,0
+172.80,4.80,3.45,0.00,1.00,172.80,0.00,0
+177.60,0.00,3.49,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.53,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,3.57,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,3.61,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,3.65,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,3.69,0.00,1.00,-163.20,-19.20,0
+-158.40,-19.20,3.73,0.00,1.00,-163.20,-19.20,0
+-153.60,-19.20,3.77,0.00,1.00,-158.40,-24.00,0
+-153.60,-24.00,3.81,0.00,1.00,-153.60,-28.80,0
+-148.80,-24.00,3.85,0.00,1.00,-148.80,-28.80,0
+-144.00,-28.80,3.89,0.00,1.00,-144.00,-33.60,0
+-139.20,-28.80,3.93,0.00,1.00,-139.20,-33.60,0
+-134.40,-33.60,3.97,0.00,1.00,-134.40,-38.40,0
+-129.60,-33.60,4.01,0.00,1.00,-129.60,-38.40,0
+-120.00,-38.40,4.05,0.00,1.00,-124.80,-38.40,0
+-115.20,-38.40,4.09,0.00,1.00,-120.00,-43.20,0
+-110.40,-38.40,4.13,0.00,1.00,-110.40,-43.20,0
+-105.60,-43.20,4.17,0.00,1.00,-105.60,-43.20,0
+-96.00,-43.20,4.21,0.00,1.00,-100.80,-43.20,0
+-91.20,-43.20,4.25,0.00,1.00,-91.20,-43.20,0
+-86.40,-43.20,4.29,0.00,1.00,-86.40,-43.20,0
+-76.80,-43.20,4.33,0.00,1.00,-76.80,-43.20,0
+-72.00,-38.40,4.37,0.00,1.00,-72.00,-38.40,0
+-67.20,-38.40,4.41,0.00,1.00,-62.40,-38.40,0
+-62.40,-38.40,4.45,0.00,1.00,-57.60,-38.40,0
+-52.80,-38.40,4.49,0.00,1.00,-52.80,-33.60,0
+-48.00,-33.60,4.53,0.00,1.00,-48.00,-33.60,0
+-43.20,-33.60,4.57,0.00,1.00,-43.20,-28.80,0
+-38.40,-28.80,4.61,0.00,1.00,-38.40,-28.80,0
+-33.60,-28.80,4.65,0.00,1.00,-33.60,-24.00,0
+-28.80,-24.00,4.69,0.00,1.00,-28.80,-24.00,0
+-24.00,-24.00,4.73,0.00,1.00,-24.00,-19.20,0
+-24.00,-19.20,4.77,0.00,1.00,-19.20,-14.40,0
+-19.20,-14.40,4.81,0.00,1.00,-14.40,-14.40,0
+-14.40,-14.40,4.85,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,4.89,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,4.93,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,4.97,0.00,1.00,-4.80,0.00,0
+0.00,0.00,5.01,0.00,1.00,0.00,4.80,0
+4.80,4.80,5.05,0.00,1.00,4.80,4.80,0
+9.60,4.80,5.09,0.00,1.00,4.80,9.60,0
+9.60,9.60,5.13,0.00,1.00,9.60,9.60,0
+14.40,9.60,5.17,0.00,1.00,9.60,14.40,0
+19.20,14.40,5.21,0.00,1.00,14.40,19.20,0
+24.00,19.20,5.25,0.00,1.00,19.20,19.20,0
+28.80,19.20,5.29,0.00,1.00,24.00,24.00,0
+33.60,24.00,5.33,0.00,1.00,24.00,24.00,0
+38.40,24.00,5.37,0.00,1.00,28.80,28.80,0
+43.20,28.80,5.41,0.00,1.00,33.60,28.80,0
+48.00,28.80,5.45,0.00,1.00,38.40,33.60,0
+52.80,28.80,5.49,0.00,1.00,43.20,33.60,0
+57.60,33.60,5.53,0.00,1.00,48.00,33.60,0
+62.40,33.60,5.57,0.00,1.00,52.80,38.40,0
+67.20,33.60,5.61,0.00,1.00,62.40,38.40,0
+72.00,38.40,5.65,0.00,1.00,67.20,38.40,0
+81.60,38.40,5.69,0.00,1.00,76.80,38.40,0
+86.40,38.40,5.73,0.00,1.00,86.40,38.40,0
+91.20,38.40,5.77,0.00,1.00,91.20,38.40,0
+96.00,38.40,5.81,0.00,1.00,100.80,38.40,0
+105.60,38.40,5.85,0.00,1.00,105.60,38.40,0
+110.40,33.60,5.89,0.00,1.00,115.20,33.60,0
+115.20,33.60,5.93,0.00,1.00,120.00,33.60,0
+120.00,33.60,5.97,0.00,1.00,129.60,33.60,0
+124.80,33.60,6.02,0.00,1.00,134.40,28.80,0
+129.60,28.80,6.06,0.00,1.00,139.20,28.80,0
+134.40,28.80,6.10,0.00,1.00,144.00,24.00,0
+139.20,24.00,6.14,0.00,1.00,148.80,24.00,0
+144.00,24.00,6.18,0.00,1.00,153.60,19.20,0
+148.80,19.20,6.22,0.00,1.00,158.40,19.20,0
+153.60,19.20,6.26,0.00,1.00,158.40,14.40,0
+158.40,14.40,6.30,0.00,1.00,163.20,14.40,0
+163.20,14.40,6.34,0.00,1.00,168.00,9.60,0
+168.00,9.60,6.38,0.00,1.00,168.00,9.60,0
+168.00,9.60,6.42,0.00,1.00,172.80,4.80,0
+172.80,4.80,6.46,0.00,1.00,177.60,0.00,0
+177.60,0.00,6.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.54,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,6.58,0.00,1.00,-177.60,-9.60,0
+-168.00,-9.60,6.62,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,6.66,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,6.70,0.00,1.00,-168.00,-14.40,0
+-158.40,-14.40,6.74,0.00,1.00,-163.20,-19.20,0
+-153.60,-19.20,6.78,0.00,1.00,-158.40,-19.20,0
+-148.80,-19.20,6.82,0.00,1.00,-158.40,-24.00,0
+-144.00,-24.00,6.86,0.00,1.00,-153.60,-24.00,0
+-139.20,-24.00,6.90,0.00,1.00,-148.80,-28.80,0
+-134.40,-28.80,6.94,0.00,1.00,-144.00,-28.80,0
+-129.60,-28.80,6.98,0.00,1.00,-139.20,-33.60,0
+-124.80,-33.60,7.02,0.00,1.00,-134.40,-33.60,0
+-120.00,-33.60,7.06,0.00,1.00,-129.60,-33.60,0
+-115.20,-33.60,7.10,0.00,1.00,-120.00,-38.40,0
+-110.40,-33.60,7.14,0.00,1.00,-115.20,-38.40,0
+-105.60,-38.40,7.18,0.00,1.00,-105.60,-38.40,0
+-96.00,-38.40,7.22,0.00,1.00,-100.80,-38.40,0
+-91.20,-38.40,7.26,0.00,1.00,-91.20,-38.40,0
+-86.40,-38.40,7.30,0.00,1.00,-86.40,-38.40,0
+-81.60,-38.40,7.34,0.00,1.00,-76.80,-38.40,0
+-72.00,-38.40,7.38,0.00,1.00,-67.20,-38.40,0
+-67.20,-33.60,7.42,0.00,1.00,-62.40,-33.60,0
+-62.40,-33.60,7.46,0.00,1.00,-52.80,-33.60,0
+-57.60,-33.60,7.50,0.00,1.00,-48.00,-33.60,0
+-52.80,-28.80,7.54,0.00,1.00,-43.20,-28.80,0
+-48.00,-28.80,7.58,0.00,1.00,-38.40,-28.80,0
+-43.20,-28.80,7.62,0.00,1.00,-33.60,-24.00,0
+-38.40,-24.00,7.66,0.00,1.00,-28.80,-24.00,0
+-33.60,-24.00,7.70,0.00,1.00,-24.00,-19.20,0
+-28.80,-19.20,7.74,0.00,1.00,-24.00,-19.20,0
+-24.00,-19.20,7.78,0.00,1.00,-19.20,-14.40,0
+-19.20,-14.40,7.82,0.00,1.00,-14.40,-9.60,0
+-14.40,-9.60,7.86,0.00,1.00,-9.60,-9.60,0
+-9.60,-9.60,7.90,0.00,1.00,-9.60,-4.80,0
+-9.60,-4.80,7.94,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,7.98,0.00,1.00,-4.80,0.00,0
+0.00,0.00,8.02,0.00,1.00,0.00,4.80,0
+4.80,4.80,8.06,0.00,1.00,4.80,4.80,0
+9.60,4.80,8.10,0.00,1.00,4.80,9.60,0
+14.40,9.60,8.14,0.00,1.00,9.60,9.60,0
+14.40,9.60,8.18,0.00,1.00,9.60,14.40,0
+19.20,14.40,8.22,0.00,1.00,14.40,14.40,0
+24.00,14.40,8.26,0.00,1.00,14.40,19.20,0
+28.80,19.20,8.30,0.00,1.00,19.20,19.20,0
+33.60,19.20,8.34,0.00,1.00,24.00,24.00,0
+38.40,19.20,8.38,0.00,1.00,28.80,24.00,0
+43.20,24.00,8.42,0.00,1.00,28.80,24.00,0
+48.00,24.00,8.46,0.00,1.00,33.60,28.80,0
+52.80,28.80,8.50,0.00,1.00,38.40,28.80,0
+57.60,28.80,8.54,0.00,1.00,48.00,28.80,0
+62.40,28.80,8.58,0.00,1.00,52.80,33.60,0
+67.20,28.80,8.62,0.00,1.00,57.60,33.60,0
+76.80,33.60,8.66,0.00,1.00,67.20,33.60,0
+81.60,33.60,8.70,0.00,1.00,76.80,33.60,0
+86.40,33.60,8.74,0.00,1.00,81.60,33.60,0
+91.20,33.60,8.78,0.00,1.00,91.20,33.60,0
+96.00,33.60,8.82,0.00,1.00,100.80,33.60,0
+100.80,33.60,8.86,0.00,1.00,110.40,33.60,0
+110.40,28.80,8.90,0.00,1.00,115.20,33.60,0
+115.20,28.80,8.94,0.00,1.00,124.80,28.80,0
+120.00,28.80,8.98,0.00,1.00,129.60,28.80,0
+124.80,28.80,9.02,0.00,1.00,139.20,28.80,0
+129.60,24.00,9.06,0.00,1.00,144.00,24.00,0
+134.40,24.00,9.10,0.00,1.00,148.80,24.00,0
+139.20,24.00,9.14,0.00,1.00,153.60,19.20,0
+144.00,19.20,9.18,0.00,1.00,153.60,19.20,0
+148.80,19.20,9.22,0.00,1.00,158.40,14.40,0
+153.60,14.40,9.26,0.00,1.00,163.20,14.40,0
+158.40,14.40,9.30,0.00,1.00,163.20,9.60,0
+163.20,9.60,9.34,0.00,1.00,168.00,9.60,0
+168.00,9.60,9.38,0.00,1.00,172.80,4.80,0
+168.00,4.80,9.42,0.00,1.00,172.80,4.80,0
+172.80,4.80,9.46,0.00,1.00,177.60,0.00,0
+177.60,0.00,9.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,9.54,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,9.58,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,9.62,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,9.66,0.00,1.00,-172.80,-9.60,0
+-163.20,-9.60,9.70,0.00,1.00,-168.00,-14.40,0
+-158.40,-14.40,9.74,0.00,1.00,-163.20,-14.40,0
+-153.60,-14.40,9.78,0.00,1.00,-163.20,-19.20,0
+-148.80,-19.20,9.82,0.00,1.00,-158.40,-19.20,0
+-144.00,-19.20,9.86,0.00,1.00,-153.60,-24.00,0
+-139.20,-24.00,9.90,0.00,1.00,-153.60,-24.00,0
+-134.40,-24.00,9.94,0.00,1.00,-148.80,-28.80,0
+-129.60,-24.00,9.98,0.00,1.00,-144.00,-28.80,0
+-124.80,-28.80,10.03,0.00,1.00,-139.20,-28.80,0
+-120.00,-28.80,10.07,0.00,1.00,-129.60,-33.60,0
+-115.20,-28.80,10.11,0.00,1.00,-124.80,-33.60,0
+-110.40,-28.80,10.15,0.00,1.00,-115.20,-33.60,0
+-100.80,-33.60,10.19,0.00,1.00,-110.40,-33.60,0
+-96.00,-33.60,10.23,0.00,1.00,-100.80,-33.60,0
+-91.20,-33.60,10.27,0.00,1.00,-91.20,-33.60,0
+-86.40,-33.60,10.31,0.00,1.00,-81.60,-33.60,0
+-81.60,-33.60,10.35,0.00,1.00,-76.80,-33.60,0
+-76.80,-33.60,10.39,0.00,1.00,-67.20,-33.60,0
+-67.20,-28.80,10.43,0.00,1.00,-57.60,-28.80,0
+-62.40,-28.80,10.47,0.00,1.00,-52.80,-28.80,0
+-57.60,-28.80,10.51,0.00,1.00,-48.00,-28.80,0
+-52.80,-28.80,10.55,0.00,1.00,-38.40,-24.00,0
+-48.00,-24.00,10.59,0.00,1.00,-33.60,-24.00,0
+-43.20,-24.00,10.63,0.00,1.00,-28.80,-24.00,0
+-38.40,-19.20,10.67,0.00,1.00,-28.80,-19.20,0
+-33.60,-19.20,10.71,0.00,1.00,-24.00,-19.20,0
+-28.80,-19.20,10.75,0.00,1.00,-19.20,-14.40,0
+-24.00,-14.40,10.79,0.00,1.00,-14.40,-14.40,0
+-19.20,-14.40,10.83,0.00,1.00,-14.40,-9.60,0
+-14.40,-9.60,10.87,0.00,1.00,-9.60,-9.60,0
+-14.40,-9.60,10.91,0.00,1.00,-9.60,-4.80,0
+-9.60,-4.80,10.95,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,10.99,0.00,1.00,-4.80,0.00,0
+0.00,0.00,11.03,0.00,1.00,0.00,0.00,0
+4.80,0.00,11.07,0.00,1.00,0.00,4.80,0
+9.60,4.80,11.11,0.00,1.00,4.80,4.80,0
+14.40,4.80,11.15,0.00,1.00,4.80,9.60,0
+19.20,9.60,11.19,0.00,1.00,9.60,9.60,0
+19.20,9.60,11.23,0.00,1.00,9.60,14.40,0
+24.00,14.40,11.27,0.00,1.00,14.40,14.40,0
+28.80,14.40,11.31,0.00,1.00,19.20,19.20,0
+33.60,14.40,11.35,0.00,1.00,19.20,19.20,0
+38.40,19.20,11.39,0.00,1.00,24.00,19.20,0
+43.20,19.20,11.43,0.00,1.00,28.80,24.00,0
+48.00,24.00,11.47,0.00,1.00,33.60,24.00,0
+52.80,24.00,11.51,0.00,1.00,38.40,24.00,0
+57.60,24.00,11.55,0.00,1.00,43.20,24.00,0
+62.40,24.00,11.59,0.00,1.00,48.00,28.80,0
+72.00,24.00,11.63,0.00,1.00,52.80,28.80,0
+76.80,28.80,11.67,0.00,1.00,62.40,28.80,0
+81.60,28.80,11.71,0.00,1.00,72.00,28.80,0
+86.40,28.80,11.75,0.00,1.00,81.60,28.80,0
+91.20,28.80,11.79,0.00,1.00,91.20,28.80,0
+96.00,28.80,11.83,0.00,1.00,100.80,28.80,0
+100.80,28.80,11.87,0.00,1.00,110.40,28.80,0
+105.60,28.80,11.91,0.00,1.00,120.00,28.80,0
+110.40,24.00,11.95,0.00,1.00,129.60,24.00,0
+120.00,24.00,11.99,0.00,1.00,134.40,24.00,0
+124.80,24.00,12.03,0.00,1.00,139.20,24.00,0
+129.60,24.00,12.07,0.00,1.00,144.00,24.00,0
+134.40,19.20,12.11,0.00,1.00,148.80,19.20,0
+139.20,19.20,12.15,0.00,1.00,153.60,19.20,0
+144.00,19.20,12.19,0.00,1.00,158.40,14.40,0
+148.80,14.40,12.23,0.00,1.00,163.20,14.40,0
+153.60,14.40,12.27,0.00,1.00,163.20,14.40,0
+158.40,9.60,12.31,0.00,1.00,168.00,9.60,0
+158.40,9.60,12.35,0.00,1.00,168.00,9.60,0
+163.20,9.60,12.39,0.00,1.00,172.80,4.80,0
+168.00,4.80,12.43,0.00,1.00,172.80,4.80,0
+172.80,4.80,12.47,0.00,1.00,177.60,0.00,0
+177.60,0.00,12.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,12.55,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,12.59,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,12.63,0.00,1.00,-172.80,-9.60,0
+-163.20,-9.60,12.67,0.00,1.00,-172.80,-9.60,0
+-158.40,-9.60,12.71,0.00,1.00,-168.00,-14.40,0
+-158.40,-9.60,12.75,0.00,1.00,-168.00,-14.40,0
+-153.60,-14.40,12.79,0.00,1.00,-163.20,-14.40,0
+-148.80,-14.40,12.83,0.00,1.00,-163.20,-19.20,0
+-144.00,-19.20,12.87,0.00,1.00,-158.40,-19.20,0
+-139.20,-19.20,12.91,0.00,1.00,-153.60,-24.00,0
+-134.40,-19.20,12.95,0.00,1.00,-148.80,-24.00,0
+-129.60,-24.00,12.99,0.00,1.00,-144.00,-24.00,0
+-124.80,-24.00,13.03,0.00,1.00,-139.20,-24.00,0
+-120.00,-24.00,13.07,0.00,1.00,-134.40,-28.80,0
+-110.40,-24.00,13.11,0.00,1.00,-129.60,-28.80,0
+-105.60,-28.80,13.15,0.00,1.00,-120.00,-28.80,0
+-100.80,-28.80,13.19,0.00,1.00,-110.40,-28.80,0
+-96.00,-28.80,13.23,0.00,1.00,-100.80,-28.80,0
+-91.20,-28.80,13.27,0.00,1.00,-91.20,-28.80,0
+-86.40,-28.80,13.31,0.00,1.00,-81.60,-28.80,0
+-81.60,-28.80,13.35,0.00,1.00,-72.00,-28.80,0
+-76.80,-28.80,13.39,0.00,1.00,-62.40,-28.80,0
+-72.00,-24.00,13.43,0.00,1.00,-52.80,-24.00,0
+-62.40,-24.00,13.47,0.00,1.00,-48.00,-24.00,0
+-57.60,-24.00,13.51,0.00,1.00,-43.20,-24.00,0
+-52.80,-24.00,13.55,0.00,1.00,-38.40,-24.00,0
+-48.00,-24.00,13.59,0.00,1.00,-33.60,-19.20,0
+-43.20,-19.20,13.63,0.00,1.00,-28.80,-19.20,0
+-38.40,-19.20,13.67,0.00,1.00,-24.00,-19.20,0
+-33.60,-14.40,13.71,0.00,1.00,-19.20,-14.40,0
+-28.80,-14.40,13.75,0.00,1.00,-19.20,-14.40,0
+-24.00,-14.40,13.79,0.00,1.00,-14.40,-9.60,0
+-19.20,-9.60,13.83,0.00,1.00,-9.60,-9.60,0
+-19.20,-9.60,13.87,0.00,1.00,-9.60,-4.80,0
+-14.40,-4.80,13.91,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,13.95,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,13.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,14.04,0.00,1.00,0.00,0.00,0
+4.80,0.00,14.08,0.00,1.00,0.00,4.80,0
+9.60,4.80,14.12,0.00,1.00,4.80,4.80,0
+14.40,4.80,14.16,0.00,1.00,4.80,9.60,0
+19.20,9.60,14.20,0.00,1.00,9.60,9.60,0
+24.00,9.60,14.24,0.00,1.00,9.60,9.60,0
+28.80,9.60,14.28,0.00,1.00,14.40,14.40,0
+33.60,14.40,14.32,0.00,1.00,14.40,14.40,0
+38.40,14.40,14.36,0.00,1.00,19.20,14.40,0
+43.20,14.40,14.40,0.00,1.00,19.20,19.20,0
+48.00,14.40,14.44,0.00,1.00,24.00,19.20,0
+52.80,19.20,14.48,0.00,1.00,28.80,19.20,0
+57.60,19.20,14.52,0.00,1.00,33.60,19.20,0
+62.40,19.20,14.56,0.00,1.00,38.40,24.00,0
+67.20,19.20,14.60,0.00,1.00,43.20,24.00,0
+72.00,24.00,14.64,0.00,1.00,48.00,24.00,0
+76.80,24.00,14.68,0.00,1.00,57.60,24.00,0
+81.60,24.00,14.72,0.00,1.00,67.20,24.00,0
+86.40,24.00,14.76,0.00,1.00,81.60,24.00,0
+91.20,24.00,14.80,0.00,1.00,91.20,24.00,0
+96.00,24.00,14.84,0.00,1.00,105.60,24.00,0
+100.80,24.00,14.88,0.00,1.00,115.20,24.00,0
+105.60,24.00,14.92,0.00,1.00,124.80,24.00,0
+110.40,19.20,14.96,0.00,1.00,134.40,19.20,0
+115.20,19.20,15.00,0.00,1.00,139.20,19.20,0
+120.00,19.20,15.04,0.00,1.00,144.00,19.20,0
+124.80,19.20,15.08,0.00,1.00,148.80,19.20,0
+129.60,19.20,15.12,0.00,1.00,153.60,19.20,0
+134.40,14.40,15.16,0.00,1.00,158.40,14.40,0
+139.20,14.40,15.20,0.00,1.00,163.20,14.40,0
+144.00,14.40,15.24,0.00,1.00,163.20,14.40,0
+148.80,9.60,15.28,0.00,1.00,168.00,9.60,0
+153.60,9.60,15.32,0.00,1.00,168.00,9.60,0
+158.40,9.60,15.36,0.00,1.00,172.80,4.80,0
+163.20,4.80,15.40,0.00,1.00,172.80,4.80,0
+168.00,4.80,15.44,0.00,1.00,177.60,4.80,0
+172.80,4.80,15.48,0.00,1.00,177.60,0.00,0
+177.60,0.00,15.52,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,15.56,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,15.60,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,15.64,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,15.68,0.00,1.00,-172.80,-9.60,0
+-158.40,-9.60,15.72,0.00,1.00,-172.80,-9.60,0
+-153.60,-9.60,15.76,0.00,1.00,-168.00,-14.40,0
+-148.80,-9.60,15.80,0.00,1.00,-168.00,-14.40,0
+-144.00,-14.40,15.84,0.00,1.00,-163.20,-14.40,0
+-139.20,-14.40,15.88,0.00,1.00,-163.20,-19.20,0
+-134.40,-14.40,15.92,0.00,1.00,-158.40,-19.20,0
+-129.60,-19.20,15.96,0.00,1.00,-153.60,-19.20,0
+-124.80,-19.20,16.00,0.00,1.00,-148.80,-19.20,0
+-120.00,-19.20,16.00,0.00,1.00,-144.00,-19.20,0
+-115.20,-19.20,15.96,0.00,1.00,-139.20,-24.00,0
+-110.40,-19.20,15.92,0.00,1.00,-134.40,-24.00,0
+-105.60,-24.00,15.88,0.00,1.00,-124.80,-24.00,0
+-100.80,-24.00,15.84,0.00,1.00,-115.20,-24.00,0
+-96.00,-24.00,15.80,0.00,1.00,-105.60,-24.00,0
+-91.20,-24.00,15.76,0.00,1.00,-91.20,-24.00,0
+-86.40,-24.00,15.72,0.00,1.00,-81.60,-24.00,0
+-81.60,-24.00,15.68,0.00,1.00,-67.20,-24.00,0
+-76.80,-24.00,15.64,0.00,1.00,-57.60,-24.00,0
+-72.00,-24.00,15.60,0.00,1.00,-48.00,-24.00,0
+-67.20,-19.20,15.56,0.00,1.00,-43.20,-19.20,0
+-62.40,-19.20,15.52,0.00,1.00,-38.40,-19.20,0
+-57.60,-19.20,15.48,0.00,1.00,-33.60,-19.20,0
+-52.80,-19.20,15.44,0.00,1.00,-28.80,-19.20,0
+-48.00,-14.40,15.40,0.00,1.00,-24.00,-14.40,0
+-43.20,-14.40,15.36,0.00,1.00,-19.20,-14.40,0
+-38.40,-14.40,15.32,0.00,1.00,-19.20,-14.40,0
+-33.60,-14.40,15.28,0.00,1.00,-14.40,-9.60,0
+-28.80,-9.60,15.24,0.00,1.00,-14.40,-9.60,0
+-24.00,-9.60,15.20,0.00,1.00,-9.60,-9.60,0
+-19.20,-9.60,15.16,0.00,1.00,-9.60,-4.80,0
+-14.40,-4.80,15.12,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,15.08,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,15.04,0.00,1.00,-0.00,0.00,0
+0.00,0.00,15.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,14.96,0.00,1.00,0.00,4.80,0
+9.60,4.80,14.92,0.00,1.00,4.80,4.80,0
+14.40,4.80,14.88,0.00,1.00,4.80,4.80,0
+19.20,4.80,14.84,0.00,1.00,4.80,9.60,0
+24.00,9.60,14.80,0.00,1.00,9.60,9.60,0
+28.80,9.60,14.76,0.00,1.00,9.60,9.60,0
+33.60,9.60,14.72,0.00,1.00,9.60,9.60,0
+38.40,9.60,14.68,0.00,1.00,14.40,14.40,0
+43.20,14.40,14.64,0.00,1.00,14.40,14.40,0
+48.00,14.40,14.60,0.00,1.00,19.20,14.40,0
+52.80,14.40,14.56,0.00,1.00,24.00,14.40,0
+57.60,14.40,14.52,0.00,1.00,24.00,19.20,0
+62.40,14.40,14.48,0.00,1.00,28.80,19.20,0
+67.20,14.40,14.44,0.00,1.00,38.40,19.20,0
+72.00,19.20,14.40,0.00,1.00,43.20,19.20,0
+76.80,19.20,14.36,0.00,1.00,52.80,19.20,0
+81.60,19.20,14.32,0.00,1.00,62.40,19.20,0
+86.40,19.20,14.28,0.00,1.00,76.80,19.20,0
+91.20,19.20,14.24,0.00,1.00,96.00,19.20,0
+96.00,19.20,14.20,0.00,1.00,110.40,19.20,0
+100.80,19.20,14.16,0.00,1.00,120.00,19.20,0
+105.60,19.20,14.12,0.00,1.00,134.40,19.20,0
+110.40,19.20,14.08,0.00,1.00,139.20,19.20,0
+115.20,14.40,14.04,0.00,1.00,148.80,14.40,0
+120.00,14.40,13.99,0.00,1.00,153.60,14.40,0
+124.80,14.40,13.95,0.00,1.00,158.40,14.40,0
+129.60,14.40,13.91,0.00,1.00,158.40,14.40,0
+134.40,14.40,13.87,0.00,1.00,163.20,14.40,0
+139.20,9.60,13.83,0.00,1.00,163.20,9.60,0
+144.00,9.60,13.79,0.00,1.00,168.00,9.60,0
+148.80,9.60,13.75,0.00,1.00,168.00,9.60,0
+153.60,9.60,13.71,0.00,1.00,172.80,4.80,0
+158.40,4.80,13.67,0.00,1.00,172.80,4.80,0
+163.20,4.80,13.63,0.00,1.00,172.80,4.80,0
+168.00,4.80,13.59,0.00,1.00,177.60,0.00,0
+172.80,0.00,13.55,0.00,1.00,177.60,0.00,0
+177.60,0.00,13.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.47,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,13.43,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,13.39,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,13.35,0.00,1.00,-172.80,-4.80,0
+-158.40,-4.80,13.31,0.00,1.00,-172.80,-9.60,0
+-153.60,-9.60,13.27,0.00,1.00,-172.80,-9.60,0
+-148.80,-9.60,13.23,0.00,1.00,-168.00,-9.60,0
+-144.00,-9.60,13.19,0.00,1.00,-168.00,-14.40,0
+-139.20,-9.60,13.15,0.00,1.00,-163.20,-14.40,0
+-134.40,-14.40,13.11,0.00,1.00,-163.20,-14.40,0
+-129.60,-14.40,13.07,0.00,1.00,-158.40,-14.40,0
+-124.80,-14.40,13.03,0.00,1.00,-158.40,-14.40,0
+-120.00,-14.40,12.99,0.00,1.00,-153.60,-19.20,0
+-115.20,-14.40,12.95,0.00,1.00,-148.80,-19.20,0
+-110.40,-19.20,12.91,0.00,1.00,-139.20,-19.20,0
+-105.60,-19.20,12.87,0.00,1.00,-134.40,-19.20,0
+-100.80,-19.20,12.83,0.00,1.00,-120.00,-19.20,0
+-96.00,-19.20,12.79,0.00,1.00,-110.40,-19.20,0
+-91.20,-19.20,12.75,0.00,1.00,-96.00,-19.20,0
+-86.40,-19.20,12.71,0.00,1.00,-76.80,-19.20,0
+-81.60,-19.20,12.67,0.00,1.00,-62.40,-19.20,0
+-76.80,-19.20,12.63,0.00,1.00,-52.80,-19.20,0
+-72.00,-19.20,12.59,0.00,1.00,-43.20,-19.20,0
+-67.20,-14.40,12.55,0.00,1.00,-38.40,-19.20,0
+-62.40,-14.40,12.51,0.00,1.00,-28.80,-14.40,0
+-57.60,-14.40,12.47,0.00,1.00,-24.00,-14.40,0
+-52.80,-14.40,12.43,0.00,1.00,-24.00,-14.40,0
+-48.00,-14.40,12.39,0.00,1.00,-19.20,-14.40,0
+-43.20,-14.40,12.35,0.00,1.00,-14.40,-9.60,0
+-38.40,-9.60,12.31,0.00,1.00,-14.40,-9.60,0
+-33.60,-9.60,12.27,0.00,1.00,-9.60,-9.60,0
+-28.80,-9.60,12.23,0.00,1.00,-9.60,-9.60,0
+-24.00,-9.60,12.19,0.00,1.00,-9.60,-4.80,0
+-19.20,-4.80,12.15,0.00,1.00,-4.80,-4.80,0
+-14.40,-4.80,12.11,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,12.07,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,12.03,0.00,1.00,-0.00,0.00,0
+0.00,0.00,11.99,0.00,1.00,0.00,0.00,0
+4.80,0.00,11.95,0.00,1.00,0.00,0.00,0
+9.60,0.00,11.91,0.00,1.00,0.00,4.80,0
+14.40,4.80,11.87,0.00,1.00,4.80,4.80,0
+19.20,4.80,11.83,0.00,1.00,4.80,4.80,0
+24.00,4.80,11.79,0.00,1.00,4.80,4.80,0
+28.80,4.80,11.75,0.00,1.00,4.80,9.60,0
+33.60,9.60,11.71,0.00,1.00,9.60,9.60,0
+38.40,9.60,11.67,0.00,1.00,9.60,9.60,0
+43.20,9.60,11.63,0.00,1.00,14.40,9.60,0
+48.00,9.60,11.59,0.00,1.00,14.40,9.60,0
+52.80,9.60,11.55,0.00,1.00,14.40,14.40,0
+57.60,9.60,11.51,0.00,1.00,19.20,14.40,0
+62.40,9.60,11.47,0.00,1.00,24.00,14.40,0
+67.20,14.40,11.43,0.00,1.00,28.80,14.40,0
+72.00,14.40,11.39,0.00,1.00,33.60,14.40,0
+76.80,14.40,11.35,0.00,1.00,43.20,14.40,0
+81.60,14.40,11.31,0.00,1.00,57.60,14.40,0
+86.40,14.40,11.27,0.00,1.00,76.80,14.40,0
+91.20,14.40,11.23,0.00,1.00,96.00,14.40,0
+96.00,14.40,11.19,0.00,1.00,115.20,14.40,0
+100.80,14.40,11.15,0.00,1.00,129.60,14.40,0
+105.60,14.40,11.11,0.00,1.00,139.20,14.40,0
+110.40,14.40,11.07,0.00,1.00,148.80,14.40,0
+115.20,9.60,11.03,0.00,1.00,153.60,14.40,0
+120.00,9.60,10.99,0.00,1.00,158.40,9.60,0
+124.80,9.60,10.95,0.00,1.00,163.20,9.60,0
+129.60,9.60,10.91,0.00,1.00,163.20,9.60,0
+134.40,9.60,10.87,0.00,1.00,168.00,9.60,0
+139.20,9.60,10.83,0.00,1.00,168.00,9.60,0
+144.00,9.60,10.79,0.00,1.00,172.80,9.60,0
+148.80,4.80,10.75,0.00,1.00,172.80,4.80,0
+153.60,4.80,10.71,0.00,1.00,172.80,4.80,0
+158.40,4.80,10.67,0.00,1.00,172.80,4.80,0
+163.20,4.80,10.63,0.00,1.00,177.60,4.80,0
+168.00,4.80,10.59,0.00,1.00,177.60,0.00,0
+172.80,0.00,10.55,0.00,1.00,177.60,0.00,0
+177.60,0.00,10.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.47,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,10.43,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,10.39,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,10.35,0.00,1.00,-177.60,-4.80,0
+-158.40,-4.80,10.31,0.00,1.00,-172.80,-4.80,0
+-153.60,-4.80,10.27,0.00,1.00,-172.80,-9.60,0
+-148.80,-4.80,10.23,0.00,1.00,-172.80,-9.60,0
+-144.00,-9.60,10.19,0.00,1.00,-172.80,-9.60,0
+-139.20,-9.60,10.15,0.00,1.00,-168.00,-9.60,0
+-134.40,-9.60,10.11,0.00,1.00,-168.00,-9.60,0
+-129.60,-9.60,10.07,0.00,1.00,-163.20,-9.60,0
+-124.80,-9.60,10.03,0.00,1.00,-163.20,-14.40,0
+-120.00,-9.60,9.98,0.00,1.00,-158.40,-14.40,0
+-115.20,-9.60,9.94,0.00,1.00,-153.60,-14.40,0
+-110.40,-14.40,9.90,0.00,1.00,-148.80,-14.40,0
+-105.60,-14.40,9.86,0.00,1.00,-139.20,-14.40,0
+-100.80,-14.40,9.82,0.00,1.00,-129.60,-14.40,0
+-96.00,-14.40,9.78,0.00,1.00,-115.20,-14.40,0
+-91.20,-14.40,9.74,0.00,1.00,-96.00,-14.40,0
+-86.40,-14.40,9.70,0.00,1.00,-76.80,-14.40,0
+-81.60,-14.40,9.66,0.00,1.00,-57.60,-14.40,0
+-76.80,-14.40,9.62,0.00,1.00,-43.20,-14.40,0
+-72.00,-14.40,9.58,0.00,1.00,-33.60,-14.40,0
+-67.20,-14.40,9.54,0.00,1.00,-28.80,-14.40,0
+-62.40,-9.60,9.50,0.00,1.00,-24.00,-14.40,0
+-57.60,-9.60,9.46,0.00,1.00,-19.20,-9.60,0
+-52.80,-9.60,9.42,0.00,1.00,-14.40,-9.60,0
+-48.00,-9.60,9.38,0.00,1.00,-14.40,-9.60,0
+-43.20,-9.60,9.34,0.00,1.00,-14.40,-9.60,0
+-38.40,-9.60,9.30,0.00,1.00,-9.60,-9.60,0
+-33.60,-9.60,9.26,0.00,1.00,-9.60,-4.80,0
+-28.80,-4.80,9.22,0.00,1.00,-4.80,-4.80,0
+-24.00,-4.80,9.18,0.00,1.00,-4.80,-4.80,0
+-19.20,-4.80,9.14,0.00,1.00,-4.80,-4.80,0
+-14.40,-4.80,9.10,0.00,1.00,-4.80,-0.00,0
+-9.60,-0.00,9.06,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,9.02,0.00,1.00,-0.00,0.00,0
+0.00,0.00,8.98,0.00,1.00,0.00,0.00,0
+4.80,0.00,8.94,0.00,1.00,0.00,0.00,0
+9.60,0.00,8.90,0.00,1.00,0.00,0.00,0
+14.40,0.00,8.86,0.00,1.00,0.00,4.80,0
+19.20,4.80,8.82,0.00,1.00,4.80,4.80,0
+24.00,4.80,8.78,0.00,1.00,4.80,4.80,0
+28.80,4.80,8.74,0.00,1.00,4.80,4.80,0
+33.60,4.80,8.70,0.00,1.00,4.80,4.80,0
+38.40,4.80,8.66,0.00,1.00,4.80,4.80,0
+43.20,4.80,8.62,0.00,1.00,9.60,4.80,0
+48.00,4.80,8.58,0.00,1.00,9.60,9.60,0
+52.80,4.80,8.54,0.00,1.00,9.60,9.60,0
+57.60,4.80,8.50,0.00,1.00,14.40,9.60,0
+62.40,9.60,8.46,0.00,1.00,14.40,9.60,0
+67.20,9.60,8.42,0.00,1.00,19.20,9.60,0
+72.00,9.60,8.38,0.00,1.00,24.00,9.60,0
+76.80,9.60,8.34,0.00,1.00,33.60,9.60,0
+81.60,9.60,8.30,0.00,1.00,43.20,9.60,0
+86.40,9.60,8.26,0.00,1.00,67.20,9.60,0
+91.20,9.60,8.22,0.00,1.00,96.00,9.60,0
+96.00,9.60,8.18,0.00,1.00,124.80,9.60,0
+100.80,9.60,8.14,0.00,1.00,144.00,9.60,0
+105.60,9.60,8.10,0.00,1.00,153.60,9.60,0
+110.40,9.60,8.06,0.00,1.00,158.40,9.60,0
+115.20,9.60,8.02,0.00,1.00,163.20,9.60,0
+120.00,9.60,7.98,0.00,1.00,168.00,9.60,0
+124.80,4.80,7.94,0.00,1.00,168.00,9.60,0
+129.60,4.80,7.90,0.00,1.00,168.00,4.80,0
+134.40,4.80,7.86,0.00,1.00,172.80,4.80,0
+139.20,4.80,7.82,0.00,1.00,172.80,4.80,0
+144.00,4.80,7.78,0.00,1.00,172.80,4.80,0
+148.80,4.80,7.74,0.00,1.00,172.80,4.80,0
+153.60,4.80,7.70,0.00,1.00,177.60,4.80,0
+158.40,4.80,7.66,0.00,1.00,177.60,4.80,0
+163.20,4.80,7.62,0.00,1.00,177.60,0.00,0
+168.00,0.00,7.58,0.00,1.00,177.60,0.00,0
+172.80,0.00,7.54,0.00,1.00,177.60,0.00,0
+177.60,0.00,7.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,7.46,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,7.42,0.00,1.00,-177.60,-0.00,0
+-168.00,-0.00,7.38,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,7.34,0.00,1.00,-177.60,-4.80,0
+-158.40,-4.80,7.30,0.00,1.00,-177.60,-4.80,0
+-153.60,-4.80,7.26,0.00,1.00,-177.60,-4.80,0
+-148.80,-4.80,7.22,0.00,1.00,-172.80,-4.80,0
+-144.00,-4.80,7.18,0.00,1.00,-172.80,-4.80,0
+-139.20,-4.80,7.14,0.00,1.00,-172.80,-4.80,0
+-134.40,-4.80,7.10,0.00,1.00,-172.80,-9.60,0
+-129.60,-4.80,7.06,0.00,1.00,-168.00,-9.60,0
+-124.80,-4.80,7.02,0.00,1.00,-168.00,-9.60,0
+-120.00,-9.60,6.98,0.00,1.00,-168.00,-9.60,0
+-115.20,-9.60,6.94,0.00,1.00,-163.20,-9.60,0
+-110.40,-9.60,6.90,0.00,1.00,-158.40,-9.60,0
+-105.60,-9.60,6.86,0.00,1.00,-153.60,-9.60,0
+-100.80,-9.60,6.82,0.00,1.00,-144.00,-9.60,0
+-96.00,-9.60,6.78,0.00,1.00,-124.80,-9.60,0
+-91.20,-9.60,6.74,0.00,1.00,-96.00,-9.60,0
+-86.40,-9.60,6.70,0.00,1.00,-67.20,-9.60,0
+-81.60,-9.60,6.66,0.00,1.00,-43.20,-9.60,0
+-76.80,-9.60,6.62,0.00,1.00,-33.60,-9.60,0
+-72.00,-9.60,6.58,0.00,1.00,-24.00,-9.60,0
+-67.20,-9.60,6.54,0.00,1.00,-19.20,-9.60,0
+-62.40,-9.60,6.50,0.00,1.00,-14.40,-9.60,0
+-57.60,-4.80,6.46,0.00,1.00,-14.40,-9.60,0
+-52.80,-4.80,6.42,0.00,1.00,-9.60,-4.80,0
+-48.00,-4.80,6.38,0.00,1.00,-9.60,-4.80,0
+-43.20,-4.80,6.34,0.00,1.00,-9.60,-4.80,0
+-38.40,-4.80,6.30,0.00,1.00,-4.80,-4.80,0
+-33.60,-4.80,6.26,0.00,1.00,-4.80,-4.80,0
+-28.80,-4.80,6.22,0.00,1.00,-4.80,-4.80,0
+-24.00,-4.80,6.18,0.00,1.00,-4.80,-4.80,0
+-19.20,-4.80,6.14,0.00,1.00,-4.80,-0.00,0
+-14.40,-0.00,6.10,0.00,1.00,-0.00,-0.00,0
+-9.60,-0.00,6.06,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,6.02,0.00,1.00,-0.00,0.00,0
+0.00,0.00,5.97,0.00,1.00,0.00,0.00,0
+4.80,0.00,5.93,0.00,1.00,0.00,0.00,0
+9.60,0.00,5.89,0.00,1.00,0.00,0.00,0
+14.40,0.00,5.85,0.00,1.00,0.00,0.00,0
+19.20,0.00,5.81,0.00,1.00,0.00,0.00,0
+24.00,0.00,5.77,0.00,1.00,0.00,0.00,0
+28.80,0.00,5.73,0.00,1.00,0.00,4.80,0
+33.60,0.00,5.69,0.00,1.00,0.00,4.80,0
+38.40,0.00,5.65,0.00,1.00,4.80,4.80,0
+43.20,4.80,5.61,0.00,1.00,4.80,4.80,0
+48.00,4.80,5.57,0.00,1.00,4.80,4.80,0
+52.80,4.80,5.53,0.00,1.00,4.80,4.80,0
+57.60,4.80,5.49,0.00,1.00,4.80,4.80,0
+62.40,4.80,5.45,0.00,1.00,4.80,4.80,0
+67.20,4.80,5.41,0.00,1.00,9.60,4.80,0
+72.00,4.80,5.37,0.00,1.00,9.60,4.80,0
+76.80,4.80,5.33,0.00,1.00,14.40,4.80,0
+81.60,4.80,5.29,0.00,1.00,24.00,4.80,0
+86.40,4.80,5.25,0.00,1.00,43.20,4.80,0
+91.20,4.80,5.21,0.00,1.00,110.40,4.80,0
+96.00,4.80,5.17,0.00,1.00,148.80,4.80,0
+100.80,4.80,5.13,0.00,1.00,163.20,4.80,0
+105.60,4.80,5.09,0.00,1.00,168.00,4.80,0
+110.40,4.80,5.05,0.00,1.00,172.80,4.80,0
+115.20,4.80,5.01,0.00,1.00,172.80,4.80,0
+120.00,4.80,4.97,0.00,1.00,172.80,4.80,0
+124.80,4.80,4.93,0.00,1.00,172.80,4.80,0
+129.60,4.80,4.89,0.00,1.00,177.60,4.80,0
+134.40,4.80,4.85,0.00,1.00,177.60,4.80,0
+139.20,0.00,4.81,0.00,1.00,177.60,4.80,0
+144.00,0.00,4.77,0.00,1.00,177.60,4.80,0
+148.80,0.00,4.73,0.00,1.00,177.60,0.00,0
+153.60,0.00,4.69,0.00,1.00,177.60,0.00,0
+158.40,0.00,4.65,0.00,1.00,177.60,0.00,0
+163.20,0.00,4.61,0.00,1.00,177.60,0.00,0
+168.00,0.00,4.57,0.00,1.00,177.60,0.00,0
+172.80,0.00,4.53,0.00,1.00,177.60,0.00,0
+177.60,0.00,4.49,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,4.45,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,4.41,0.00,1.00,-177.60,-0.00,0
+-168.00,-0.00,4.37,0.00,1.00,-177.60,-0.00,0
+-163.20,-0.00,4.33,0.00,1.00,-177.60,-0.00,0
+-158.40,-0.00,4.29,0.00,1.00,-177.60,-0.00,0
+-153.60,-0.00,4.25,0.00,1.00,-177.60,-4.80,0
+-148.80,-0.00,4.21,0.00,1.00,-177.60,-4.80,0
+-144.00,-0.00,4.17,0.00,1.00,-177.60,-4.80,0
+-139.20,-0.00,4.13,0.00,1.00,-177.60,-4.80,0
+-134.40,-4.80,4.09,0.00,1.00,-177.60,-4.80,0
+-129.60,-4.80,4.05,0.00,1.00,-177.60,-4.80,0
+-124.80,-4.80,4.01,0.00,1.00,-172.80,-4.80,0
+-120.00,-4.80,3.97,0.00,1.00,-172.80,-4.80,0
+-115.20,-4.80,3.93,0.00,1.00,-172.80,-4.80,0
+-110.40,-4.80,3.89,0.00,1.00,-172.80,-4.80,0
+-105.60,-4.80,3.85,0.00,1.00,-168.00,-4.80,0
+-100.80,-4.80,3.81,0.00,1.00,-163.20,-4.80,0
+-96.00,-4.80,3.77,0.00,1.00,-148.80,-4.80,0
+-91.20,-4.80,3.73,0.00,1.00,-110.40,-4.80,0
+-86.40,-4.80,3.69,0.00,1.00,-43.20,-4.80,0
+-81.60,-4.80,3.65,0.00,1.00,-24.00,-4.80,0
+-76.80,-4.80,3.61,0.00,1.00,-14.40,-4.80,0
+-72.00,-4.80,3.57,0.00,1.00,-9.60,-4.80,0
+-67.20,-4.80,3.53,0.00,1.00,-9.60,-4.80,0
+-62.40,-4.80,3.49,0.00,1.00,-4.80,-4.80,0
+-57.60,-4.80,3.45,0.00,1.00,-4.80,-4.80,0
+-52.80,-4.80,3.41,0.00,1.00,-4.80,-4.80,0
+-48.00,-4.80,3.37,0.00,1.00,-4.80,-4.80,0
+-43.20,-4.80,3.33,0.00,1.00,-4.80,-4.80,0
+-38.40,-0.00,3.29,0.00,1.00,-4.80,-4.80,0
+-33.60,-0.00,3.25,0.00,1.00,-0.00,-0.00,0
+-28.80,-0.00,3.21,0.00,1.00,-0.00,-0.00,0
+-24.00,-0.00,3.17,0.00,1.00,-0.00,-0.00,0
+-19.20,-0.00,3.13,0.00,1.00,-0.00,-0.00,0
+-14.40,-0.00,3.09,0.00,1.00,-0.00,-0.00,0
+-9.60,-0.00,3.05,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,3.01,0.00,1.00,-0.00,0.00,0
+0.00,0.00,2.97,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,2.93,0.00,1.00,-0.00,0.00,0
+9.60,-0.00,2.89,0.00,1.00,-0.00,0.00,0
+14.40,-0.00,2.85,0.00,1.00,-0.00,0.00,0
+19.20,-0.00,2.81,0.00,1.00,-0.00,0.00,0
+24.00,-0.00,2.77,0.00,1.00,-0.00,0.00,0
+28.80,-0.00,2.73,0.00,1.00,-0.00,0.00,0
+33.60,-0.00,2.69,0.00,1.00,-0.00,0.00,0
+38.40,-0.00,2.65,0.00,1.00,-0.00,0.00,0
+43.20,-0.00,2.61,0.00,1.00,-0.00,0.00,0
+48.00,-0.00,2.57,0.00,1.00,-0.00,0.00,0
+52.80,-0.00,2.53,0.00,1.00,-0.00,0.00,0
+57.60,-0.00,2.49,0.00,1.00,-0.00,0.00,0
+62.40,-0.00,2.45,0.00,1.00,-0.00,0.00,0
+67.20,-0.00,2.41,0.00,1.00,-4.80,0.00,0
+72.00,-0.00,2.37,0.00,1.00,-4.80,0.00,0
+76.80,-0.00,2.33,0.00,1.00,-4.80,0.00,0
+81.60,-0.00,2.29,0.00,1.00,-9.60,0.00,0
+86.40,-0.00,2.25,0.00,1.00,-19.20,0.00,0
+91.20,-0.00,2.21,0.00,1.00,-134.40,0.00,0
+96.00,-0.00,2.17,0.00,1.00,-168.00,0.00,0
+100.80,-0.00,2.13,0.00,1.00,-172.80,0.00,0
+105.60,-0.00,2.09,0.00,1.00,-177.60,0.00,0
+110.40,-0.00,2.05,0.00,1.00,-177.60,0.00,0
+115.20,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+120.00,-0.00,1.96,0.00,1.00,-177.60,0.00,0
+124.80,-0.00,1.92,0.00,1.00,-177.60,0.00,0
+129.60,-0.00,1.88,0.00,1.00,-177.60,0.00,0
+134.40,-0.00,1.84,0.00,1.00,-177.60,0.00,0
+139.20,-0.00,1.80,0.00,1.00,-177.60,0.00,0
+144.00,-0.00,1.76,0.00,1.00,-177.60,0.00,0
+148.80,-0.00,1.72,0.00,1.00,-177.60,0.00,0
+153.60,-0.00,1.68,0.00,1.00,-177.60,0.00,0
+158.40,-0.00,1.64,0.00,1.00,-177.60,0.00,0
+163.20,-0.00,1.60,0.00,1.00,-177.60,0.00,0
+168.00,-0.00,1.56,0.00,1.00,-177.60,0.00,0
+172.80,-0.00,1.52,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,1.48,0.00,1.00,-177.60,0.00,0
+-177.60,0.00,1.44,0.00,1.00,177.60,0.00,0
+-172.80,0.00,1.40,0.00,1.00,177.60,0.00,0
+-168.00,0.00,1.36,0.00,1.00,177.60,0.00,0
+-163.20,0.00,1.32,0.00,1.00,177.60,0.00,0
+-158.40,0.00,1.28,0.00,1.00,177.60,0.00,0
+-153.60,0.00,1.24,0.00,1.00,177.60,0.00,0
+-148.80,0.00,1.20,0.00,1.00,177.60,0.00,0
+-144.00,0.00,1.16,0.00,1.00,177.60,0.00,0
+-139.20,0.00,1.12,0.00,1.00,177.60,0.00,0
+-134.40,0.00,1.08,0.00,1.00,177.60,0.00,0
+-129.60,0.00,1.04,0.00,1.00,177.60,0.00,0
+-124.80,0.00,1.00,0.00,1.00,177.60,0.00,0
+-120.00,0.00,0.96,0.00,1.00,177.60,0.00,0
+-115.20,0.00,0.92,0.00,1.00,177.60,0.00,0
+-110.40,0.00,0.88,0.00,1.00,177.60,0.00,0
+-105.60,0.00,0.84,0.00,1.00,177.60,0.00,0
+-100.80,0.00,0.80,0.00,1.00,172.80,0.00,0
+-96.00,0.00,0.76,0.00,1.00,168.00,0.00,0
+-91.20,0.00,0.72,0.00,1.00,134.40,0.00,0
+-86.40,0.00,0.68,0.00,1.00,19.20,0.00,0
+-81.60,0.00,0.64,0.00,1.00,9.60,0.00,0
+-76.80,0.00,0.60,0.00,1.00,4.80,0.00,0
+-72.00,0.00,0.56,0.00,1.00,4.80,0.00,0
+-67.20,0.00,0.52,0.00,1.00,4.80,0.00,0
+-62.40,0.00,0.48,0.00,1.00,0.00,0.00,0
+-57.60,0.00,0.44,0.00,1.00,0.00,0.00,0
+-52.80,0.00,0.40,0.00,1.00,0.00,0.00,0
+-48.00,0.00,0.36,0.00,1.00,0.00,0.00,0
+-43.20,0.00,0.32,0.00,1.00,0.00,0.00,0
+-38.40,0.00,0.28,0.00,1.00,0.00,0.00,0
+-33.60,0.00,0.24,0.00,1.00,0.00,0.00,0
+-28.80,0.00,0.20,0.00,1.00,0.00,0.00,0
+-24.00,0.00,0.16,0.00,1.00,0.00,0.00,0
+-19.20,0.00,0.12,0.00,1.00,0.00,0.00,0
+-14.40,0.00,0.08,0.00,1.00,0.00,0.00,0
+-9.60,0.00,0.04,0.00,1.00,0.00,0.00,0
+-4.80,0.00,0.00,0.00,1.00,0.00,0.00,0
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA2TC16c.met b/scripts/testv/stvOMASA_4ISM_1MASA2TC16c.met
new file mode 100644
index 0000000000000000000000000000000000000000..00acdae5394c5d40e9193d7dd9cd1fee6d182c24
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA2TC16c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5a1f87bfe360dbd221a94583aa68a58ef050e968a63351730d643f2dc2cac4e1
+size 204600
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA2TC16c.wav b/scripts/testv/stvOMASA_4ISM_1MASA2TC16c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..7e1ae284212db8a7a97645a08ac9b8ff3e5fdf0f
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA2TC16c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:414d1438fb905bb7abc589fcf09c82a6e71c754d0c8c0d583347ec6fa2b5940b
+size 1152080
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA2TC16c_ISM1.csv b/scripts/testv/stvOMASA_4ISM_1MASA2TC16c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA2TC16c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA2TC16c_ISM2.csv b/scripts/testv/stvOMASA_4ISM_1MASA2TC16c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA2TC16c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA2TC16c_ISM3.csv b/scripts/testv/stvOMASA_4ISM_1MASA2TC16c_ISM3.csv
new file mode 100644
index 0000000000000000000000000000000000000000..14eee9b693b536fa2fd22d2813d7f588b8930b06
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA2TC16c_ISM3.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0
+-177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0
+4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0
+-168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0
+14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0
+-163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0
+19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0
+-153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0
+28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0
+-148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0
+38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0
+-139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0
+48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0
+-124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0
+57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0
+-115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0
+72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0
+-100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0
+86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0
+-86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0
+100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0
+-76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0
+110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0
+-62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0
+124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0
+-52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0
+134.40,33.60,0.28,0.00,1.00,177.60,0.00,0
+-38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0
+144.00,28.80,0.30,0.00,1.00,177.60,0.00,0
+-33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0
+153.60,24.00,0.32,0.00,1.00,177.60,0.00,0
+-24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0
+158.40,19.20,0.34,0.00,1.00,177.60,0.00,0
+-14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0
+168.00,9.60,0.36,0.00,1.00,177.60,0.00,0
+-9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0
+172.80,4.80,0.38,0.00,1.00,177.60,0.00,0
+-0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0
+-177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0
+4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0
+14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0
+19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0
+-158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0
+28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0
+-148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0
+33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0
+-139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0
+43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0
+-129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0
+57.60,38.40,15.47,0.00,1.00,177.60,0.00,0
+-120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0
+67.20,43.20,15.44,0.00,1.00,177.60,0.00,0
+-105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0
+81.60,43.20,15.42,0.00,1.00,177.60,0.00,0
+-91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0
+96.00,43.20,15.40,0.00,1.00,0.00,0.00,0
+-76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0
+110.40,43.20,15.38,0.00,1.00,0.00,0.00,0
+-67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0
+120.00,38.40,15.36,0.00,1.00,0.00,0.00,0
+-52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0
+129.60,38.40,15.34,0.00,1.00,0.00,0.00,0
+-43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0
+144.00,33.60,15.32,0.00,1.00,0.00,0.00,0
+-33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0
+148.80,24.00,15.30,0.00,1.00,0.00,0.00,0
+-24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0
+158.40,19.20,15.27,0.00,1.00,0.00,0.00,0
+-19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0
+168.00,14.40,15.25,0.00,1.00,0.00,0.00,0
+-9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0
+172.80,4.80,15.23,0.00,1.00,0.00,0.00,0
+-4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0
+0.00,0.00,15.21,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0
+9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0
+14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0
+-163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0
+24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0
+-153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0
+28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0
+-144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0
+38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0
+-134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0
+48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0
+-124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0
+62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0
+-115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0
+72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0
+-100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0
+86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0
+-86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0
+96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0
+-76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0
+110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0
+-62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0
+120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0
+-52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0
+134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0
+-43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0
+144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0
+-33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0
+148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0
+-24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0
+158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0
+-19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0
+168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0
+-9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0
+172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0
+4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0
+14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0
+19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0
+-153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0
+28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0
+-148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0
+38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0
+-139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0
+48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0
+-124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0
+57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0
+-115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0
+72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0
+-105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0
+81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0
+-91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0
+96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0
+-76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0
+105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0
+-67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0
+120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0
+-57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0
+129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0
+-43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0
+139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0
+-33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0
+148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0
+-28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0
+158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0
+-19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0
+163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0
+-9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0
+172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0
+0.00,0.00,1.60,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0
+9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0
+14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0
+-158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0
+24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0
+-153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0
+33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0
+-144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0
+43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0
+-134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0
+52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0
+-124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0
+62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0
+-110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0
+72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0
+-100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0
+86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0
+-86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0
+96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0
+-76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0
+110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0
+-67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0
+120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0
+-52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0
+129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0
+-43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0
+139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0
+-33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0
+148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0
+-24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0
+158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0
+-19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0
+168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0
+172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0
+14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0
+-163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0
+24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0
+-153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0
+28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0
+-144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0
+38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0
+-134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0
+48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0
+-124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0
+62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0
+-115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0
+72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0
+-100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0
+81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0
+-91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0
+96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0
+-81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0
+105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0
+-67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0
+115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0
+-57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0
+129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0
+-48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0
+139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0
+-38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0
+148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0
+-28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0
+153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0
+-19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0
+163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0
+-9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0
+172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0
+0.00,0.00,13.61,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0
+9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0
+-168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0
+24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0
+-148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0
+33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0
+-139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0
+43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0
+-129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0
+52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0
+-120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0
+62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0
+-110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0
+76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0
+-100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0
+86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0
+-86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0
+96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0
+-76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0
+105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0
+-67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0
+120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0
+-57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0
+129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0
+-48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0
+139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0
+-38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0
+148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0
+158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0
+-19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0
+163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0
+172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0
+4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0
+14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0
+-163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0
+24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0
+-153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0
+33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0
+-144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0
+43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0
+-134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0
+52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0
+-124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0
+62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0
+-115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0
+72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0
+-100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0
+81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0
+-91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0
+96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0
+-81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0
+105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0
+-67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0
+115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0
+-57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0
+124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0
+-48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0
+134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0
+-38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0
+144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0
+-28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0
+153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0
+-19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0
+163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0
+-14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0
+172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0
+-4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0
+0.00,0.00,3.20,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0
+9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0
+19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0
+24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0
+-148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0
+33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0
+-139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0
+43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0
+-129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0
+52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0
+-120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0
+67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0
+-110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0
+76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0
+-100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0
+86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0
+-86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0
+96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0
+-76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0
+105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0
+-67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0
+115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0
+-57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0
+129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0
+-48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0
+139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0
+-38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0
+148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0
+153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0
+-19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0
+163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0
+172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0
+4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0
+14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0
+24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0
+-153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0
+33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0
+-144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0
+43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0
+-134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0
+52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0
+-124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0
+62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0
+-110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0
+72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0
+-100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0
+81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0
+-91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0
+96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0
+-81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0
+105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0
+-72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0
+115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0
+-57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0
+124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0
+-48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0
+134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0
+-38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0
+144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0
+-28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0
+153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0
+-24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0
+163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0
+-14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0
+172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,12.01,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0
+9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0
+-158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0
+28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0
+-148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0
+38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0
+-139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0
+48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0
+-129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0
+57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0
+-120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0
+67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0
+-110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0
+76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0
+-100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0
+86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0
+-86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0
+96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0
+-76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0
+105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0
+-67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0
+115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0
+-57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0
+124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0
+-48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0
+134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0
+-38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0
+144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0
+-28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0
+153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0
+-19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0
+163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0
+172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0
+4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0
+14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0
+24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0
+-148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0
+33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0
+-139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0
+43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0
+-129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0
+52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0
+-120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0
+62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0
+-110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0
+72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0
+-100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0
+81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0
+-91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0
+96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0
+-81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0
+105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0
+-72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0
+115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0
+-62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0
+124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0
+-52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0
+134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0
+-43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0
+144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0
+-33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0
+153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0
+-24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0
+163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0
+172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0
+0.00,0.00,4.81,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0
+9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0
+19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0
+28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0
+-148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0
+38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0
+-139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0
+48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0
+-129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0
+57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0
+-120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0
+67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0
+-110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0
+76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0
+-100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0
+86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0
+-86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0
+96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0
+-76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0
+105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0
+-67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0
+115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0
+-57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0
+124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0
+-48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0
+134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0
+-38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0
+144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0
+-28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0
+153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0
+-19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0
+163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0
+-9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0
+172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0
+4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0
+14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0
+24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0
+-148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0
+33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0
+-139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0
+43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0
+-129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0
+52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0
+-120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0
+62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0
+-110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0
+72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0
+-100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0
+81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0
+-91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0
+96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0
+-81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0
+105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0
+-72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0
+115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0
+-62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0
+124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0
+-52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0
+134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0
+-43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0
+144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0
+-33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0
+153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0
+-24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0
+163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0
+172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+0.00,0.00,10.40,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0
+9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0
+19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0
+28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0
+-148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0
+38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0
+-139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0
+48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0
+-129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0
+57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0
+-120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0
+67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0
+-110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0
+76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0
+-100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0
+86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0
+-86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0
+96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0
+-76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0
+105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0
+-67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0
+115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0
+-57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0
+124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0
+-48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0
+134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0
+-38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0
+144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0
+-28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0
+153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0
+163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0
+-9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0
+172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0
+4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0
+14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0
+24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0
+33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0
+-139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0
+43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0
+-129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0
+52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0
+-120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0
+62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0
+-110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0
+72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0
+-100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0
+81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0
+-91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0
+96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0
+-81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0
+105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0
+-72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0
+115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0
+-62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0
+124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0
+-52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0
+134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0
+-43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0
+144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0
+-33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0
+153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0
+-24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0
+163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0
+172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,6.41,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0
+9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0
+19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0
+-158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0
+28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0
+-148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0
+38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0
+-139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0
+48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0
+-129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0
+57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0
+-120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0
+67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0
+-110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0
+76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0
+-100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0
+86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0
+-86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0
+96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0
+-76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0
+105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0
+-67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0
+115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0
+-57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0
+124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0
+-48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0
+134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0
+-38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0
+144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0
+-28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0
+153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0
+163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0
+172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0
+4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0
+14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0
+-158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0
+24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0
+33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0
+-139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0
+43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0
+-129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0
+52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0
+-120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0
+62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0
+-110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0
+72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0
+-100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0
+81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0
+-91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0
+96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0
+-81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0
+105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0
+-72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0
+115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0
+-62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0
+124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0
+-52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0
+134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0
+-43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0
+144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0
+-33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0
+153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0
+-24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0
+163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0
+-14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0
+172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.80,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0
+9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0
+19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0
+-158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0
+28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0
+-148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0
+38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0
+-139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0
+48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0
+-129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0
+57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0
+-120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0
+67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0
+-110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0
+76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0
+-100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0
+86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0
+-86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0
+96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0
+-76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0
+105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0
+-67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0
+115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0
+-57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0
+124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0
+-48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0
+134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0
+-38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0
+144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0
+-28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0
+153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0
+-19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0
+163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0
+172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0
+-0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0
+4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0
+-168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0
+14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0
+-158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0
+24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0
+-148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0
+33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0
+-139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0
+43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0
+-129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0
+52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0
+-120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0
+62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0
+-110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0
+72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0
+-100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0
+81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0
+-91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0
+96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0
+-81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0
+105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0
+-72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0
+115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0
+-62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0
+124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0
+-52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0
+134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0
+-43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0
+144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0
+-33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0
+153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0
+-24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0
+163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0
+-14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0
+172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.01,0.00,1.00,0.00,0.00,0
+-177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0
+-168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0
+19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0
+-158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0
+28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0
+-148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0
+38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0
+-139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0
+48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0
+-129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0
+57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0
+-120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0
+67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0
+-110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0
+76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0
+-100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0
+86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0
+-86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0
+96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0
+-76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0
+105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0
+-67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0
+115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0
+-57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0
+124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0
+-48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0
+134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0
+-38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0
+144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0
+-28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0
+153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0
+-19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0
+163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0
+172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0
+14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0
+-158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0
+24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0
+-148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0
+33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0
+-139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0
+43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0
+-129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0
+52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0
+-120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0
+62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0
+-110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0
+72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0
+-100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0
+81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0
+-91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0
+96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0
+-81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0
+105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0
+-72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0
+115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0
+-62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0
+124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0
+-52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0
+134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0
+-43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0
+144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0
+-33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0
+153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0
+-24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0
+163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0
+-4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0
+0.00,0.00,7.20,0.00,1.00,0.00,0.00,0
+-177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0
+-168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0
+19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0
+38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0
+-139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0
+48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0
+-129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0
+57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0
+-120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0
+67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0
+-110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0
+76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0
+-100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0
+86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0
+-86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0
+96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0
+-76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0
+105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0
+-67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0
+115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0
+-57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0
+124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0
+-48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0
+134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0
+-38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0
+144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0
+-19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0
+163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0
+14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0
+-148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0
+33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0
+-139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0
+43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0
+-129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0
+52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0
+-120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0
+62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0
+72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0
+-100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0
+81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0
+-91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0
+96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0
+-81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0
+105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0
+-72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0
+115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0
+-62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0
+124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0
+-52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0
+134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0
+-43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0
+144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0
+-33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0
+153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0
+0.00,0.00,9.61,0.00,1.00,0.00,0.00,0
+-177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0
+48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0
+-129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0
+57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0
+-120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0
+67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0
+-110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0
+76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0
+-100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0
+86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0
+-86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0
+96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0
+-76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0
+105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0
+-67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0
+115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0
+-57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0
+124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0
+-48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0
+134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0
+163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0
+-9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0
+-148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0
+33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0
+-139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0
+43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0
+-129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0
+52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0
+-120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0
+62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0
+72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0
+-100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0
+81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0
+-91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0
+96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0
+-81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0
+105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0
+-72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0
+115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0
+-62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0
+124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0
+-52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0
+134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0
+-43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0
+144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0
+-33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0
+153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0
+-14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0
+172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0
+0.00,0.00,5.60,0.00,1.00,0.00,0.00,0
+-177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0
+-158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0
+28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0
+-148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0
+48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0
+-129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0
+57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0
+-120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0
+67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0
+-110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0
+76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0
+-100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0
+86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0
+-86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0
+96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0
+-76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0
+105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0
+-67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0
+115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0
+-57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0
+124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0
+-48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0
+134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0
+-28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0
+153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0
+-158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0
+-148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0
+33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0
+-139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0
+43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0
+-129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0
+52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0
+-120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0
+62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0
+-110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0
+72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0
+-100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0
+81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0
+-91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0
+96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0
+-81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0
+105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0
+-72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0
+115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0
+-62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0
+124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0
+-52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0
+134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0
+-43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0
+144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0
+-33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0
+153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0
+0.00,0.00,11.21,0.00,1.00,0.00,0.00,0
+-177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0
+28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0
+-148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0
+38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0
+-139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0
+48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0
+57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0
+-120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0
+67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0
+-110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0
+76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0
+-100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0
+86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0
+-86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0
+96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0
+-76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0
+105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0
+-67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0
+115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0
+-57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0
+124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0
+-48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0
+134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0
+-38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0
+144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0
+-28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0
+153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0
+-148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0
+-139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0
+43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0
+-129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0
+52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0
+-120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0
+62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0
+-110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0
+72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0
+-100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0
+81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0
+-91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0
+96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0
+-81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0
+105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0
+-72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0
+115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0
+-62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0
+124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0
+-52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0
+134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0
+-43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0
+-33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0
+153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0
+-24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0
+163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,3.99,0.00,1.00,0.00,0.00,0
+-177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0
+19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0
+-148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0
+33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0
+43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0
+52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0
+-120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0
+62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0
+-110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0
+76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0
+-100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0
+86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0
+-86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0
+96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0
+-76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0
+105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0
+-67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0
+120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0
+-57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0
+-48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0
+139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0
+148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0
+158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0
+163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0
+43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0
+-134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0
+-124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0
+62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0
+-110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0
+72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0
+-100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0
+81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0
+-91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0
+96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0
+-81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0
+105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0
+-72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0
+115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0
+-57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0
+124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0
+-48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0
+134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0
+-38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0
+-28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0
+-24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,12.82,0.00,1.00,0.00,0.00,0
+-177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0
+-148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0
+33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0
+-129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0
+-120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0
+62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0
+-110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0
+76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0
+-100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0
+86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0
+-86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0
+96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0
+-76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0
+110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0
+-67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0
+120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0
+-57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0
+-48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0
+-163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0
+33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0
+43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0
+-134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0
+62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0
+-115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0
+72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0
+-100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0
+81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0
+-91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0
+96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0
+-81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0
+105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0
+-67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0
+115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0
+-57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0
+124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0
+-48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0
+134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0
+-38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0
+144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0
+-14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,2.39,0.00,1.00,0.00,0.00,0
+-177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0
+33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0
+-144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0
+-134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0
+62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0
+-110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0
+72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0
+-100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0
+86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0
+-86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0
+96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0
+-76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0
+110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0
+-67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0
+120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0
+-52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0
+129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0
+-19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0
+28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0
+-144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0
+38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0
+-134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0
+48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0
+57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0
+-115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0
+72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0
+-105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0
+81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0
+-91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0
+96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0
+-81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0
+105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0
+-67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0
+120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0
+-57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0
+129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0
+-48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0
+139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0
+-38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0
+158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0
+0.00,0.00,14.42,0.00,1.00,0.00,0.00,0
+-177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0
+-163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0
+24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0
+28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0
+-144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0
+38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0
+-134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0
+48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0
+62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0
+-115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0
+72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0
+86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0
+-86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0
+96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0
+-76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0
+110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0
+-62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0
+120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0
+-52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0
+134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0
+158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0
+-148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0
+38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0
+-139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0
+48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0
+-129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0
+-115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0
+67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0
+-105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0
+81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0
+-91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0
+96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0
+105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0
+-67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0
+120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0
+-52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0
+129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0
+139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0
+163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0
+0.00,0.00,0.79,0.00,1.00,0.00,0.00,0
+-177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0
+4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0
+-163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0
+19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0
+-153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0
+28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0
+-148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0
+38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0
+-139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0
+48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0
+-124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0
+57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0
+-115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0
+72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0
+86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0
+-86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0
+100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0
+-76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0
+110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0
+-62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0
+124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0
+-48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0
+134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0
+-38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0
+-28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0
+-24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0
+163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0
+168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0
+9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0
+-158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0
+-148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0
+33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0
+-139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0
+43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0
+-129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0
+-120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0
+67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0
+-105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0
+81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0
+-91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0
+96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0
+110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0
+-67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0
+120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0
+-52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0
+134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0
+144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0
+153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0
+-24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0
+-19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0
+168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA2TC16c_ISM4.csv b/scripts/testv/stvOMASA_4ISM_1MASA2TC16c_ISM4.csv
new file mode 100644
index 0000000000000000000000000000000000000000..8a14c3413ddd2dd47415bf6de3e19631f65f8f6c
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA2TC16c_ISM4.csv
@@ -0,0 +1,1500 @@
+-0.00,0.00,0.00,0.00,1.00,0.00,4.80,0
+-0.00,4.80,0.06,0.00,1.00,4.80,9.60,0
+-0.00,9.60,0.13,0.00,1.00,9.60,14.40,0
+-0.00,14.40,0.19,0.00,1.00,14.40,19.20,0
+-0.00,19.20,0.26,0.00,1.00,19.20,24.00,0
+-0.00,24.00,0.32,0.00,1.00,24.00,28.80,0
+-0.00,28.80,0.39,0.00,1.00,28.80,33.60,0
+-0.00,33.60,0.45,0.00,1.00,33.60,38.40,0
+-0.00,38.40,0.51,0.00,1.00,38.40,43.20,0
+-0.00,43.20,0.58,0.00,1.00,43.20,48.00,0
+-0.00,48.00,0.64,0.00,1.00,48.00,52.80,0
+-0.00,52.80,0.71,0.00,1.00,52.80,57.60,0
+-0.00,57.60,0.77,0.00,1.00,57.60,62.40,0
+-0.00,62.40,0.84,0.00,1.00,62.40,67.20,0
+-0.00,67.20,0.90,0.00,1.00,67.20,72.00,0
+-0.00,72.00,0.96,0.00,1.00,72.00,76.80,0
+-0.00,76.80,1.03,0.00,1.00,76.80,81.60,0
+-0.00,81.60,1.09,0.00,1.00,81.60,86.40,0
+-0.00,86.40,1.16,0.00,1.00,86.40,86.40,0
+-177.60,89.20,1.22,0.00,1.00,91.20,81.60,0
+-177.60,86.40,1.29,0.00,1.00,96.00,76.80,0
+-177.60,81.60,1.35,0.00,1.00,100.80,72.00,0
+-177.60,76.80,1.41,0.00,1.00,105.60,67.20,0
+-177.60,72.00,1.48,0.00,1.00,110.40,62.40,0
+-177.60,67.20,1.54,0.00,1.00,115.20,57.60,0
+177.60,62.40,1.61,0.00,1.00,120.00,52.80,0
+177.60,57.60,1.67,0.00,1.00,124.80,48.00,0
+177.60,52.80,1.73,0.00,1.00,129.60,43.20,0
+177.60,48.00,1.80,0.00,1.00,134.40,38.40,0
+177.60,43.20,1.86,0.00,1.00,139.20,33.60,0
+177.60,38.40,1.93,0.00,1.00,144.00,28.80,0
+177.60,33.60,1.99,0.00,1.00,148.80,24.00,0
+177.60,28.80,2.06,0.00,1.00,153.60,19.20,0
+177.60,24.00,2.12,0.00,1.00,158.40,14.40,0
+177.60,19.20,2.18,0.00,1.00,163.20,9.60,0
+177.60,14.40,2.25,0.00,1.00,168.00,4.80,0
+177.60,9.60,2.31,0.00,1.00,172.80,0.00,0
+177.60,4.80,2.38,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.44,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,2.51,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,2.57,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,2.63,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,2.70,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,2.76,0.00,1.00,-153.60,-28.80,0
+-177.60,-28.80,2.83,0.00,1.00,-148.80,-33.60,0
+-177.60,-33.60,2.89,0.00,1.00,-144.00,-38.40,0
+-177.60,-38.40,2.96,0.00,1.00,-139.20,-43.20,0
+-177.60,-48.00,3.02,0.00,1.00,-134.40,-48.00,0
+-177.60,-48.00,3.08,0.00,1.00,-129.60,-52.80,0
+-177.60,-52.80,3.15,0.00,1.00,-124.80,-57.60,0
+-177.60,-57.60,3.21,0.00,1.00,-120.00,-62.40,0
+177.60,-62.40,3.28,0.00,1.00,-115.20,-67.20,0
+177.60,-67.20,3.34,0.00,1.00,-110.40,-72.00,0
+177.60,-76.80,3.41,0.00,1.00,-105.60,-76.80,0
+177.60,-76.80,3.47,0.00,1.00,-100.80,-81.60,0
+177.60,-86.40,3.53,0.00,1.00,-96.00,-86.40,0
+177.60,-89.20,3.60,0.00,1.00,-91.20,-86.40,0
+0.00,-86.40,3.66,0.00,1.00,-86.40,-81.60,0
+0.00,-81.60,3.73,0.00,1.00,-81.60,-76.80,0
+0.00,-76.80,3.79,0.00,1.00,-76.80,-72.00,0
+0.00,-72.00,3.86,0.00,1.00,-72.00,-67.20,0
+0.00,-67.20,3.92,0.00,1.00,-67.20,-62.40,0
+0.00,-62.40,3.98,0.00,1.00,-62.40,-57.60,0
+0.00,-57.60,4.05,0.00,1.00,-57.60,-52.80,0
+0.00,-52.80,4.11,0.00,1.00,-52.80,-48.00,0
+0.00,-48.00,4.18,0.00,1.00,-48.00,-43.20,0
+0.00,-43.20,4.24,0.00,1.00,-43.20,-38.40,0
+0.00,-38.40,4.31,0.00,1.00,-38.40,-33.60,0
+0.00,-33.60,4.37,0.00,1.00,-33.60,-28.80,0
+0.00,-28.80,4.43,0.00,1.00,-28.80,-24.00,0
+0.00,-24.00,4.50,0.00,1.00,-24.00,-19.20,0
+0.00,-19.20,4.56,0.00,1.00,-19.20,-14.40,0
+0.00,-14.40,4.63,0.00,1.00,-14.40,-9.60,0
+0.00,-9.60,4.69,0.00,1.00,-9.60,-4.80,0
+0.00,-4.80,4.76,0.00,1.00,-4.80,0.00,0
+0.00,0.00,4.82,0.00,1.00,0.00,4.80,0
+0.00,4.80,4.88,0.00,1.00,4.80,9.60,0
+0.00,9.60,4.95,0.00,1.00,9.60,14.40,0
+0.00,14.40,5.01,0.00,1.00,14.40,19.20,0
+0.00,19.20,5.08,0.00,1.00,19.20,24.00,0
+0.00,24.00,5.14,0.00,1.00,24.00,28.80,0
+4.80,28.80,5.20,0.00,1.00,28.80,33.60,0
+4.80,33.60,5.27,0.00,1.00,33.60,38.40,0
+4.80,38.40,5.33,0.00,1.00,38.40,43.20,0
+4.80,43.20,5.40,0.00,1.00,43.20,48.00,0
+4.80,48.00,5.46,0.00,1.00,48.00,52.80,0
+4.80,52.80,5.53,0.00,1.00,52.80,57.60,0
+9.60,57.60,5.59,0.00,1.00,57.60,62.40,0
+9.60,62.40,5.65,0.00,1.00,62.40,67.20,0
+9.60,67.20,5.72,0.00,1.00,67.20,72.00,0
+14.40,72.00,5.78,0.00,1.00,72.00,76.80,0
+19.20,76.80,5.85,0.00,1.00,76.80,81.60,0
+28.80,81.60,5.91,0.00,1.00,81.60,86.40,0
+52.80,86.40,5.98,0.00,1.00,86.40,86.40,0
+105.60,86.40,6.04,0.00,1.00,91.20,81.60,0
+139.20,81.60,6.10,0.00,1.00,96.00,76.80,0
+158.40,76.80,6.17,0.00,1.00,100.80,72.00,0
+163.20,72.00,6.23,0.00,1.00,105.60,67.20,0
+168.00,67.20,6.30,0.00,1.00,110.40,62.40,0
+168.00,62.40,6.36,0.00,1.00,115.20,57.60,0
+172.80,57.60,6.43,0.00,1.00,120.00,52.80,0
+172.80,52.80,6.49,0.00,1.00,124.80,48.00,0
+172.80,48.00,6.55,0.00,1.00,129.60,43.20,0
+172.80,43.20,6.62,0.00,1.00,134.40,38.40,0
+177.60,38.40,6.68,0.00,1.00,139.20,33.60,0
+177.60,33.60,6.75,0.00,1.00,144.00,28.80,0
+177.60,28.80,6.81,0.00,1.00,148.80,24.00,0
+177.60,24.00,6.88,0.00,1.00,153.60,19.20,0
+177.60,19.20,6.94,0.00,1.00,158.40,14.40,0
+177.60,14.40,7.00,0.00,1.00,163.20,9.60,0
+177.60,9.60,7.07,0.00,1.00,168.00,4.80,0
+177.60,4.80,7.13,0.00,1.00,172.80,0.00,0
+177.60,0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,7.26,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,7.33,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,7.39,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,7.45,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,7.52,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,7.58,0.00,1.00,-153.60,-28.80,0
+-177.60,-28.80,7.65,0.00,1.00,-148.80,-33.60,0
+-177.60,-33.60,7.71,0.00,1.00,-144.00,-38.40,0
+-177.60,-38.40,7.78,0.00,1.00,-139.20,-43.20,0
+-172.80,-43.20,7.84,0.00,1.00,-134.40,-48.00,0
+-172.80,-48.00,7.90,0.00,1.00,-129.60,-52.80,0
+-172.80,-52.80,7.97,0.00,1.00,-124.80,-57.60,0
+-172.80,-57.60,8.03,0.00,1.00,-120.00,-62.40,0
+-168.00,-62.40,8.10,0.00,1.00,-115.20,-67.20,0
+-168.00,-67.20,8.16,0.00,1.00,-110.40,-72.00,0
+-163.20,-72.00,8.22,0.00,1.00,-105.60,-76.80,0
+-158.40,-76.80,8.29,0.00,1.00,-100.80,-81.60,0
+-139.20,-81.60,8.35,0.00,1.00,-96.00,-86.40,0
+-105.60,-86.40,8.42,0.00,1.00,-91.20,-86.40,0
+-52.80,-86.40,8.48,0.00,1.00,-86.40,-81.60,0
+-28.80,-81.60,8.55,0.00,1.00,-81.60,-76.80,0
+-19.20,-76.80,8.61,0.00,1.00,-76.80,-72.00,0
+-14.40,-72.00,8.67,0.00,1.00,-72.00,-67.20,0
+-9.60,-67.20,8.74,0.00,1.00,-67.20,-62.40,0
+-9.60,-62.40,8.80,0.00,1.00,-62.40,-57.60,0
+-9.60,-57.60,8.87,0.00,1.00,-57.60,-52.80,0
+-4.80,-52.80,8.93,0.00,1.00,-52.80,-48.00,0
+-4.80,-48.00,9.00,0.00,1.00,-48.00,-43.20,0
+-4.80,-43.20,9.06,0.00,1.00,-43.20,-38.40,0
+-4.80,-38.40,9.12,0.00,1.00,-38.40,-33.60,0
+-4.80,-33.60,9.19,0.00,1.00,-33.60,-28.80,0
+-4.80,-28.80,9.25,0.00,1.00,-28.80,-24.00,0
+-0.00,-24.00,9.32,0.00,1.00,-24.00,-19.20,0
+-0.00,-19.20,9.38,0.00,1.00,-19.20,-14.40,0
+-0.00,-14.40,9.45,0.00,1.00,-14.40,-9.60,0
+-0.00,-9.60,9.51,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,9.57,0.00,1.00,-4.80,0.00,0
+0.00,0.00,9.64,0.00,1.00,0.00,4.80,0
+0.00,4.80,9.70,0.00,1.00,4.80,9.60,0
+0.00,9.60,9.77,0.00,1.00,9.60,14.40,0
+4.80,14.40,9.83,0.00,1.00,14.40,19.20,0
+4.80,19.20,9.90,0.00,1.00,19.20,24.00,0
+4.80,24.00,9.96,0.00,1.00,24.00,28.80,0
+4.80,28.80,10.02,0.00,1.00,28.80,33.60,0
+4.80,33.60,10.09,0.00,1.00,33.60,38.40,0
+9.60,38.40,10.15,0.00,1.00,38.40,43.20,0
+9.60,43.20,10.22,0.00,1.00,43.20,48.00,0
+9.60,48.00,10.28,0.00,1.00,48.00,52.80,0
+14.40,52.80,10.35,0.00,1.00,52.80,57.60,0
+14.40,57.60,10.41,0.00,1.00,57.60,62.40,0
+19.20,62.40,10.47,0.00,1.00,62.40,67.20,0
+24.00,67.20,10.54,0.00,1.00,67.20,72.00,0
+28.80,72.00,10.60,0.00,1.00,72.00,72.00,0
+33.60,72.00,10.67,0.00,1.00,76.80,76.80,0
+48.00,76.80,10.73,0.00,1.00,81.60,81.60,0
+67.20,81.60,10.80,0.00,1.00,86.40,81.60,0
+96.00,81.60,10.86,0.00,1.00,91.20,81.60,0
+120.00,76.80,10.92,0.00,1.00,96.00,76.80,0
+139.20,76.80,10.99,0.00,1.00,100.80,72.00,0
+148.80,72.00,11.05,0.00,1.00,105.60,67.20,0
+153.60,67.20,11.12,0.00,1.00,110.40,62.40,0
+158.40,62.40,11.18,0.00,1.00,115.20,57.60,0
+163.20,57.60,11.24,0.00,1.00,120.00,52.80,0
+168.00,52.80,11.31,0.00,1.00,124.80,48.00,0
+168.00,48.00,11.37,0.00,1.00,129.60,43.20,0
+168.00,43.20,11.44,0.00,1.00,134.40,38.40,0
+172.80,38.40,11.50,0.00,1.00,139.20,33.60,0
+172.80,33.60,11.57,0.00,1.00,144.00,28.80,0
+172.80,28.80,11.63,0.00,1.00,148.80,24.00,0
+177.60,24.00,11.69,0.00,1.00,153.60,19.20,0
+177.60,19.20,11.76,0.00,1.00,158.40,14.40,0
+177.60,14.40,11.82,0.00,1.00,163.20,9.60,0
+177.60,9.60,11.89,0.00,1.00,168.00,4.80,0
+177.60,4.80,11.95,0.00,1.00,172.80,0.00,0
+177.60,0.00,12.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,12.08,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,12.14,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,12.21,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,12.27,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,12.34,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,12.40,0.00,1.00,-153.60,-28.80,0
+-172.80,-28.80,12.47,0.00,1.00,-148.80,-33.60,0
+-172.80,-33.60,12.53,0.00,1.00,-144.00,-38.40,0
+-172.80,-38.40,12.59,0.00,1.00,-139.20,-43.20,0
+-168.00,-43.20,12.66,0.00,1.00,-134.40,-48.00,0
+-168.00,-48.00,12.72,0.00,1.00,-129.60,-52.80,0
+-168.00,-52.80,12.79,0.00,1.00,-124.80,-57.60,0
+-163.20,-57.60,12.85,0.00,1.00,-120.00,-62.40,0
+-158.40,-62.40,12.92,0.00,1.00,-115.20,-67.20,0
+-153.60,-67.20,12.98,0.00,1.00,-110.40,-72.00,0
+-148.80,-72.00,13.04,0.00,1.00,-105.60,-76.80,0
+-139.20,-76.80,13.11,0.00,1.00,-100.80,-81.60,0
+-120.00,-76.80,13.17,0.00,1.00,-96.00,-81.60,0
+-96.00,-81.60,13.24,0.00,1.00,-91.20,-81.60,0
+-67.20,-81.60,13.30,0.00,1.00,-86.40,-76.80,0
+-48.00,-76.80,13.37,0.00,1.00,-81.60,-72.00,0
+-33.60,-72.00,13.43,0.00,1.00,-76.80,-72.00,0
+-28.80,-72.00,13.49,0.00,1.00,-72.00,-67.20,0
+-24.00,-67.20,13.56,0.00,1.00,-67.20,-62.40,0
+-19.20,-62.40,13.62,0.00,1.00,-62.40,-57.60,0
+-14.40,-57.60,13.69,0.00,1.00,-57.60,-52.80,0
+-14.40,-52.80,13.75,0.00,1.00,-52.80,-48.00,0
+-9.60,-48.00,13.82,0.00,1.00,-48.00,-43.20,0
+-9.60,-43.20,13.88,0.00,1.00,-43.20,-38.40,0
+-9.60,-38.40,13.94,0.00,1.00,-38.40,-33.60,0
+-4.80,-33.60,14.01,0.00,1.00,-33.60,-28.80,0
+-4.80,-28.80,14.07,0.00,1.00,-28.80,-24.00,0
+-4.80,-24.00,14.14,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,14.20,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,14.27,0.00,1.00,-14.40,-9.60,0
+-0.00,-9.60,14.33,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,14.39,0.00,1.00,-4.80,0.00,0
+0.00,0.00,14.46,0.00,1.00,0.00,4.80,0
+0.00,4.80,14.52,0.00,1.00,4.80,9.60,0
+4.80,9.60,14.59,0.00,1.00,9.60,14.40,0
+4.80,14.40,14.65,0.00,1.00,14.40,19.20,0
+4.80,19.20,14.71,0.00,1.00,19.20,24.00,0
+4.80,24.00,14.78,0.00,1.00,24.00,28.80,0
+9.60,28.80,14.84,0.00,1.00,28.80,33.60,0
+9.60,33.60,14.91,0.00,1.00,33.60,38.40,0
+9.60,38.40,14.97,0.00,1.00,38.40,43.20,0
+14.40,43.20,15.04,0.00,1.00,43.20,48.00,0
+14.40,48.00,15.10,0.00,1.00,48.00,52.80,0
+19.20,52.80,15.16,0.00,1.00,52.80,57.60,0
+19.20,52.80,15.23,0.00,1.00,57.60,57.60,0
+24.00,57.60,15.29,0.00,1.00,62.40,62.40,0
+28.80,62.40,15.36,0.00,1.00,67.20,67.20,0
+38.40,67.20,15.42,0.00,1.00,72.00,72.00,0
+48.00,72.00,15.49,0.00,1.00,76.80,72.00,0
+57.60,72.00,15.55,0.00,1.00,81.60,76.80,0
+76.80,76.80,15.61,0.00,1.00,86.40,76.80,0
+96.00,76.80,15.68,0.00,1.00,91.20,76.80,0
+115.20,76.80,15.74,0.00,1.00,96.00,72.00,0
+129.60,72.00,15.81,0.00,1.00,100.80,72.00,0
+139.20,67.20,15.87,0.00,1.00,105.60,67.20,0
+144.00,67.20,15.94,0.00,1.00,110.40,62.40,0
+153.60,62.40,16.00,0.00,1.00,115.20,57.60,0
+158.40,57.60,16.00,0.00,1.00,120.00,52.80,0
+158.40,52.80,15.94,0.00,1.00,124.80,48.00,0
+163.20,48.00,15.87,0.00,1.00,129.60,43.20,0
+168.00,43.20,15.81,0.00,1.00,134.40,38.40,0
+168.00,38.40,15.74,0.00,1.00,139.20,33.60,0
+168.00,33.60,15.68,0.00,1.00,144.00,28.80,0
+172.80,28.80,15.61,0.00,1.00,148.80,24.00,0
+172.80,24.00,15.55,0.00,1.00,153.60,19.20,0
+172.80,19.20,15.49,0.00,1.00,158.40,14.40,0
+177.60,14.40,15.42,0.00,1.00,163.20,9.60,0
+177.60,9.60,15.36,0.00,1.00,168.00,4.80,0
+177.60,4.80,15.29,0.00,1.00,172.80,0.00,0
+177.60,0.00,15.23,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,15.16,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,15.10,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,15.04,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,14.97,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,14.91,0.00,1.00,-158.40,-24.00,0
+-172.80,-24.00,14.84,0.00,1.00,-153.60,-28.80,0
+-172.80,-28.80,14.78,0.00,1.00,-148.80,-33.60,0
+-168.00,-33.60,14.71,0.00,1.00,-144.00,-38.40,0
+-168.00,-38.40,14.65,0.00,1.00,-139.20,-43.20,0
+-168.00,-43.20,14.59,0.00,1.00,-134.40,-48.00,0
+-163.20,-48.00,14.52,0.00,1.00,-129.60,-52.80,0
+-158.40,-52.80,14.46,0.00,1.00,-124.80,-57.60,0
+-158.40,-57.60,14.39,0.00,1.00,-120.00,-62.40,0
+-153.60,-62.40,14.33,0.00,1.00,-115.20,-67.20,0
+-144.00,-67.20,14.27,0.00,1.00,-110.40,-72.00,0
+-139.20,-67.20,14.20,0.00,1.00,-105.60,-72.00,0
+-129.60,-72.00,14.14,0.00,1.00,-100.80,-76.80,0
+-115.20,-76.80,14.07,0.00,1.00,-96.00,-76.80,0
+-96.00,-76.80,14.01,0.00,1.00,-91.20,-76.80,0
+-76.80,-76.80,13.94,0.00,1.00,-86.40,-72.00,0
+-57.60,-72.00,13.88,0.00,1.00,-81.60,-72.00,0
+-48.00,-72.00,13.82,0.00,1.00,-76.80,-67.20,0
+-38.40,-67.20,13.75,0.00,1.00,-72.00,-62.40,0
+-28.80,-62.40,13.69,0.00,1.00,-67.20,-57.60,0
+-24.00,-57.60,13.62,0.00,1.00,-62.40,-57.60,0
+-19.20,-52.80,13.56,0.00,1.00,-57.60,-52.80,0
+-19.20,-52.80,13.49,0.00,1.00,-52.80,-48.00,0
+-14.40,-48.00,13.43,0.00,1.00,-48.00,-43.20,0
+-14.40,-43.20,13.37,0.00,1.00,-43.20,-38.40,0
+-9.60,-38.40,13.30,0.00,1.00,-38.40,-33.60,0
+-9.60,-33.60,13.24,0.00,1.00,-33.60,-28.80,0
+-9.60,-28.80,13.17,0.00,1.00,-28.80,-24.00,0
+-4.80,-24.00,13.11,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,13.04,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,12.98,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,12.92,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,12.85,0.00,1.00,-4.80,0.00,0
+0.00,0.00,12.79,0.00,1.00,0.00,4.80,0
+0.00,4.80,12.72,0.00,1.00,4.80,9.60,0
+4.80,9.60,12.66,0.00,1.00,9.60,14.40,0
+4.80,14.40,12.59,0.00,1.00,14.40,19.20,0
+4.80,19.20,12.53,0.00,1.00,19.20,24.00,0
+9.60,24.00,12.47,0.00,1.00,24.00,28.80,0
+9.60,28.80,12.40,0.00,1.00,28.80,33.60,0
+14.40,33.60,12.34,0.00,1.00,33.60,38.40,0
+14.40,33.60,12.27,0.00,1.00,38.40,38.40,0
+19.20,38.40,12.21,0.00,1.00,43.20,43.20,0
+19.20,43.20,12.14,0.00,1.00,48.00,48.00,0
+24.00,48.00,12.08,0.00,1.00,52.80,52.80,0
+28.80,52.80,12.02,0.00,1.00,57.60,57.60,0
+33.60,57.60,11.95,0.00,1.00,62.40,62.40,0
+38.40,62.40,11.89,0.00,1.00,67.20,62.40,0
+43.20,62.40,11.82,0.00,1.00,72.00,67.20,0
+52.80,67.20,11.76,0.00,1.00,76.80,72.00,0
+67.20,67.20,11.69,0.00,1.00,81.60,72.00,0
+76.80,72.00,11.63,0.00,1.00,86.40,72.00,0
+96.00,72.00,11.57,0.00,1.00,91.20,72.00,0
+105.60,72.00,11.50,0.00,1.00,96.00,67.20,0
+120.00,67.20,11.44,0.00,1.00,100.80,67.20,0
+129.60,67.20,11.37,0.00,1.00,105.60,62.40,0
+139.20,62.40,11.31,0.00,1.00,110.40,57.60,0
+144.00,57.60,11.24,0.00,1.00,115.20,57.60,0
+148.80,52.80,11.18,0.00,1.00,120.00,52.80,0
+153.60,52.80,11.12,0.00,1.00,124.80,48.00,0
+158.40,48.00,11.05,0.00,1.00,129.60,43.20,0
+163.20,43.20,10.99,0.00,1.00,134.40,38.40,0
+163.20,38.40,10.92,0.00,1.00,139.20,33.60,0
+168.00,33.60,10.86,0.00,1.00,144.00,28.80,0
+168.00,28.80,10.80,0.00,1.00,148.80,24.00,0
+172.80,24.00,10.73,0.00,1.00,153.60,19.20,0
+172.80,19.20,10.67,0.00,1.00,158.40,14.40,0
+172.80,14.40,10.60,0.00,1.00,163.20,9.60,0
+177.60,9.60,10.54,0.00,1.00,168.00,4.80,0
+177.60,4.80,10.47,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.35,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,10.28,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,10.22,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,10.15,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,10.09,0.00,1.00,-158.40,-24.00,0
+-172.80,-24.00,10.02,0.00,1.00,-153.60,-28.80,0
+-168.00,-28.80,9.96,0.00,1.00,-148.80,-33.60,0
+-168.00,-33.60,9.90,0.00,1.00,-144.00,-38.40,0
+-163.20,-38.40,9.83,0.00,1.00,-139.20,-43.20,0
+-163.20,-43.20,9.77,0.00,1.00,-134.40,-48.00,0
+-158.40,-48.00,9.70,0.00,1.00,-129.60,-52.80,0
+-153.60,-52.80,9.64,0.00,1.00,-124.80,-57.60,0
+-148.80,-52.80,9.57,0.00,1.00,-120.00,-57.60,0
+-144.00,-57.60,9.51,0.00,1.00,-115.20,-62.40,0
+-139.20,-62.40,9.45,0.00,1.00,-110.40,-67.20,0
+-129.60,-67.20,9.38,0.00,1.00,-105.60,-67.20,0
+-120.00,-67.20,9.32,0.00,1.00,-100.80,-72.00,0
+-105.60,-72.00,9.25,0.00,1.00,-96.00,-72.00,0
+-96.00,-72.00,9.19,0.00,1.00,-91.20,-72.00,0
+-76.80,-72.00,9.12,0.00,1.00,-86.40,-72.00,0
+-67.20,-67.20,9.06,0.00,1.00,-81.60,-67.20,0
+-52.80,-67.20,9.00,0.00,1.00,-76.80,-62.40,0
+-43.20,-62.40,8.93,0.00,1.00,-72.00,-62.40,0
+-38.40,-62.40,8.87,0.00,1.00,-67.20,-57.60,0
+-33.60,-57.60,8.80,0.00,1.00,-62.40,-52.80,0
+-28.80,-52.80,8.74,0.00,1.00,-57.60,-48.00,0
+-24.00,-48.00,8.67,0.00,1.00,-52.80,-43.20,0
+-19.20,-43.20,8.61,0.00,1.00,-48.00,-38.40,0
+-19.20,-38.40,8.55,0.00,1.00,-43.20,-38.40,0
+-14.40,-33.60,8.48,0.00,1.00,-38.40,-33.60,0
+-14.40,-33.60,8.42,0.00,1.00,-33.60,-28.80,0
+-9.60,-28.80,8.35,0.00,1.00,-28.80,-24.00,0
+-9.60,-24.00,8.29,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,8.22,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,8.16,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,8.10,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,8.03,0.00,1.00,-4.80,0.00,0
+0.00,0.00,7.97,0.00,1.00,0.00,4.80,0
+0.00,4.80,7.90,0.00,1.00,4.80,9.60,0
+4.80,9.60,7.84,0.00,1.00,9.60,14.40,0
+4.80,14.40,7.78,0.00,1.00,14.40,19.20,0
+9.60,19.20,7.71,0.00,1.00,19.20,24.00,0
+9.60,24.00,7.65,0.00,1.00,24.00,24.00,0
+14.40,24.00,7.58,0.00,1.00,28.80,28.80,0
+14.40,28.80,7.52,0.00,1.00,33.60,33.60,0
+19.20,33.60,7.45,0.00,1.00,33.60,38.40,0
+19.20,38.40,7.39,0.00,1.00,38.40,43.20,0
+24.00,43.20,7.33,0.00,1.00,43.20,48.00,0
+28.80,48.00,7.26,0.00,1.00,48.00,52.80,0
+33.60,52.80,7.20,0.00,1.00,57.60,52.80,0
+38.40,52.80,7.13,0.00,1.00,62.40,57.60,0
+43.20,57.60,7.07,0.00,1.00,67.20,62.40,0
+52.80,62.40,7.00,0.00,1.00,72.00,62.40,0
+62.40,62.40,6.94,0.00,1.00,76.80,67.20,0
+72.00,62.40,6.88,0.00,1.00,81.60,67.20,0
+81.60,67.20,6.81,0.00,1.00,86.40,67.20,0
+91.20,67.20,6.75,0.00,1.00,91.20,67.20,0
+105.60,67.20,6.68,0.00,1.00,96.00,67.20,0
+115.20,62.40,6.62,0.00,1.00,100.80,62.40,0
+124.80,62.40,6.55,0.00,1.00,105.60,57.60,0
+134.40,57.60,6.49,0.00,1.00,110.40,57.60,0
+139.20,57.60,6.43,0.00,1.00,115.20,52.80,0
+144.00,52.80,6.36,0.00,1.00,120.00,48.00,0
+148.80,48.00,6.30,0.00,1.00,129.60,43.20,0
+153.60,43.20,6.23,0.00,1.00,134.40,43.20,0
+158.40,38.40,6.17,0.00,1.00,139.20,38.40,0
+158.40,38.40,6.10,0.00,1.00,144.00,33.60,0
+163.20,33.60,6.04,0.00,1.00,148.80,28.80,0
+168.00,28.80,5.98,0.00,1.00,148.80,24.00,0
+168.00,24.00,5.91,0.00,1.00,153.60,19.20,0
+172.80,19.20,5.85,0.00,1.00,158.40,14.40,0
+172.80,14.40,5.78,0.00,1.00,163.20,9.60,0
+172.80,9.60,5.72,0.00,1.00,168.00,4.80,0
+177.60,4.80,5.65,0.00,1.00,172.80,0.00,0
+177.60,0.00,5.59,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.53,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,5.46,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,5.40,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,5.33,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,5.27,0.00,1.00,-158.40,-24.00,0
+-168.00,-24.00,5.20,0.00,1.00,-153.60,-28.80,0
+-168.00,-28.80,5.14,0.00,1.00,-148.80,-33.60,0
+-163.20,-33.60,5.08,0.00,1.00,-148.80,-38.40,0
+-158.40,-38.40,5.01,0.00,1.00,-144.00,-43.20,0
+-158.40,-38.40,4.95,0.00,1.00,-139.20,-43.20,0
+-153.60,-43.20,4.88,0.00,1.00,-134.40,-48.00,0
+-148.80,-48.00,4.82,0.00,1.00,-129.60,-52.80,0
+-144.00,-52.80,4.76,0.00,1.00,-120.00,-57.60,0
+-139.20,-57.60,4.69,0.00,1.00,-115.20,-57.60,0
+-134.40,-57.60,4.63,0.00,1.00,-110.40,-62.40,0
+-124.80,-62.40,4.56,0.00,1.00,-105.60,-67.20,0
+-115.20,-62.40,4.50,0.00,1.00,-100.80,-67.20,0
+-105.60,-67.20,4.43,0.00,1.00,-96.00,-67.20,0
+-91.20,-67.20,4.37,0.00,1.00,-91.20,-67.20,0
+-81.60,-67.20,4.31,0.00,1.00,-86.40,-67.20,0
+-72.00,-62.40,4.24,0.00,1.00,-81.60,-62.40,0
+-62.40,-62.40,4.18,0.00,1.00,-76.80,-62.40,0
+-52.80,-62.40,4.11,0.00,1.00,-72.00,-57.60,0
+-43.20,-57.60,4.05,0.00,1.00,-67.20,-52.80,0
+-38.40,-52.80,3.98,0.00,1.00,-62.40,-52.80,0
+-33.60,-52.80,3.92,0.00,1.00,-57.60,-48.00,0
+-28.80,-48.00,3.86,0.00,1.00,-48.00,-43.20,0
+-24.00,-43.20,3.79,0.00,1.00,-43.20,-38.40,0
+-19.20,-38.40,3.73,0.00,1.00,-38.40,-33.60,0
+-19.20,-33.60,3.66,0.00,1.00,-33.60,-28.80,0
+-14.40,-28.80,3.60,0.00,1.00,-33.60,-24.00,0
+-14.40,-24.00,3.53,0.00,1.00,-28.80,-24.00,0
+-9.60,-24.00,3.47,0.00,1.00,-24.00,-19.20,0
+-9.60,-19.20,3.41,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,3.34,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,3.28,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,3.21,0.00,1.00,-4.80,0.00,0
+0.00,0.00,3.15,0.00,1.00,0.00,4.80,0
+0.00,4.80,3.08,0.00,1.00,4.80,9.60,0
+4.80,9.60,3.02,0.00,1.00,9.60,14.40,0
+4.80,14.40,2.96,0.00,1.00,14.40,19.20,0
+9.60,14.40,2.89,0.00,1.00,19.20,19.20,0
+14.40,19.20,2.83,0.00,1.00,19.20,24.00,0
+14.40,24.00,2.76,0.00,1.00,24.00,28.80,0
+19.20,28.80,2.70,0.00,1.00,28.80,33.60,0
+19.20,33.60,2.63,0.00,1.00,33.60,38.40,0
+24.00,38.40,2.57,0.00,1.00,38.40,43.20,0
+28.80,38.40,2.51,0.00,1.00,43.20,43.20,0
+33.60,43.20,2.44,0.00,1.00,48.00,48.00,0
+38.40,48.00,2.38,0.00,1.00,52.80,52.80,0
+43.20,52.80,2.31,0.00,1.00,57.60,52.80,0
+48.00,52.80,2.25,0.00,1.00,62.40,57.60,0
+57.60,57.60,2.18,0.00,1.00,72.00,57.60,0
+62.40,57.60,2.12,0.00,1.00,76.80,62.40,0
+72.00,62.40,2.06,0.00,1.00,81.60,62.40,0
+81.60,62.40,1.99,0.00,1.00,86.40,62.40,0
+91.20,62.40,1.93,0.00,1.00,91.20,62.40,0
+100.80,62.40,1.86,0.00,1.00,96.00,62.40,0
+110.40,57.60,1.80,0.00,1.00,100.80,57.60,0
+120.00,57.60,1.73,0.00,1.00,105.60,57.60,0
+129.60,57.60,1.67,0.00,1.00,115.20,52.80,0
+134.40,52.80,1.61,0.00,1.00,120.00,48.00,0
+139.20,48.00,1.54,0.00,1.00,124.80,48.00,0
+144.00,48.00,1.48,0.00,1.00,129.60,43.20,0
+148.80,43.20,1.41,0.00,1.00,134.40,38.40,0
+153.60,38.40,1.35,0.00,1.00,139.20,33.60,0
+158.40,33.60,1.29,0.00,1.00,144.00,33.60,0
+158.40,28.80,1.22,0.00,1.00,148.80,28.80,0
+163.20,28.80,1.16,0.00,1.00,153.60,24.00,0
+168.00,24.00,1.09,0.00,1.00,158.40,19.20,0
+168.00,19.20,1.03,0.00,1.00,163.20,14.40,0
+172.80,14.40,0.96,0.00,1.00,163.20,9.60,0
+172.80,9.60,0.90,0.00,1.00,168.00,4.80,0
+177.60,4.80,0.84,0.00,1.00,172.80,0.00,0
+177.60,0.00,0.77,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,0.71,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,0.64,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,0.58,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,0.51,0.00,1.00,-163.20,-19.20,0
+-168.00,-19.20,0.45,0.00,1.00,-163.20,-24.00,0
+-168.00,-24.00,0.39,0.00,1.00,-158.40,-28.80,0
+-163.20,-28.80,0.32,0.00,1.00,-153.60,-33.60,0
+-158.40,-28.80,0.26,0.00,1.00,-148.80,-33.60,0
+-158.40,-33.60,0.19,0.00,1.00,-144.00,-38.40,0
+-153.60,-38.40,0.13,0.00,1.00,-139.20,-43.20,0
+-148.80,-43.20,0.06,0.00,1.00,-134.40,-48.00,0
+-144.00,-48.00,0.00,0.00,1.00,-129.60,-48.00,0
+-139.20,-48.00,0.00,0.00,1.00,-124.80,-52.80,0
+-134.40,-52.80,0.16,0.00,1.00,-120.00,-57.60,0
+-129.60,-57.60,0.32,0.00,1.00,-115.20,-57.60,0
+-120.00,-57.60,0.48,0.00,1.00,-105.60,-62.40,0
+-110.40,-57.60,0.65,0.00,1.00,-100.80,-62.40,0
+-100.80,-62.40,0.81,0.00,1.00,-96.00,-62.40,0
+-91.20,-62.40,0.97,0.00,1.00,-91.20,-62.40,0
+-81.60,-62.40,1.13,0.00,1.00,-86.40,-62.40,0
+-72.00,-62.40,1.29,0.00,1.00,-81.60,-57.60,0
+-62.40,-57.60,1.45,0.00,1.00,-76.80,-57.60,0
+-57.60,-57.60,1.62,0.00,1.00,-72.00,-52.80,0
+-48.00,-52.80,1.78,0.00,1.00,-62.40,-52.80,0
+-43.20,-52.80,1.94,0.00,1.00,-57.60,-48.00,0
+-38.40,-48.00,2.10,0.00,1.00,-52.80,-43.20,0
+-33.60,-43.20,2.26,0.00,1.00,-48.00,-43.20,0
+-28.80,-38.40,2.42,0.00,1.00,-43.20,-38.40,0
+-24.00,-38.40,2.59,0.00,1.00,-38.40,-33.60,0
+-19.20,-33.60,2.75,0.00,1.00,-33.60,-28.80,0
+-19.20,-28.80,2.91,0.00,1.00,-28.80,-24.00,0
+-14.40,-24.00,3.07,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,3.23,0.00,1.00,-19.20,-19.20,0
+-9.60,-14.40,3.39,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,3.56,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,3.72,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,3.88,0.00,1.00,-4.80,0.00,0
+0.00,0.00,4.04,0.00,1.00,0.00,4.80,0
+4.80,4.80,4.20,0.00,1.00,4.80,9.60,0
+4.80,9.60,4.36,0.00,1.00,9.60,14.40,0
+9.60,9.60,4.53,0.00,1.00,14.40,14.40,0
+9.60,14.40,4.69,0.00,1.00,14.40,19.20,0
+14.40,19.20,4.85,0.00,1.00,19.20,24.00,0
+19.20,24.00,5.01,0.00,1.00,24.00,28.80,0
+19.20,28.80,5.17,0.00,1.00,28.80,33.60,0
+24.00,28.80,5.33,0.00,1.00,33.60,33.60,0
+28.80,33.60,5.49,0.00,1.00,38.40,38.40,0
+33.60,38.40,5.66,0.00,1.00,43.20,43.20,0
+38.40,43.20,5.82,0.00,1.00,48.00,43.20,0
+43.20,43.20,5.98,0.00,1.00,52.80,48.00,0
+48.00,48.00,6.14,0.00,1.00,57.60,52.80,0
+52.80,48.00,6.30,0.00,1.00,62.40,52.80,0
+57.60,52.80,6.46,0.00,1.00,67.20,57.60,0
+67.20,52.80,6.63,0.00,1.00,72.00,57.60,0
+76.80,57.60,6.79,0.00,1.00,81.60,57.60,0
+81.60,57.60,6.95,0.00,1.00,86.40,57.60,0
+91.20,57.60,7.11,0.00,1.00,91.20,57.60,0
+100.80,57.60,7.27,0.00,1.00,96.00,57.60,0
+110.40,52.80,7.43,0.00,1.00,100.80,52.80,0
+115.20,52.80,7.60,0.00,1.00,110.40,52.80,0
+124.80,52.80,7.76,0.00,1.00,115.20,48.00,0
+129.60,48.00,7.92,0.00,1.00,120.00,48.00,0
+134.40,48.00,8.08,0.00,1.00,124.80,43.20,0
+139.20,43.20,8.24,0.00,1.00,129.60,38.40,0
+144.00,38.40,8.40,0.00,1.00,134.40,38.40,0
+148.80,38.40,8.57,0.00,1.00,139.20,33.60,0
+153.60,33.60,8.73,0.00,1.00,144.00,28.80,0
+158.40,28.80,8.89,0.00,1.00,148.80,24.00,0
+163.20,24.00,9.05,0.00,1.00,153.60,24.00,0
+163.20,24.00,9.21,0.00,1.00,158.40,19.20,0
+168.00,19.20,9.37,0.00,1.00,163.20,14.40,0
+172.80,14.40,9.54,0.00,1.00,168.00,9.60,0
+172.80,9.60,9.70,0.00,1.00,168.00,4.80,0
+177.60,4.80,9.86,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.18,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,10.34,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,10.51,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,10.67,0.00,1.00,-168.00,-19.20,0
+-168.00,-19.20,10.83,0.00,1.00,-163.20,-24.00,0
+-163.20,-24.00,10.99,0.00,1.00,-158.40,-24.00,0
+-163.20,-24.00,11.15,0.00,1.00,-153.60,-28.80,0
+-158.40,-28.80,11.31,0.00,1.00,-148.80,-33.60,0
+-153.60,-33.60,11.47,0.00,1.00,-144.00,-38.40,0
+-148.80,-38.40,11.64,0.00,1.00,-139.20,-38.40,0
+-144.00,-38.40,11.80,0.00,1.00,-134.40,-43.20,0
+-139.20,-43.20,11.96,0.00,1.00,-129.60,-48.00,0
+-134.40,-48.00,12.12,0.00,1.00,-124.80,-48.00,0
+-129.60,-48.00,12.28,0.00,1.00,-120.00,-52.80,0
+-124.80,-52.80,12.44,0.00,1.00,-115.20,-52.80,0
+-115.20,-52.80,12.61,0.00,1.00,-110.40,-57.60,0
+-110.40,-52.80,12.77,0.00,1.00,-100.80,-57.60,0
+-100.80,-57.60,12.93,0.00,1.00,-96.00,-57.60,0
+-91.20,-57.60,13.09,0.00,1.00,-91.20,-57.60,0
+-81.60,-57.60,13.25,0.00,1.00,-86.40,-57.60,0
+-76.80,-57.60,13.41,0.00,1.00,-81.60,-57.60,0
+-67.20,-52.80,13.58,0.00,1.00,-72.00,-52.80,0
+-57.60,-52.80,13.74,0.00,1.00,-67.20,-52.80,0
+-52.80,-48.00,13.90,0.00,1.00,-62.40,-48.00,0
+-48.00,-48.00,14.06,0.00,1.00,-57.60,-43.20,0
+-43.20,-43.20,14.22,0.00,1.00,-52.80,-43.20,0
+-38.40,-43.20,14.38,0.00,1.00,-48.00,-38.40,0
+-33.60,-38.40,14.55,0.00,1.00,-43.20,-33.60,0
+-28.80,-33.60,14.71,0.00,1.00,-38.40,-33.60,0
+-24.00,-28.80,14.87,0.00,1.00,-33.60,-28.80,0
+-19.20,-28.80,15.03,0.00,1.00,-28.80,-24.00,0
+-19.20,-24.00,15.19,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,15.35,0.00,1.00,-19.20,-14.40,0
+-9.60,-14.40,15.52,0.00,1.00,-14.40,-14.40,0
+-9.60,-9.60,15.68,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,15.84,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,16.00,0.00,1.00,-4.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,0.00,4.80,0
+4.80,4.80,15.84,0.00,1.00,4.80,9.60,0
+4.80,9.60,15.68,0.00,1.00,9.60,9.60,0
+9.60,9.60,15.52,0.00,1.00,9.60,14.40,0
+14.40,14.40,15.35,0.00,1.00,14.40,19.20,0
+14.40,19.20,15.19,0.00,1.00,19.20,24.00,0
+19.20,24.00,15.03,0.00,1.00,24.00,24.00,0
+24.00,24.00,14.87,0.00,1.00,28.80,28.80,0
+24.00,28.80,14.71,0.00,1.00,33.60,33.60,0
+28.80,33.60,14.55,0.00,1.00,38.40,38.40,0
+33.60,33.60,14.38,0.00,1.00,43.20,38.40,0
+38.40,38.40,14.22,0.00,1.00,48.00,43.20,0
+43.20,43.20,14.06,0.00,1.00,52.80,43.20,0
+48.00,43.20,13.90,0.00,1.00,57.60,48.00,0
+57.60,48.00,13.74,0.00,1.00,62.40,48.00,0
+62.40,48.00,13.58,0.00,1.00,67.20,52.80,0
+67.20,48.00,13.41,0.00,1.00,72.00,52.80,0
+76.80,52.80,13.25,0.00,1.00,81.60,52.80,0
+86.40,52.80,13.09,0.00,1.00,86.40,52.80,0
+91.20,52.80,12.93,0.00,1.00,91.20,52.80,0
+100.80,52.80,12.77,0.00,1.00,96.00,52.80,0
+105.60,48.00,12.61,0.00,1.00,105.60,48.00,0
+115.20,48.00,12.44,0.00,1.00,110.40,48.00,0
+120.00,48.00,12.28,0.00,1.00,115.20,48.00,0
+124.80,43.20,12.12,0.00,1.00,120.00,43.20,0
+134.40,43.20,11.96,0.00,1.00,124.80,43.20,0
+139.20,38.40,11.80,0.00,1.00,129.60,38.40,0
+144.00,38.40,11.64,0.00,1.00,134.40,33.60,0
+148.80,33.60,11.47,0.00,1.00,139.20,33.60,0
+153.60,28.80,11.31,0.00,1.00,144.00,28.80,0
+153.60,28.80,11.15,0.00,1.00,148.80,24.00,0
+158.40,24.00,10.99,0.00,1.00,153.60,19.20,0
+163.20,19.20,10.83,0.00,1.00,158.40,19.20,0
+168.00,14.40,10.67,0.00,1.00,163.20,14.40,0
+168.00,14.40,10.51,0.00,1.00,168.00,9.60,0
+172.80,9.60,10.34,0.00,1.00,172.80,4.80,0
+177.60,4.80,10.18,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,9.86,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,9.70,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,9.54,0.00,1.00,-172.80,-14.40,0
+-168.00,-14.40,9.37,0.00,1.00,-168.00,-19.20,0
+-168.00,-14.40,9.21,0.00,1.00,-163.20,-19.20,0
+-163.20,-19.20,9.05,0.00,1.00,-158.40,-24.00,0
+-158.40,-24.00,8.89,0.00,1.00,-153.60,-28.80,0
+-153.60,-28.80,8.73,0.00,1.00,-148.80,-33.60,0
+-153.60,-28.80,8.57,0.00,1.00,-144.00,-33.60,0
+-148.80,-33.60,8.40,0.00,1.00,-139.20,-38.40,0
+-144.00,-38.40,8.24,0.00,1.00,-134.40,-43.20,0
+-139.20,-38.40,8.08,0.00,1.00,-129.60,-43.20,0
+-134.40,-43.20,7.92,0.00,1.00,-124.80,-48.00,0
+-124.80,-43.20,7.76,0.00,1.00,-120.00,-48.00,0
+-120.00,-48.00,7.60,0.00,1.00,-115.20,-48.00,0
+-115.20,-48.00,7.43,0.00,1.00,-110.40,-52.80,0
+-105.60,-48.00,7.27,0.00,1.00,-105.60,-52.80,0
+-100.80,-52.80,7.11,0.00,1.00,-96.00,-52.80,0
+-91.20,-52.80,6.95,0.00,1.00,-91.20,-52.80,0
+-86.40,-52.80,6.79,0.00,1.00,-86.40,-52.80,0
+-76.80,-52.80,6.63,0.00,1.00,-81.60,-52.80,0
+-67.20,-48.00,6.46,0.00,1.00,-72.00,-48.00,0
+-62.40,-48.00,6.30,0.00,1.00,-67.20,-48.00,0
+-57.60,-48.00,6.14,0.00,1.00,-62.40,-43.20,0
+-48.00,-43.20,5.98,0.00,1.00,-57.60,-43.20,0
+-43.20,-43.20,5.82,0.00,1.00,-52.80,-38.40,0
+-38.40,-38.40,5.66,0.00,1.00,-48.00,-38.40,0
+-33.60,-33.60,5.49,0.00,1.00,-43.20,-33.60,0
+-28.80,-33.60,5.33,0.00,1.00,-38.40,-28.80,0
+-24.00,-28.80,5.17,0.00,1.00,-33.60,-24.00,0
+-24.00,-24.00,5.01,0.00,1.00,-28.80,-24.00,0
+-19.20,-24.00,4.85,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,4.69,0.00,1.00,-19.20,-14.40,0
+-14.40,-14.40,4.53,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,4.36,0.00,1.00,-9.60,-9.60,0
+-4.80,-9.60,4.20,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,4.04,0.00,1.00,-4.80,0.00,0
+0.00,0.00,3.88,0.00,1.00,0.00,4.80,0
+4.80,4.80,3.72,0.00,1.00,4.80,4.80,0
+4.80,4.80,3.56,0.00,1.00,4.80,9.60,0
+9.60,9.60,3.39,0.00,1.00,9.60,14.40,0
+14.40,14.40,3.23,0.00,1.00,14.40,19.20,0
+19.20,19.20,3.07,0.00,1.00,19.20,19.20,0
+19.20,19.20,2.91,0.00,1.00,24.00,24.00,0
+24.00,24.00,2.75,0.00,1.00,24.00,28.80,0
+28.80,28.80,2.59,0.00,1.00,28.80,28.80,0
+33.60,28.80,2.42,0.00,1.00,33.60,33.60,0
+38.40,33.60,2.26,0.00,1.00,38.40,38.40,0
+43.20,33.60,2.10,0.00,1.00,43.20,38.40,0
+48.00,38.40,1.94,0.00,1.00,48.00,43.20,0
+52.80,38.40,1.78,0.00,1.00,52.80,43.20,0
+57.60,43.20,1.62,0.00,1.00,62.40,43.20,0
+62.40,43.20,1.45,0.00,1.00,67.20,48.00,0
+72.00,43.20,1.29,0.00,1.00,72.00,48.00,0
+76.80,48.00,1.13,0.00,1.00,76.80,48.00,0
+86.40,48.00,0.97,0.00,1.00,86.40,48.00,0
+91.20,48.00,0.81,0.00,1.00,91.20,48.00,0
+100.80,48.00,0.65,0.00,1.00,96.00,48.00,0
+105.60,48.00,0.48,0.00,1.00,105.60,48.00,0
+110.40,43.20,0.32,0.00,1.00,110.40,43.20,0
+120.00,43.20,0.16,0.00,1.00,115.20,43.20,0
+124.80,43.20,0.00,0.00,1.00,124.80,38.40,0
+129.60,38.40,0.00,0.00,1.00,129.60,38.40,0
+134.40,38.40,0.04,0.00,1.00,134.40,33.60,0
+139.20,33.60,0.08,0.00,1.00,139.20,33.60,0
+144.00,33.60,0.12,0.00,1.00,144.00,28.80,0
+148.80,28.80,0.16,0.00,1.00,148.80,24.00,0
+153.60,24.00,0.20,0.00,1.00,153.60,24.00,0
+158.40,24.00,0.24,0.00,1.00,158.40,19.20,0
+163.20,19.20,0.28,0.00,1.00,158.40,14.40,0
+163.20,14.40,0.32,0.00,1.00,163.20,14.40,0
+168.00,14.40,0.36,0.00,1.00,168.00,9.60,0
+172.80,9.60,0.40,0.00,1.00,172.80,4.80,0
+172.80,4.80,0.44,0.00,1.00,172.80,0.00,0
+177.60,0.00,0.48,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,0.52,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,0.56,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,0.60,0.00,1.00,-172.80,-14.40,0
+-168.00,-14.40,0.64,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,0.68,0.00,1.00,-163.20,-19.20,0
+-163.20,-19.20,0.72,0.00,1.00,-158.40,-24.00,0
+-158.40,-24.00,0.76,0.00,1.00,-158.40,-24.00,0
+-153.60,-24.00,0.80,0.00,1.00,-153.60,-28.80,0
+-148.80,-28.80,0.84,0.00,1.00,-148.80,-33.60,0
+-144.00,-33.60,0.88,0.00,1.00,-144.00,-33.60,0
+-139.20,-33.60,0.92,0.00,1.00,-139.20,-38.40,0
+-134.40,-38.40,0.96,0.00,1.00,-134.40,-38.40,0
+-129.60,-38.40,1.00,0.00,1.00,-129.60,-43.20,0
+-124.80,-43.20,1.04,0.00,1.00,-124.80,-43.20,0
+-120.00,-43.20,1.08,0.00,1.00,-115.20,-48.00,0
+-110.40,-43.20,1.12,0.00,1.00,-110.40,-48.00,0
+-105.60,-48.00,1.16,0.00,1.00,-105.60,-48.00,0
+-100.80,-48.00,1.20,0.00,1.00,-96.00,-48.00,0
+-91.20,-48.00,1.24,0.00,1.00,-91.20,-48.00,0
+-86.40,-48.00,1.28,0.00,1.00,-86.40,-48.00,0
+-76.80,-48.00,1.32,0.00,1.00,-76.80,-48.00,0
+-72.00,-43.20,1.36,0.00,1.00,-72.00,-43.20,0
+-62.40,-43.20,1.40,0.00,1.00,-67.20,-43.20,0
+-57.60,-43.20,1.44,0.00,1.00,-62.40,-43.20,0
+-52.80,-38.40,1.48,0.00,1.00,-52.80,-38.40,0
+-48.00,-38.40,1.52,0.00,1.00,-48.00,-38.40,0
+-43.20,-33.60,1.56,0.00,1.00,-43.20,-33.60,0
+-38.40,-33.60,1.60,0.00,1.00,-38.40,-28.80,0
+-33.60,-28.80,1.64,0.00,1.00,-33.60,-28.80,0
+-28.80,-28.80,1.68,0.00,1.00,-28.80,-24.00,0
+-24.00,-24.00,1.72,0.00,1.00,-24.00,-19.20,0
+-19.20,-19.20,1.76,0.00,1.00,-24.00,-19.20,0
+-19.20,-19.20,1.80,0.00,1.00,-19.20,-14.40,0
+-14.40,-14.40,1.84,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,1.88,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,1.92,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,1.96,0.00,1.00,-4.80,0.00,0
+0.00,0.00,2.01,0.00,1.00,0.00,4.80,0
+4.80,4.80,2.05,0.00,1.00,4.80,4.80,0
+4.80,4.80,2.09,0.00,1.00,4.80,9.60,0
+9.60,9.60,2.13,0.00,1.00,9.60,14.40,0
+14.40,14.40,2.17,0.00,1.00,14.40,14.40,0
+19.20,14.40,2.21,0.00,1.00,14.40,19.20,0
+24.00,19.20,2.25,0.00,1.00,19.20,24.00,0
+24.00,24.00,2.29,0.00,1.00,24.00,24.00,0
+28.80,24.00,2.33,0.00,1.00,28.80,28.80,0
+33.60,28.80,2.37,0.00,1.00,33.60,28.80,0
+38.40,28.80,2.41,0.00,1.00,38.40,33.60,0
+43.20,33.60,2.45,0.00,1.00,43.20,33.60,0
+48.00,33.60,2.49,0.00,1.00,48.00,38.40,0
+52.80,38.40,2.53,0.00,1.00,52.80,38.40,0
+62.40,38.40,2.57,0.00,1.00,57.60,38.40,0
+67.20,38.40,2.61,0.00,1.00,62.40,43.20,0
+72.00,38.40,2.65,0.00,1.00,72.00,43.20,0
+76.80,43.20,2.69,0.00,1.00,76.80,43.20,0
+86.40,43.20,2.73,0.00,1.00,86.40,43.20,0
+91.20,43.20,2.77,0.00,1.00,91.20,43.20,0
+96.00,43.20,2.81,0.00,1.00,100.80,43.20,0
+105.60,43.20,2.85,0.00,1.00,105.60,43.20,0
+110.40,38.40,2.89,0.00,1.00,110.40,38.40,0
+115.20,38.40,2.93,0.00,1.00,120.00,38.40,0
+120.00,38.40,2.97,0.00,1.00,124.80,38.40,0
+129.60,33.60,3.01,0.00,1.00,129.60,33.60,0
+134.40,33.60,3.05,0.00,1.00,134.40,33.60,0
+139.20,28.80,3.09,0.00,1.00,139.20,28.80,0
+144.00,28.80,3.13,0.00,1.00,144.00,28.80,0
+148.80,24.00,3.17,0.00,1.00,148.80,24.00,0
+153.60,24.00,3.21,0.00,1.00,153.60,19.20,0
+153.60,19.20,3.25,0.00,1.00,158.40,19.20,0
+158.40,19.20,3.29,0.00,1.00,163.20,14.40,0
+163.20,14.40,3.33,0.00,1.00,163.20,9.60,0
+168.00,9.60,3.37,0.00,1.00,168.00,9.60,0
+172.80,9.60,3.41,0.00,1.00,172.80,4.80,0
+172.80,4.80,3.45,0.00,1.00,172.80,0.00,0
+177.60,0.00,3.49,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.53,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,3.57,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,3.61,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,3.65,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,3.69,0.00,1.00,-163.20,-19.20,0
+-158.40,-19.20,3.73,0.00,1.00,-163.20,-19.20,0
+-153.60,-19.20,3.77,0.00,1.00,-158.40,-24.00,0
+-153.60,-24.00,3.81,0.00,1.00,-153.60,-28.80,0
+-148.80,-24.00,3.85,0.00,1.00,-148.80,-28.80,0
+-144.00,-28.80,3.89,0.00,1.00,-144.00,-33.60,0
+-139.20,-28.80,3.93,0.00,1.00,-139.20,-33.60,0
+-134.40,-33.60,3.97,0.00,1.00,-134.40,-38.40,0
+-129.60,-33.60,4.01,0.00,1.00,-129.60,-38.40,0
+-120.00,-38.40,4.05,0.00,1.00,-124.80,-38.40,0
+-115.20,-38.40,4.09,0.00,1.00,-120.00,-43.20,0
+-110.40,-38.40,4.13,0.00,1.00,-110.40,-43.20,0
+-105.60,-43.20,4.17,0.00,1.00,-105.60,-43.20,0
+-96.00,-43.20,4.21,0.00,1.00,-100.80,-43.20,0
+-91.20,-43.20,4.25,0.00,1.00,-91.20,-43.20,0
+-86.40,-43.20,4.29,0.00,1.00,-86.40,-43.20,0
+-76.80,-43.20,4.33,0.00,1.00,-76.80,-43.20,0
+-72.00,-38.40,4.37,0.00,1.00,-72.00,-38.40,0
+-67.20,-38.40,4.41,0.00,1.00,-62.40,-38.40,0
+-62.40,-38.40,4.45,0.00,1.00,-57.60,-38.40,0
+-52.80,-38.40,4.49,0.00,1.00,-52.80,-33.60,0
+-48.00,-33.60,4.53,0.00,1.00,-48.00,-33.60,0
+-43.20,-33.60,4.57,0.00,1.00,-43.20,-28.80,0
+-38.40,-28.80,4.61,0.00,1.00,-38.40,-28.80,0
+-33.60,-28.80,4.65,0.00,1.00,-33.60,-24.00,0
+-28.80,-24.00,4.69,0.00,1.00,-28.80,-24.00,0
+-24.00,-24.00,4.73,0.00,1.00,-24.00,-19.20,0
+-24.00,-19.20,4.77,0.00,1.00,-19.20,-14.40,0
+-19.20,-14.40,4.81,0.00,1.00,-14.40,-14.40,0
+-14.40,-14.40,4.85,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,4.89,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,4.93,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,4.97,0.00,1.00,-4.80,0.00,0
+0.00,0.00,5.01,0.00,1.00,0.00,4.80,0
+4.80,4.80,5.05,0.00,1.00,4.80,4.80,0
+9.60,4.80,5.09,0.00,1.00,4.80,9.60,0
+9.60,9.60,5.13,0.00,1.00,9.60,9.60,0
+14.40,9.60,5.17,0.00,1.00,9.60,14.40,0
+19.20,14.40,5.21,0.00,1.00,14.40,19.20,0
+24.00,19.20,5.25,0.00,1.00,19.20,19.20,0
+28.80,19.20,5.29,0.00,1.00,24.00,24.00,0
+33.60,24.00,5.33,0.00,1.00,24.00,24.00,0
+38.40,24.00,5.37,0.00,1.00,28.80,28.80,0
+43.20,28.80,5.41,0.00,1.00,33.60,28.80,0
+48.00,28.80,5.45,0.00,1.00,38.40,33.60,0
+52.80,28.80,5.49,0.00,1.00,43.20,33.60,0
+57.60,33.60,5.53,0.00,1.00,48.00,33.60,0
+62.40,33.60,5.57,0.00,1.00,52.80,38.40,0
+67.20,33.60,5.61,0.00,1.00,62.40,38.40,0
+72.00,38.40,5.65,0.00,1.00,67.20,38.40,0
+81.60,38.40,5.69,0.00,1.00,76.80,38.40,0
+86.40,38.40,5.73,0.00,1.00,86.40,38.40,0
+91.20,38.40,5.77,0.00,1.00,91.20,38.40,0
+96.00,38.40,5.81,0.00,1.00,100.80,38.40,0
+105.60,38.40,5.85,0.00,1.00,105.60,38.40,0
+110.40,33.60,5.89,0.00,1.00,115.20,33.60,0
+115.20,33.60,5.93,0.00,1.00,120.00,33.60,0
+120.00,33.60,5.97,0.00,1.00,129.60,33.60,0
+124.80,33.60,6.02,0.00,1.00,134.40,28.80,0
+129.60,28.80,6.06,0.00,1.00,139.20,28.80,0
+134.40,28.80,6.10,0.00,1.00,144.00,24.00,0
+139.20,24.00,6.14,0.00,1.00,148.80,24.00,0
+144.00,24.00,6.18,0.00,1.00,153.60,19.20,0
+148.80,19.20,6.22,0.00,1.00,158.40,19.20,0
+153.60,19.20,6.26,0.00,1.00,158.40,14.40,0
+158.40,14.40,6.30,0.00,1.00,163.20,14.40,0
+163.20,14.40,6.34,0.00,1.00,168.00,9.60,0
+168.00,9.60,6.38,0.00,1.00,168.00,9.60,0
+168.00,9.60,6.42,0.00,1.00,172.80,4.80,0
+172.80,4.80,6.46,0.00,1.00,177.60,0.00,0
+177.60,0.00,6.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.54,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,6.58,0.00,1.00,-177.60,-9.60,0
+-168.00,-9.60,6.62,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,6.66,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,6.70,0.00,1.00,-168.00,-14.40,0
+-158.40,-14.40,6.74,0.00,1.00,-163.20,-19.20,0
+-153.60,-19.20,6.78,0.00,1.00,-158.40,-19.20,0
+-148.80,-19.20,6.82,0.00,1.00,-158.40,-24.00,0
+-144.00,-24.00,6.86,0.00,1.00,-153.60,-24.00,0
+-139.20,-24.00,6.90,0.00,1.00,-148.80,-28.80,0
+-134.40,-28.80,6.94,0.00,1.00,-144.00,-28.80,0
+-129.60,-28.80,6.98,0.00,1.00,-139.20,-33.60,0
+-124.80,-33.60,7.02,0.00,1.00,-134.40,-33.60,0
+-120.00,-33.60,7.06,0.00,1.00,-129.60,-33.60,0
+-115.20,-33.60,7.10,0.00,1.00,-120.00,-38.40,0
+-110.40,-33.60,7.14,0.00,1.00,-115.20,-38.40,0
+-105.60,-38.40,7.18,0.00,1.00,-105.60,-38.40,0
+-96.00,-38.40,7.22,0.00,1.00,-100.80,-38.40,0
+-91.20,-38.40,7.26,0.00,1.00,-91.20,-38.40,0
+-86.40,-38.40,7.30,0.00,1.00,-86.40,-38.40,0
+-81.60,-38.40,7.34,0.00,1.00,-76.80,-38.40,0
+-72.00,-38.40,7.38,0.00,1.00,-67.20,-38.40,0
+-67.20,-33.60,7.42,0.00,1.00,-62.40,-33.60,0
+-62.40,-33.60,7.46,0.00,1.00,-52.80,-33.60,0
+-57.60,-33.60,7.50,0.00,1.00,-48.00,-33.60,0
+-52.80,-28.80,7.54,0.00,1.00,-43.20,-28.80,0
+-48.00,-28.80,7.58,0.00,1.00,-38.40,-28.80,0
+-43.20,-28.80,7.62,0.00,1.00,-33.60,-24.00,0
+-38.40,-24.00,7.66,0.00,1.00,-28.80,-24.00,0
+-33.60,-24.00,7.70,0.00,1.00,-24.00,-19.20,0
+-28.80,-19.20,7.74,0.00,1.00,-24.00,-19.20,0
+-24.00,-19.20,7.78,0.00,1.00,-19.20,-14.40,0
+-19.20,-14.40,7.82,0.00,1.00,-14.40,-9.60,0
+-14.40,-9.60,7.86,0.00,1.00,-9.60,-9.60,0
+-9.60,-9.60,7.90,0.00,1.00,-9.60,-4.80,0
+-9.60,-4.80,7.94,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,7.98,0.00,1.00,-4.80,0.00,0
+0.00,0.00,8.02,0.00,1.00,0.00,4.80,0
+4.80,4.80,8.06,0.00,1.00,4.80,4.80,0
+9.60,4.80,8.10,0.00,1.00,4.80,9.60,0
+14.40,9.60,8.14,0.00,1.00,9.60,9.60,0
+14.40,9.60,8.18,0.00,1.00,9.60,14.40,0
+19.20,14.40,8.22,0.00,1.00,14.40,14.40,0
+24.00,14.40,8.26,0.00,1.00,14.40,19.20,0
+28.80,19.20,8.30,0.00,1.00,19.20,19.20,0
+33.60,19.20,8.34,0.00,1.00,24.00,24.00,0
+38.40,19.20,8.38,0.00,1.00,28.80,24.00,0
+43.20,24.00,8.42,0.00,1.00,28.80,24.00,0
+48.00,24.00,8.46,0.00,1.00,33.60,28.80,0
+52.80,28.80,8.50,0.00,1.00,38.40,28.80,0
+57.60,28.80,8.54,0.00,1.00,48.00,28.80,0
+62.40,28.80,8.58,0.00,1.00,52.80,33.60,0
+67.20,28.80,8.62,0.00,1.00,57.60,33.60,0
+76.80,33.60,8.66,0.00,1.00,67.20,33.60,0
+81.60,33.60,8.70,0.00,1.00,76.80,33.60,0
+86.40,33.60,8.74,0.00,1.00,81.60,33.60,0
+91.20,33.60,8.78,0.00,1.00,91.20,33.60,0
+96.00,33.60,8.82,0.00,1.00,100.80,33.60,0
+100.80,33.60,8.86,0.00,1.00,110.40,33.60,0
+110.40,28.80,8.90,0.00,1.00,115.20,33.60,0
+115.20,28.80,8.94,0.00,1.00,124.80,28.80,0
+120.00,28.80,8.98,0.00,1.00,129.60,28.80,0
+124.80,28.80,9.02,0.00,1.00,139.20,28.80,0
+129.60,24.00,9.06,0.00,1.00,144.00,24.00,0
+134.40,24.00,9.10,0.00,1.00,148.80,24.00,0
+139.20,24.00,9.14,0.00,1.00,153.60,19.20,0
+144.00,19.20,9.18,0.00,1.00,153.60,19.20,0
+148.80,19.20,9.22,0.00,1.00,158.40,14.40,0
+153.60,14.40,9.26,0.00,1.00,163.20,14.40,0
+158.40,14.40,9.30,0.00,1.00,163.20,9.60,0
+163.20,9.60,9.34,0.00,1.00,168.00,9.60,0
+168.00,9.60,9.38,0.00,1.00,172.80,4.80,0
+168.00,4.80,9.42,0.00,1.00,172.80,4.80,0
+172.80,4.80,9.46,0.00,1.00,177.60,0.00,0
+177.60,0.00,9.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,9.54,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,9.58,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,9.62,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,9.66,0.00,1.00,-172.80,-9.60,0
+-163.20,-9.60,9.70,0.00,1.00,-168.00,-14.40,0
+-158.40,-14.40,9.74,0.00,1.00,-163.20,-14.40,0
+-153.60,-14.40,9.78,0.00,1.00,-163.20,-19.20,0
+-148.80,-19.20,9.82,0.00,1.00,-158.40,-19.20,0
+-144.00,-19.20,9.86,0.00,1.00,-153.60,-24.00,0
+-139.20,-24.00,9.90,0.00,1.00,-153.60,-24.00,0
+-134.40,-24.00,9.94,0.00,1.00,-148.80,-28.80,0
+-129.60,-24.00,9.98,0.00,1.00,-144.00,-28.80,0
+-124.80,-28.80,10.03,0.00,1.00,-139.20,-28.80,0
+-120.00,-28.80,10.07,0.00,1.00,-129.60,-33.60,0
+-115.20,-28.80,10.11,0.00,1.00,-124.80,-33.60,0
+-110.40,-28.80,10.15,0.00,1.00,-115.20,-33.60,0
+-100.80,-33.60,10.19,0.00,1.00,-110.40,-33.60,0
+-96.00,-33.60,10.23,0.00,1.00,-100.80,-33.60,0
+-91.20,-33.60,10.27,0.00,1.00,-91.20,-33.60,0
+-86.40,-33.60,10.31,0.00,1.00,-81.60,-33.60,0
+-81.60,-33.60,10.35,0.00,1.00,-76.80,-33.60,0
+-76.80,-33.60,10.39,0.00,1.00,-67.20,-33.60,0
+-67.20,-28.80,10.43,0.00,1.00,-57.60,-28.80,0
+-62.40,-28.80,10.47,0.00,1.00,-52.80,-28.80,0
+-57.60,-28.80,10.51,0.00,1.00,-48.00,-28.80,0
+-52.80,-28.80,10.55,0.00,1.00,-38.40,-24.00,0
+-48.00,-24.00,10.59,0.00,1.00,-33.60,-24.00,0
+-43.20,-24.00,10.63,0.00,1.00,-28.80,-24.00,0
+-38.40,-19.20,10.67,0.00,1.00,-28.80,-19.20,0
+-33.60,-19.20,10.71,0.00,1.00,-24.00,-19.20,0
+-28.80,-19.20,10.75,0.00,1.00,-19.20,-14.40,0
+-24.00,-14.40,10.79,0.00,1.00,-14.40,-14.40,0
+-19.20,-14.40,10.83,0.00,1.00,-14.40,-9.60,0
+-14.40,-9.60,10.87,0.00,1.00,-9.60,-9.60,0
+-14.40,-9.60,10.91,0.00,1.00,-9.60,-4.80,0
+-9.60,-4.80,10.95,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,10.99,0.00,1.00,-4.80,0.00,0
+0.00,0.00,11.03,0.00,1.00,0.00,0.00,0
+4.80,0.00,11.07,0.00,1.00,0.00,4.80,0
+9.60,4.80,11.11,0.00,1.00,4.80,4.80,0
+14.40,4.80,11.15,0.00,1.00,4.80,9.60,0
+19.20,9.60,11.19,0.00,1.00,9.60,9.60,0
+19.20,9.60,11.23,0.00,1.00,9.60,14.40,0
+24.00,14.40,11.27,0.00,1.00,14.40,14.40,0
+28.80,14.40,11.31,0.00,1.00,19.20,19.20,0
+33.60,14.40,11.35,0.00,1.00,19.20,19.20,0
+38.40,19.20,11.39,0.00,1.00,24.00,19.20,0
+43.20,19.20,11.43,0.00,1.00,28.80,24.00,0
+48.00,24.00,11.47,0.00,1.00,33.60,24.00,0
+52.80,24.00,11.51,0.00,1.00,38.40,24.00,0
+57.60,24.00,11.55,0.00,1.00,43.20,24.00,0
+62.40,24.00,11.59,0.00,1.00,48.00,28.80,0
+72.00,24.00,11.63,0.00,1.00,52.80,28.80,0
+76.80,28.80,11.67,0.00,1.00,62.40,28.80,0
+81.60,28.80,11.71,0.00,1.00,72.00,28.80,0
+86.40,28.80,11.75,0.00,1.00,81.60,28.80,0
+91.20,28.80,11.79,0.00,1.00,91.20,28.80,0
+96.00,28.80,11.83,0.00,1.00,100.80,28.80,0
+100.80,28.80,11.87,0.00,1.00,110.40,28.80,0
+105.60,28.80,11.91,0.00,1.00,120.00,28.80,0
+110.40,24.00,11.95,0.00,1.00,129.60,24.00,0
+120.00,24.00,11.99,0.00,1.00,134.40,24.00,0
+124.80,24.00,12.03,0.00,1.00,139.20,24.00,0
+129.60,24.00,12.07,0.00,1.00,144.00,24.00,0
+134.40,19.20,12.11,0.00,1.00,148.80,19.20,0
+139.20,19.20,12.15,0.00,1.00,153.60,19.20,0
+144.00,19.20,12.19,0.00,1.00,158.40,14.40,0
+148.80,14.40,12.23,0.00,1.00,163.20,14.40,0
+153.60,14.40,12.27,0.00,1.00,163.20,14.40,0
+158.40,9.60,12.31,0.00,1.00,168.00,9.60,0
+158.40,9.60,12.35,0.00,1.00,168.00,9.60,0
+163.20,9.60,12.39,0.00,1.00,172.80,4.80,0
+168.00,4.80,12.43,0.00,1.00,172.80,4.80,0
+172.80,4.80,12.47,0.00,1.00,177.60,0.00,0
+177.60,0.00,12.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,12.55,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,12.59,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,12.63,0.00,1.00,-172.80,-9.60,0
+-163.20,-9.60,12.67,0.00,1.00,-172.80,-9.60,0
+-158.40,-9.60,12.71,0.00,1.00,-168.00,-14.40,0
+-158.40,-9.60,12.75,0.00,1.00,-168.00,-14.40,0
+-153.60,-14.40,12.79,0.00,1.00,-163.20,-14.40,0
+-148.80,-14.40,12.83,0.00,1.00,-163.20,-19.20,0
+-144.00,-19.20,12.87,0.00,1.00,-158.40,-19.20,0
+-139.20,-19.20,12.91,0.00,1.00,-153.60,-24.00,0
+-134.40,-19.20,12.95,0.00,1.00,-148.80,-24.00,0
+-129.60,-24.00,12.99,0.00,1.00,-144.00,-24.00,0
+-124.80,-24.00,13.03,0.00,1.00,-139.20,-24.00,0
+-120.00,-24.00,13.07,0.00,1.00,-134.40,-28.80,0
+-110.40,-24.00,13.11,0.00,1.00,-129.60,-28.80,0
+-105.60,-28.80,13.15,0.00,1.00,-120.00,-28.80,0
+-100.80,-28.80,13.19,0.00,1.00,-110.40,-28.80,0
+-96.00,-28.80,13.23,0.00,1.00,-100.80,-28.80,0
+-91.20,-28.80,13.27,0.00,1.00,-91.20,-28.80,0
+-86.40,-28.80,13.31,0.00,1.00,-81.60,-28.80,0
+-81.60,-28.80,13.35,0.00,1.00,-72.00,-28.80,0
+-76.80,-28.80,13.39,0.00,1.00,-62.40,-28.80,0
+-72.00,-24.00,13.43,0.00,1.00,-52.80,-24.00,0
+-62.40,-24.00,13.47,0.00,1.00,-48.00,-24.00,0
+-57.60,-24.00,13.51,0.00,1.00,-43.20,-24.00,0
+-52.80,-24.00,13.55,0.00,1.00,-38.40,-24.00,0
+-48.00,-24.00,13.59,0.00,1.00,-33.60,-19.20,0
+-43.20,-19.20,13.63,0.00,1.00,-28.80,-19.20,0
+-38.40,-19.20,13.67,0.00,1.00,-24.00,-19.20,0
+-33.60,-14.40,13.71,0.00,1.00,-19.20,-14.40,0
+-28.80,-14.40,13.75,0.00,1.00,-19.20,-14.40,0
+-24.00,-14.40,13.79,0.00,1.00,-14.40,-9.60,0
+-19.20,-9.60,13.83,0.00,1.00,-9.60,-9.60,0
+-19.20,-9.60,13.87,0.00,1.00,-9.60,-4.80,0
+-14.40,-4.80,13.91,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,13.95,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,13.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,14.04,0.00,1.00,0.00,0.00,0
+4.80,0.00,14.08,0.00,1.00,0.00,4.80,0
+9.60,4.80,14.12,0.00,1.00,4.80,4.80,0
+14.40,4.80,14.16,0.00,1.00,4.80,9.60,0
+19.20,9.60,14.20,0.00,1.00,9.60,9.60,0
+24.00,9.60,14.24,0.00,1.00,9.60,9.60,0
+28.80,9.60,14.28,0.00,1.00,14.40,14.40,0
+33.60,14.40,14.32,0.00,1.00,14.40,14.40,0
+38.40,14.40,14.36,0.00,1.00,19.20,14.40,0
+43.20,14.40,14.40,0.00,1.00,19.20,19.20,0
+48.00,14.40,14.44,0.00,1.00,24.00,19.20,0
+52.80,19.20,14.48,0.00,1.00,28.80,19.20,0
+57.60,19.20,14.52,0.00,1.00,33.60,19.20,0
+62.40,19.20,14.56,0.00,1.00,38.40,24.00,0
+67.20,19.20,14.60,0.00,1.00,43.20,24.00,0
+72.00,24.00,14.64,0.00,1.00,48.00,24.00,0
+76.80,24.00,14.68,0.00,1.00,57.60,24.00,0
+81.60,24.00,14.72,0.00,1.00,67.20,24.00,0
+86.40,24.00,14.76,0.00,1.00,81.60,24.00,0
+91.20,24.00,14.80,0.00,1.00,91.20,24.00,0
+96.00,24.00,14.84,0.00,1.00,105.60,24.00,0
+100.80,24.00,14.88,0.00,1.00,115.20,24.00,0
+105.60,24.00,14.92,0.00,1.00,124.80,24.00,0
+110.40,19.20,14.96,0.00,1.00,134.40,19.20,0
+115.20,19.20,15.00,0.00,1.00,139.20,19.20,0
+120.00,19.20,15.04,0.00,1.00,144.00,19.20,0
+124.80,19.20,15.08,0.00,1.00,148.80,19.20,0
+129.60,19.20,15.12,0.00,1.00,153.60,19.20,0
+134.40,14.40,15.16,0.00,1.00,158.40,14.40,0
+139.20,14.40,15.20,0.00,1.00,163.20,14.40,0
+144.00,14.40,15.24,0.00,1.00,163.20,14.40,0
+148.80,9.60,15.28,0.00,1.00,168.00,9.60,0
+153.60,9.60,15.32,0.00,1.00,168.00,9.60,0
+158.40,9.60,15.36,0.00,1.00,172.80,4.80,0
+163.20,4.80,15.40,0.00,1.00,172.80,4.80,0
+168.00,4.80,15.44,0.00,1.00,177.60,4.80,0
+172.80,4.80,15.48,0.00,1.00,177.60,0.00,0
+177.60,0.00,15.52,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,15.56,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,15.60,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,15.64,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,15.68,0.00,1.00,-172.80,-9.60,0
+-158.40,-9.60,15.72,0.00,1.00,-172.80,-9.60,0
+-153.60,-9.60,15.76,0.00,1.00,-168.00,-14.40,0
+-148.80,-9.60,15.80,0.00,1.00,-168.00,-14.40,0
+-144.00,-14.40,15.84,0.00,1.00,-163.20,-14.40,0
+-139.20,-14.40,15.88,0.00,1.00,-163.20,-19.20,0
+-134.40,-14.40,15.92,0.00,1.00,-158.40,-19.20,0
+-129.60,-19.20,15.96,0.00,1.00,-153.60,-19.20,0
+-124.80,-19.20,16.00,0.00,1.00,-148.80,-19.20,0
+-120.00,-19.20,16.00,0.00,1.00,-144.00,-19.20,0
+-115.20,-19.20,15.96,0.00,1.00,-139.20,-24.00,0
+-110.40,-19.20,15.92,0.00,1.00,-134.40,-24.00,0
+-105.60,-24.00,15.88,0.00,1.00,-124.80,-24.00,0
+-100.80,-24.00,15.84,0.00,1.00,-115.20,-24.00,0
+-96.00,-24.00,15.80,0.00,1.00,-105.60,-24.00,0
+-91.20,-24.00,15.76,0.00,1.00,-91.20,-24.00,0
+-86.40,-24.00,15.72,0.00,1.00,-81.60,-24.00,0
+-81.60,-24.00,15.68,0.00,1.00,-67.20,-24.00,0
+-76.80,-24.00,15.64,0.00,1.00,-57.60,-24.00,0
+-72.00,-24.00,15.60,0.00,1.00,-48.00,-24.00,0
+-67.20,-19.20,15.56,0.00,1.00,-43.20,-19.20,0
+-62.40,-19.20,15.52,0.00,1.00,-38.40,-19.20,0
+-57.60,-19.20,15.48,0.00,1.00,-33.60,-19.20,0
+-52.80,-19.20,15.44,0.00,1.00,-28.80,-19.20,0
+-48.00,-14.40,15.40,0.00,1.00,-24.00,-14.40,0
+-43.20,-14.40,15.36,0.00,1.00,-19.20,-14.40,0
+-38.40,-14.40,15.32,0.00,1.00,-19.20,-14.40,0
+-33.60,-14.40,15.28,0.00,1.00,-14.40,-9.60,0
+-28.80,-9.60,15.24,0.00,1.00,-14.40,-9.60,0
+-24.00,-9.60,15.20,0.00,1.00,-9.60,-9.60,0
+-19.20,-9.60,15.16,0.00,1.00,-9.60,-4.80,0
+-14.40,-4.80,15.12,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,15.08,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,15.04,0.00,1.00,-0.00,0.00,0
+0.00,0.00,15.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,14.96,0.00,1.00,0.00,4.80,0
+9.60,4.80,14.92,0.00,1.00,4.80,4.80,0
+14.40,4.80,14.88,0.00,1.00,4.80,4.80,0
+19.20,4.80,14.84,0.00,1.00,4.80,9.60,0
+24.00,9.60,14.80,0.00,1.00,9.60,9.60,0
+28.80,9.60,14.76,0.00,1.00,9.60,9.60,0
+33.60,9.60,14.72,0.00,1.00,9.60,9.60,0
+38.40,9.60,14.68,0.00,1.00,14.40,14.40,0
+43.20,14.40,14.64,0.00,1.00,14.40,14.40,0
+48.00,14.40,14.60,0.00,1.00,19.20,14.40,0
+52.80,14.40,14.56,0.00,1.00,24.00,14.40,0
+57.60,14.40,14.52,0.00,1.00,24.00,19.20,0
+62.40,14.40,14.48,0.00,1.00,28.80,19.20,0
+67.20,14.40,14.44,0.00,1.00,38.40,19.20,0
+72.00,19.20,14.40,0.00,1.00,43.20,19.20,0
+76.80,19.20,14.36,0.00,1.00,52.80,19.20,0
+81.60,19.20,14.32,0.00,1.00,62.40,19.20,0
+86.40,19.20,14.28,0.00,1.00,76.80,19.20,0
+91.20,19.20,14.24,0.00,1.00,96.00,19.20,0
+96.00,19.20,14.20,0.00,1.00,110.40,19.20,0
+100.80,19.20,14.16,0.00,1.00,120.00,19.20,0
+105.60,19.20,14.12,0.00,1.00,134.40,19.20,0
+110.40,19.20,14.08,0.00,1.00,139.20,19.20,0
+115.20,14.40,14.04,0.00,1.00,148.80,14.40,0
+120.00,14.40,13.99,0.00,1.00,153.60,14.40,0
+124.80,14.40,13.95,0.00,1.00,158.40,14.40,0
+129.60,14.40,13.91,0.00,1.00,158.40,14.40,0
+134.40,14.40,13.87,0.00,1.00,163.20,14.40,0
+139.20,9.60,13.83,0.00,1.00,163.20,9.60,0
+144.00,9.60,13.79,0.00,1.00,168.00,9.60,0
+148.80,9.60,13.75,0.00,1.00,168.00,9.60,0
+153.60,9.60,13.71,0.00,1.00,172.80,4.80,0
+158.40,4.80,13.67,0.00,1.00,172.80,4.80,0
+163.20,4.80,13.63,0.00,1.00,172.80,4.80,0
+168.00,4.80,13.59,0.00,1.00,177.60,0.00,0
+172.80,0.00,13.55,0.00,1.00,177.60,0.00,0
+177.60,0.00,13.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.47,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,13.43,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,13.39,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,13.35,0.00,1.00,-172.80,-4.80,0
+-158.40,-4.80,13.31,0.00,1.00,-172.80,-9.60,0
+-153.60,-9.60,13.27,0.00,1.00,-172.80,-9.60,0
+-148.80,-9.60,13.23,0.00,1.00,-168.00,-9.60,0
+-144.00,-9.60,13.19,0.00,1.00,-168.00,-14.40,0
+-139.20,-9.60,13.15,0.00,1.00,-163.20,-14.40,0
+-134.40,-14.40,13.11,0.00,1.00,-163.20,-14.40,0
+-129.60,-14.40,13.07,0.00,1.00,-158.40,-14.40,0
+-124.80,-14.40,13.03,0.00,1.00,-158.40,-14.40,0
+-120.00,-14.40,12.99,0.00,1.00,-153.60,-19.20,0
+-115.20,-14.40,12.95,0.00,1.00,-148.80,-19.20,0
+-110.40,-19.20,12.91,0.00,1.00,-139.20,-19.20,0
+-105.60,-19.20,12.87,0.00,1.00,-134.40,-19.20,0
+-100.80,-19.20,12.83,0.00,1.00,-120.00,-19.20,0
+-96.00,-19.20,12.79,0.00,1.00,-110.40,-19.20,0
+-91.20,-19.20,12.75,0.00,1.00,-96.00,-19.20,0
+-86.40,-19.20,12.71,0.00,1.00,-76.80,-19.20,0
+-81.60,-19.20,12.67,0.00,1.00,-62.40,-19.20,0
+-76.80,-19.20,12.63,0.00,1.00,-52.80,-19.20,0
+-72.00,-19.20,12.59,0.00,1.00,-43.20,-19.20,0
+-67.20,-14.40,12.55,0.00,1.00,-38.40,-19.20,0
+-62.40,-14.40,12.51,0.00,1.00,-28.80,-14.40,0
+-57.60,-14.40,12.47,0.00,1.00,-24.00,-14.40,0
+-52.80,-14.40,12.43,0.00,1.00,-24.00,-14.40,0
+-48.00,-14.40,12.39,0.00,1.00,-19.20,-14.40,0
+-43.20,-14.40,12.35,0.00,1.00,-14.40,-9.60,0
+-38.40,-9.60,12.31,0.00,1.00,-14.40,-9.60,0
+-33.60,-9.60,12.27,0.00,1.00,-9.60,-9.60,0
+-28.80,-9.60,12.23,0.00,1.00,-9.60,-9.60,0
+-24.00,-9.60,12.19,0.00,1.00,-9.60,-4.80,0
+-19.20,-4.80,12.15,0.00,1.00,-4.80,-4.80,0
+-14.40,-4.80,12.11,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,12.07,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,12.03,0.00,1.00,-0.00,0.00,0
+0.00,0.00,11.99,0.00,1.00,0.00,0.00,0
+4.80,0.00,11.95,0.00,1.00,0.00,0.00,0
+9.60,0.00,11.91,0.00,1.00,0.00,4.80,0
+14.40,4.80,11.87,0.00,1.00,4.80,4.80,0
+19.20,4.80,11.83,0.00,1.00,4.80,4.80,0
+24.00,4.80,11.79,0.00,1.00,4.80,4.80,0
+28.80,4.80,11.75,0.00,1.00,4.80,9.60,0
+33.60,9.60,11.71,0.00,1.00,9.60,9.60,0
+38.40,9.60,11.67,0.00,1.00,9.60,9.60,0
+43.20,9.60,11.63,0.00,1.00,14.40,9.60,0
+48.00,9.60,11.59,0.00,1.00,14.40,9.60,0
+52.80,9.60,11.55,0.00,1.00,14.40,14.40,0
+57.60,9.60,11.51,0.00,1.00,19.20,14.40,0
+62.40,9.60,11.47,0.00,1.00,24.00,14.40,0
+67.20,14.40,11.43,0.00,1.00,28.80,14.40,0
+72.00,14.40,11.39,0.00,1.00,33.60,14.40,0
+76.80,14.40,11.35,0.00,1.00,43.20,14.40,0
+81.60,14.40,11.31,0.00,1.00,57.60,14.40,0
+86.40,14.40,11.27,0.00,1.00,76.80,14.40,0
+91.20,14.40,11.23,0.00,1.00,96.00,14.40,0
+96.00,14.40,11.19,0.00,1.00,115.20,14.40,0
+100.80,14.40,11.15,0.00,1.00,129.60,14.40,0
+105.60,14.40,11.11,0.00,1.00,139.20,14.40,0
+110.40,14.40,11.07,0.00,1.00,148.80,14.40,0
+115.20,9.60,11.03,0.00,1.00,153.60,14.40,0
+120.00,9.60,10.99,0.00,1.00,158.40,9.60,0
+124.80,9.60,10.95,0.00,1.00,163.20,9.60,0
+129.60,9.60,10.91,0.00,1.00,163.20,9.60,0
+134.40,9.60,10.87,0.00,1.00,168.00,9.60,0
+139.20,9.60,10.83,0.00,1.00,168.00,9.60,0
+144.00,9.60,10.79,0.00,1.00,172.80,9.60,0
+148.80,4.80,10.75,0.00,1.00,172.80,4.80,0
+153.60,4.80,10.71,0.00,1.00,172.80,4.80,0
+158.40,4.80,10.67,0.00,1.00,172.80,4.80,0
+163.20,4.80,10.63,0.00,1.00,177.60,4.80,0
+168.00,4.80,10.59,0.00,1.00,177.60,0.00,0
+172.80,0.00,10.55,0.00,1.00,177.60,0.00,0
+177.60,0.00,10.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.47,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,10.43,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,10.39,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,10.35,0.00,1.00,-177.60,-4.80,0
+-158.40,-4.80,10.31,0.00,1.00,-172.80,-4.80,0
+-153.60,-4.80,10.27,0.00,1.00,-172.80,-9.60,0
+-148.80,-4.80,10.23,0.00,1.00,-172.80,-9.60,0
+-144.00,-9.60,10.19,0.00,1.00,-172.80,-9.60,0
+-139.20,-9.60,10.15,0.00,1.00,-168.00,-9.60,0
+-134.40,-9.60,10.11,0.00,1.00,-168.00,-9.60,0
+-129.60,-9.60,10.07,0.00,1.00,-163.20,-9.60,0
+-124.80,-9.60,10.03,0.00,1.00,-163.20,-14.40,0
+-120.00,-9.60,9.98,0.00,1.00,-158.40,-14.40,0
+-115.20,-9.60,9.94,0.00,1.00,-153.60,-14.40,0
+-110.40,-14.40,9.90,0.00,1.00,-148.80,-14.40,0
+-105.60,-14.40,9.86,0.00,1.00,-139.20,-14.40,0
+-100.80,-14.40,9.82,0.00,1.00,-129.60,-14.40,0
+-96.00,-14.40,9.78,0.00,1.00,-115.20,-14.40,0
+-91.20,-14.40,9.74,0.00,1.00,-96.00,-14.40,0
+-86.40,-14.40,9.70,0.00,1.00,-76.80,-14.40,0
+-81.60,-14.40,9.66,0.00,1.00,-57.60,-14.40,0
+-76.80,-14.40,9.62,0.00,1.00,-43.20,-14.40,0
+-72.00,-14.40,9.58,0.00,1.00,-33.60,-14.40,0
+-67.20,-14.40,9.54,0.00,1.00,-28.80,-14.40,0
+-62.40,-9.60,9.50,0.00,1.00,-24.00,-14.40,0
+-57.60,-9.60,9.46,0.00,1.00,-19.20,-9.60,0
+-52.80,-9.60,9.42,0.00,1.00,-14.40,-9.60,0
+-48.00,-9.60,9.38,0.00,1.00,-14.40,-9.60,0
+-43.20,-9.60,9.34,0.00,1.00,-14.40,-9.60,0
+-38.40,-9.60,9.30,0.00,1.00,-9.60,-9.60,0
+-33.60,-9.60,9.26,0.00,1.00,-9.60,-4.80,0
+-28.80,-4.80,9.22,0.00,1.00,-4.80,-4.80,0
+-24.00,-4.80,9.18,0.00,1.00,-4.80,-4.80,0
+-19.20,-4.80,9.14,0.00,1.00,-4.80,-4.80,0
+-14.40,-4.80,9.10,0.00,1.00,-4.80,-0.00,0
+-9.60,-0.00,9.06,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,9.02,0.00,1.00,-0.00,0.00,0
+0.00,0.00,8.98,0.00,1.00,0.00,0.00,0
+4.80,0.00,8.94,0.00,1.00,0.00,0.00,0
+9.60,0.00,8.90,0.00,1.00,0.00,0.00,0
+14.40,0.00,8.86,0.00,1.00,0.00,4.80,0
+19.20,4.80,8.82,0.00,1.00,4.80,4.80,0
+24.00,4.80,8.78,0.00,1.00,4.80,4.80,0
+28.80,4.80,8.74,0.00,1.00,4.80,4.80,0
+33.60,4.80,8.70,0.00,1.00,4.80,4.80,0
+38.40,4.80,8.66,0.00,1.00,4.80,4.80,0
+43.20,4.80,8.62,0.00,1.00,9.60,4.80,0
+48.00,4.80,8.58,0.00,1.00,9.60,9.60,0
+52.80,4.80,8.54,0.00,1.00,9.60,9.60,0
+57.60,4.80,8.50,0.00,1.00,14.40,9.60,0
+62.40,9.60,8.46,0.00,1.00,14.40,9.60,0
+67.20,9.60,8.42,0.00,1.00,19.20,9.60,0
+72.00,9.60,8.38,0.00,1.00,24.00,9.60,0
+76.80,9.60,8.34,0.00,1.00,33.60,9.60,0
+81.60,9.60,8.30,0.00,1.00,43.20,9.60,0
+86.40,9.60,8.26,0.00,1.00,67.20,9.60,0
+91.20,9.60,8.22,0.00,1.00,96.00,9.60,0
+96.00,9.60,8.18,0.00,1.00,124.80,9.60,0
+100.80,9.60,8.14,0.00,1.00,144.00,9.60,0
+105.60,9.60,8.10,0.00,1.00,153.60,9.60,0
+110.40,9.60,8.06,0.00,1.00,158.40,9.60,0
+115.20,9.60,8.02,0.00,1.00,163.20,9.60,0
+120.00,9.60,7.98,0.00,1.00,168.00,9.60,0
+124.80,4.80,7.94,0.00,1.00,168.00,9.60,0
+129.60,4.80,7.90,0.00,1.00,168.00,4.80,0
+134.40,4.80,7.86,0.00,1.00,172.80,4.80,0
+139.20,4.80,7.82,0.00,1.00,172.80,4.80,0
+144.00,4.80,7.78,0.00,1.00,172.80,4.80,0
+148.80,4.80,7.74,0.00,1.00,172.80,4.80,0
+153.60,4.80,7.70,0.00,1.00,177.60,4.80,0
+158.40,4.80,7.66,0.00,1.00,177.60,4.80,0
+163.20,4.80,7.62,0.00,1.00,177.60,0.00,0
+168.00,0.00,7.58,0.00,1.00,177.60,0.00,0
+172.80,0.00,7.54,0.00,1.00,177.60,0.00,0
+177.60,0.00,7.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,7.46,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,7.42,0.00,1.00,-177.60,-0.00,0
+-168.00,-0.00,7.38,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,7.34,0.00,1.00,-177.60,-4.80,0
+-158.40,-4.80,7.30,0.00,1.00,-177.60,-4.80,0
+-153.60,-4.80,7.26,0.00,1.00,-177.60,-4.80,0
+-148.80,-4.80,7.22,0.00,1.00,-172.80,-4.80,0
+-144.00,-4.80,7.18,0.00,1.00,-172.80,-4.80,0
+-139.20,-4.80,7.14,0.00,1.00,-172.80,-4.80,0
+-134.40,-4.80,7.10,0.00,1.00,-172.80,-9.60,0
+-129.60,-4.80,7.06,0.00,1.00,-168.00,-9.60,0
+-124.80,-4.80,7.02,0.00,1.00,-168.00,-9.60,0
+-120.00,-9.60,6.98,0.00,1.00,-168.00,-9.60,0
+-115.20,-9.60,6.94,0.00,1.00,-163.20,-9.60,0
+-110.40,-9.60,6.90,0.00,1.00,-158.40,-9.60,0
+-105.60,-9.60,6.86,0.00,1.00,-153.60,-9.60,0
+-100.80,-9.60,6.82,0.00,1.00,-144.00,-9.60,0
+-96.00,-9.60,6.78,0.00,1.00,-124.80,-9.60,0
+-91.20,-9.60,6.74,0.00,1.00,-96.00,-9.60,0
+-86.40,-9.60,6.70,0.00,1.00,-67.20,-9.60,0
+-81.60,-9.60,6.66,0.00,1.00,-43.20,-9.60,0
+-76.80,-9.60,6.62,0.00,1.00,-33.60,-9.60,0
+-72.00,-9.60,6.58,0.00,1.00,-24.00,-9.60,0
+-67.20,-9.60,6.54,0.00,1.00,-19.20,-9.60,0
+-62.40,-9.60,6.50,0.00,1.00,-14.40,-9.60,0
+-57.60,-4.80,6.46,0.00,1.00,-14.40,-9.60,0
+-52.80,-4.80,6.42,0.00,1.00,-9.60,-4.80,0
+-48.00,-4.80,6.38,0.00,1.00,-9.60,-4.80,0
+-43.20,-4.80,6.34,0.00,1.00,-9.60,-4.80,0
+-38.40,-4.80,6.30,0.00,1.00,-4.80,-4.80,0
+-33.60,-4.80,6.26,0.00,1.00,-4.80,-4.80,0
+-28.80,-4.80,6.22,0.00,1.00,-4.80,-4.80,0
+-24.00,-4.80,6.18,0.00,1.00,-4.80,-4.80,0
+-19.20,-4.80,6.14,0.00,1.00,-4.80,-0.00,0
+-14.40,-0.00,6.10,0.00,1.00,-0.00,-0.00,0
+-9.60,-0.00,6.06,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,6.02,0.00,1.00,-0.00,0.00,0
+0.00,0.00,5.97,0.00,1.00,0.00,0.00,0
+4.80,0.00,5.93,0.00,1.00,0.00,0.00,0
+9.60,0.00,5.89,0.00,1.00,0.00,0.00,0
+14.40,0.00,5.85,0.00,1.00,0.00,0.00,0
+19.20,0.00,5.81,0.00,1.00,0.00,0.00,0
+24.00,0.00,5.77,0.00,1.00,0.00,0.00,0
+28.80,0.00,5.73,0.00,1.00,0.00,4.80,0
+33.60,0.00,5.69,0.00,1.00,0.00,4.80,0
+38.40,0.00,5.65,0.00,1.00,4.80,4.80,0
+43.20,4.80,5.61,0.00,1.00,4.80,4.80,0
+48.00,4.80,5.57,0.00,1.00,4.80,4.80,0
+52.80,4.80,5.53,0.00,1.00,4.80,4.80,0
+57.60,4.80,5.49,0.00,1.00,4.80,4.80,0
+62.40,4.80,5.45,0.00,1.00,4.80,4.80,0
+67.20,4.80,5.41,0.00,1.00,9.60,4.80,0
+72.00,4.80,5.37,0.00,1.00,9.60,4.80,0
+76.80,4.80,5.33,0.00,1.00,14.40,4.80,0
+81.60,4.80,5.29,0.00,1.00,24.00,4.80,0
+86.40,4.80,5.25,0.00,1.00,43.20,4.80,0
+91.20,4.80,5.21,0.00,1.00,110.40,4.80,0
+96.00,4.80,5.17,0.00,1.00,148.80,4.80,0
+100.80,4.80,5.13,0.00,1.00,163.20,4.80,0
+105.60,4.80,5.09,0.00,1.00,168.00,4.80,0
+110.40,4.80,5.05,0.00,1.00,172.80,4.80,0
+115.20,4.80,5.01,0.00,1.00,172.80,4.80,0
+120.00,4.80,4.97,0.00,1.00,172.80,4.80,0
+124.80,4.80,4.93,0.00,1.00,172.80,4.80,0
+129.60,4.80,4.89,0.00,1.00,177.60,4.80,0
+134.40,4.80,4.85,0.00,1.00,177.60,4.80,0
+139.20,0.00,4.81,0.00,1.00,177.60,4.80,0
+144.00,0.00,4.77,0.00,1.00,177.60,4.80,0
+148.80,0.00,4.73,0.00,1.00,177.60,0.00,0
+153.60,0.00,4.69,0.00,1.00,177.60,0.00,0
+158.40,0.00,4.65,0.00,1.00,177.60,0.00,0
+163.20,0.00,4.61,0.00,1.00,177.60,0.00,0
+168.00,0.00,4.57,0.00,1.00,177.60,0.00,0
+172.80,0.00,4.53,0.00,1.00,177.60,0.00,0
+177.60,0.00,4.49,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,4.45,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,4.41,0.00,1.00,-177.60,-0.00,0
+-168.00,-0.00,4.37,0.00,1.00,-177.60,-0.00,0
+-163.20,-0.00,4.33,0.00,1.00,-177.60,-0.00,0
+-158.40,-0.00,4.29,0.00,1.00,-177.60,-0.00,0
+-153.60,-0.00,4.25,0.00,1.00,-177.60,-4.80,0
+-148.80,-0.00,4.21,0.00,1.00,-177.60,-4.80,0
+-144.00,-0.00,4.17,0.00,1.00,-177.60,-4.80,0
+-139.20,-0.00,4.13,0.00,1.00,-177.60,-4.80,0
+-134.40,-4.80,4.09,0.00,1.00,-177.60,-4.80,0
+-129.60,-4.80,4.05,0.00,1.00,-177.60,-4.80,0
+-124.80,-4.80,4.01,0.00,1.00,-172.80,-4.80,0
+-120.00,-4.80,3.97,0.00,1.00,-172.80,-4.80,0
+-115.20,-4.80,3.93,0.00,1.00,-172.80,-4.80,0
+-110.40,-4.80,3.89,0.00,1.00,-172.80,-4.80,0
+-105.60,-4.80,3.85,0.00,1.00,-168.00,-4.80,0
+-100.80,-4.80,3.81,0.00,1.00,-163.20,-4.80,0
+-96.00,-4.80,3.77,0.00,1.00,-148.80,-4.80,0
+-91.20,-4.80,3.73,0.00,1.00,-110.40,-4.80,0
+-86.40,-4.80,3.69,0.00,1.00,-43.20,-4.80,0
+-81.60,-4.80,3.65,0.00,1.00,-24.00,-4.80,0
+-76.80,-4.80,3.61,0.00,1.00,-14.40,-4.80,0
+-72.00,-4.80,3.57,0.00,1.00,-9.60,-4.80,0
+-67.20,-4.80,3.53,0.00,1.00,-9.60,-4.80,0
+-62.40,-4.80,3.49,0.00,1.00,-4.80,-4.80,0
+-57.60,-4.80,3.45,0.00,1.00,-4.80,-4.80,0
+-52.80,-4.80,3.41,0.00,1.00,-4.80,-4.80,0
+-48.00,-4.80,3.37,0.00,1.00,-4.80,-4.80,0
+-43.20,-4.80,3.33,0.00,1.00,-4.80,-4.80,0
+-38.40,-0.00,3.29,0.00,1.00,-4.80,-4.80,0
+-33.60,-0.00,3.25,0.00,1.00,-0.00,-0.00,0
+-28.80,-0.00,3.21,0.00,1.00,-0.00,-0.00,0
+-24.00,-0.00,3.17,0.00,1.00,-0.00,-0.00,0
+-19.20,-0.00,3.13,0.00,1.00,-0.00,-0.00,0
+-14.40,-0.00,3.09,0.00,1.00,-0.00,-0.00,0
+-9.60,-0.00,3.05,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,3.01,0.00,1.00,-0.00,0.00,0
+0.00,0.00,2.97,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,2.93,0.00,1.00,-0.00,0.00,0
+9.60,-0.00,2.89,0.00,1.00,-0.00,0.00,0
+14.40,-0.00,2.85,0.00,1.00,-0.00,0.00,0
+19.20,-0.00,2.81,0.00,1.00,-0.00,0.00,0
+24.00,-0.00,2.77,0.00,1.00,-0.00,0.00,0
+28.80,-0.00,2.73,0.00,1.00,-0.00,0.00,0
+33.60,-0.00,2.69,0.00,1.00,-0.00,0.00,0
+38.40,-0.00,2.65,0.00,1.00,-0.00,0.00,0
+43.20,-0.00,2.61,0.00,1.00,-0.00,0.00,0
+48.00,-0.00,2.57,0.00,1.00,-0.00,0.00,0
+52.80,-0.00,2.53,0.00,1.00,-0.00,0.00,0
+57.60,-0.00,2.49,0.00,1.00,-0.00,0.00,0
+62.40,-0.00,2.45,0.00,1.00,-0.00,0.00,0
+67.20,-0.00,2.41,0.00,1.00,-4.80,0.00,0
+72.00,-0.00,2.37,0.00,1.00,-4.80,0.00,0
+76.80,-0.00,2.33,0.00,1.00,-4.80,0.00,0
+81.60,-0.00,2.29,0.00,1.00,-9.60,0.00,0
+86.40,-0.00,2.25,0.00,1.00,-19.20,0.00,0
+91.20,-0.00,2.21,0.00,1.00,-134.40,0.00,0
+96.00,-0.00,2.17,0.00,1.00,-168.00,0.00,0
+100.80,-0.00,2.13,0.00,1.00,-172.80,0.00,0
+105.60,-0.00,2.09,0.00,1.00,-177.60,0.00,0
+110.40,-0.00,2.05,0.00,1.00,-177.60,0.00,0
+115.20,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+120.00,-0.00,1.96,0.00,1.00,-177.60,0.00,0
+124.80,-0.00,1.92,0.00,1.00,-177.60,0.00,0
+129.60,-0.00,1.88,0.00,1.00,-177.60,0.00,0
+134.40,-0.00,1.84,0.00,1.00,-177.60,0.00,0
+139.20,-0.00,1.80,0.00,1.00,-177.60,0.00,0
+144.00,-0.00,1.76,0.00,1.00,-177.60,0.00,0
+148.80,-0.00,1.72,0.00,1.00,-177.60,0.00,0
+153.60,-0.00,1.68,0.00,1.00,-177.60,0.00,0
+158.40,-0.00,1.64,0.00,1.00,-177.60,0.00,0
+163.20,-0.00,1.60,0.00,1.00,-177.60,0.00,0
+168.00,-0.00,1.56,0.00,1.00,-177.60,0.00,0
+172.80,-0.00,1.52,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,1.48,0.00,1.00,-177.60,0.00,0
+-177.60,0.00,1.44,0.00,1.00,177.60,0.00,0
+-172.80,0.00,1.40,0.00,1.00,177.60,0.00,0
+-168.00,0.00,1.36,0.00,1.00,177.60,0.00,0
+-163.20,0.00,1.32,0.00,1.00,177.60,0.00,0
+-158.40,0.00,1.28,0.00,1.00,177.60,0.00,0
+-153.60,0.00,1.24,0.00,1.00,177.60,0.00,0
+-148.80,0.00,1.20,0.00,1.00,177.60,0.00,0
+-144.00,0.00,1.16,0.00,1.00,177.60,0.00,0
+-139.20,0.00,1.12,0.00,1.00,177.60,0.00,0
+-134.40,0.00,1.08,0.00,1.00,177.60,0.00,0
+-129.60,0.00,1.04,0.00,1.00,177.60,0.00,0
+-124.80,0.00,1.00,0.00,1.00,177.60,0.00,0
+-120.00,0.00,0.96,0.00,1.00,177.60,0.00,0
+-115.20,0.00,0.92,0.00,1.00,177.60,0.00,0
+-110.40,0.00,0.88,0.00,1.00,177.60,0.00,0
+-105.60,0.00,0.84,0.00,1.00,177.60,0.00,0
+-100.80,0.00,0.80,0.00,1.00,172.80,0.00,0
+-96.00,0.00,0.76,0.00,1.00,168.00,0.00,0
+-91.20,0.00,0.72,0.00,1.00,134.40,0.00,0
+-86.40,0.00,0.68,0.00,1.00,19.20,0.00,0
+-81.60,0.00,0.64,0.00,1.00,9.60,0.00,0
+-76.80,0.00,0.60,0.00,1.00,4.80,0.00,0
+-72.00,0.00,0.56,0.00,1.00,4.80,0.00,0
+-67.20,0.00,0.52,0.00,1.00,4.80,0.00,0
+-62.40,0.00,0.48,0.00,1.00,0.00,0.00,0
+-57.60,0.00,0.44,0.00,1.00,0.00,0.00,0
+-52.80,0.00,0.40,0.00,1.00,0.00,0.00,0
+-48.00,0.00,0.36,0.00,1.00,0.00,0.00,0
+-43.20,0.00,0.32,0.00,1.00,0.00,0.00,0
+-38.40,0.00,0.28,0.00,1.00,0.00,0.00,0
+-33.60,0.00,0.24,0.00,1.00,0.00,0.00,0
+-28.80,0.00,0.20,0.00,1.00,0.00,0.00,0
+-24.00,0.00,0.16,0.00,1.00,0.00,0.00,0
+-19.20,0.00,0.12,0.00,1.00,0.00,0.00,0
+-14.40,0.00,0.08,0.00,1.00,0.00,0.00,0
+-9.60,0.00,0.04,0.00,1.00,0.00,0.00,0
+-4.80,0.00,0.00,0.00,1.00,0.00,0.00,0
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA2TC32c.met b/scripts/testv/stvOMASA_4ISM_1MASA2TC32c.met
new file mode 100644
index 0000000000000000000000000000000000000000..00acdae5394c5d40e9193d7dd9cd1fee6d182c24
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA2TC32c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5a1f87bfe360dbd221a94583aa68a58ef050e968a63351730d643f2dc2cac4e1
+size 204600
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA2TC32c.wav b/scripts/testv/stvOMASA_4ISM_1MASA2TC32c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..916fb8cef10cfa143b0cf349c62dcd743836b560
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA2TC32c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8264a0b7ed12f5c0bfabf0e7d87ba8fdd5721b709aa55d7f0884ecc11ffcd1c
+size 2304080
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA2TC32c_ISM1.csv b/scripts/testv/stvOMASA_4ISM_1MASA2TC32c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA2TC32c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA2TC32c_ISM2.csv b/scripts/testv/stvOMASA_4ISM_1MASA2TC32c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA2TC32c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA2TC32c_ISM3.csv b/scripts/testv/stvOMASA_4ISM_1MASA2TC32c_ISM3.csv
new file mode 100644
index 0000000000000000000000000000000000000000..14eee9b693b536fa2fd22d2813d7f588b8930b06
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA2TC32c_ISM3.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0
+-177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0
+4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0
+-168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0
+14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0
+-163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0
+19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0
+-153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0
+28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0
+-148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0
+38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0
+-139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0
+48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0
+-124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0
+57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0
+-115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0
+72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0
+-100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0
+86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0
+-86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0
+100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0
+-76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0
+110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0
+-62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0
+124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0
+-52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0
+134.40,33.60,0.28,0.00,1.00,177.60,0.00,0
+-38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0
+144.00,28.80,0.30,0.00,1.00,177.60,0.00,0
+-33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0
+153.60,24.00,0.32,0.00,1.00,177.60,0.00,0
+-24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0
+158.40,19.20,0.34,0.00,1.00,177.60,0.00,0
+-14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0
+168.00,9.60,0.36,0.00,1.00,177.60,0.00,0
+-9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0
+172.80,4.80,0.38,0.00,1.00,177.60,0.00,0
+-0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0
+-177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0
+4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0
+14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0
+19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0
+-158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0
+28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0
+-148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0
+33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0
+-139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0
+43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0
+-129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0
+57.60,38.40,15.47,0.00,1.00,177.60,0.00,0
+-120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0
+67.20,43.20,15.44,0.00,1.00,177.60,0.00,0
+-105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0
+81.60,43.20,15.42,0.00,1.00,177.60,0.00,0
+-91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0
+96.00,43.20,15.40,0.00,1.00,0.00,0.00,0
+-76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0
+110.40,43.20,15.38,0.00,1.00,0.00,0.00,0
+-67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0
+120.00,38.40,15.36,0.00,1.00,0.00,0.00,0
+-52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0
+129.60,38.40,15.34,0.00,1.00,0.00,0.00,0
+-43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0
+144.00,33.60,15.32,0.00,1.00,0.00,0.00,0
+-33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0
+148.80,24.00,15.30,0.00,1.00,0.00,0.00,0
+-24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0
+158.40,19.20,15.27,0.00,1.00,0.00,0.00,0
+-19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0
+168.00,14.40,15.25,0.00,1.00,0.00,0.00,0
+-9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0
+172.80,4.80,15.23,0.00,1.00,0.00,0.00,0
+-4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0
+0.00,0.00,15.21,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0
+9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0
+14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0
+-163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0
+24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0
+-153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0
+28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0
+-144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0
+38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0
+-134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0
+48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0
+-124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0
+62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0
+-115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0
+72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0
+-100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0
+86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0
+-86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0
+96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0
+-76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0
+110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0
+-62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0
+120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0
+-52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0
+134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0
+-43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0
+144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0
+-33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0
+148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0
+-24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0
+158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0
+-19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0
+168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0
+-9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0
+172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0
+4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0
+14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0
+19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0
+-153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0
+28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0
+-148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0
+38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0
+-139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0
+48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0
+-124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0
+57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0
+-115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0
+72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0
+-105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0
+81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0
+-91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0
+96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0
+-76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0
+105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0
+-67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0
+120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0
+-57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0
+129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0
+-43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0
+139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0
+-33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0
+148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0
+-28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0
+158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0
+-19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0
+163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0
+-9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0
+172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0
+0.00,0.00,1.60,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0
+9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0
+14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0
+-158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0
+24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0
+-153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0
+33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0
+-144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0
+43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0
+-134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0
+52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0
+-124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0
+62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0
+-110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0
+72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0
+-100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0
+86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0
+-86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0
+96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0
+-76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0
+110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0
+-67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0
+120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0
+-52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0
+129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0
+-43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0
+139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0
+-33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0
+148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0
+-24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0
+158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0
+-19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0
+168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0
+172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0
+14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0
+-163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0
+24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0
+-153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0
+28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0
+-144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0
+38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0
+-134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0
+48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0
+-124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0
+62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0
+-115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0
+72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0
+-100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0
+81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0
+-91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0
+96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0
+-81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0
+105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0
+-67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0
+115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0
+-57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0
+129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0
+-48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0
+139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0
+-38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0
+148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0
+-28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0
+153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0
+-19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0
+163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0
+-9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0
+172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0
+0.00,0.00,13.61,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0
+9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0
+-168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0
+24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0
+-148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0
+33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0
+-139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0
+43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0
+-129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0
+52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0
+-120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0
+62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0
+-110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0
+76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0
+-100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0
+86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0
+-86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0
+96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0
+-76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0
+105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0
+-67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0
+120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0
+-57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0
+129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0
+-48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0
+139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0
+-38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0
+148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0
+158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0
+-19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0
+163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0
+172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0
+4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0
+14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0
+-163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0
+24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0
+-153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0
+33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0
+-144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0
+43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0
+-134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0
+52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0
+-124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0
+62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0
+-115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0
+72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0
+-100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0
+81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0
+-91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0
+96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0
+-81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0
+105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0
+-67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0
+115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0
+-57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0
+124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0
+-48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0
+134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0
+-38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0
+144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0
+-28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0
+153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0
+-19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0
+163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0
+-14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0
+172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0
+-4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0
+0.00,0.00,3.20,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0
+9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0
+19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0
+24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0
+-148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0
+33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0
+-139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0
+43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0
+-129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0
+52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0
+-120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0
+67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0
+-110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0
+76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0
+-100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0
+86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0
+-86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0
+96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0
+-76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0
+105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0
+-67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0
+115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0
+-57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0
+129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0
+-48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0
+139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0
+-38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0
+148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0
+153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0
+-19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0
+163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0
+172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0
+4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0
+14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0
+24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0
+-153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0
+33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0
+-144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0
+43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0
+-134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0
+52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0
+-124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0
+62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0
+-110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0
+72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0
+-100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0
+81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0
+-91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0
+96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0
+-81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0
+105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0
+-72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0
+115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0
+-57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0
+124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0
+-48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0
+134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0
+-38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0
+144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0
+-28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0
+153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0
+-24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0
+163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0
+-14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0
+172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,12.01,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0
+9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0
+-158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0
+28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0
+-148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0
+38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0
+-139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0
+48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0
+-129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0
+57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0
+-120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0
+67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0
+-110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0
+76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0
+-100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0
+86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0
+-86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0
+96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0
+-76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0
+105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0
+-67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0
+115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0
+-57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0
+124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0
+-48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0
+134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0
+-38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0
+144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0
+-28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0
+153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0
+-19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0
+163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0
+172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0
+4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0
+14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0
+24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0
+-148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0
+33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0
+-139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0
+43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0
+-129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0
+52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0
+-120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0
+62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0
+-110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0
+72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0
+-100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0
+81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0
+-91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0
+96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0
+-81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0
+105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0
+-72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0
+115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0
+-62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0
+124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0
+-52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0
+134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0
+-43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0
+144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0
+-33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0
+153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0
+-24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0
+163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0
+172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0
+0.00,0.00,4.81,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0
+9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0
+19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0
+28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0
+-148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0
+38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0
+-139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0
+48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0
+-129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0
+57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0
+-120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0
+67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0
+-110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0
+76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0
+-100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0
+86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0
+-86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0
+96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0
+-76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0
+105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0
+-67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0
+115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0
+-57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0
+124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0
+-48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0
+134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0
+-38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0
+144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0
+-28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0
+153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0
+-19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0
+163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0
+-9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0
+172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0
+4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0
+14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0
+24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0
+-148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0
+33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0
+-139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0
+43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0
+-129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0
+52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0
+-120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0
+62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0
+-110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0
+72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0
+-100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0
+81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0
+-91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0
+96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0
+-81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0
+105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0
+-72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0
+115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0
+-62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0
+124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0
+-52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0
+134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0
+-43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0
+144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0
+-33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0
+153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0
+-24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0
+163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0
+172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+0.00,0.00,10.40,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0
+9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0
+19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0
+28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0
+-148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0
+38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0
+-139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0
+48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0
+-129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0
+57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0
+-120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0
+67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0
+-110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0
+76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0
+-100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0
+86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0
+-86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0
+96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0
+-76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0
+105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0
+-67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0
+115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0
+-57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0
+124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0
+-48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0
+134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0
+-38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0
+144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0
+-28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0
+153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0
+163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0
+-9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0
+172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0
+4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0
+14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0
+24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0
+33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0
+-139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0
+43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0
+-129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0
+52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0
+-120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0
+62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0
+-110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0
+72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0
+-100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0
+81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0
+-91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0
+96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0
+-81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0
+105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0
+-72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0
+115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0
+-62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0
+124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0
+-52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0
+134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0
+-43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0
+144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0
+-33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0
+153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0
+-24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0
+163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0
+172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,6.41,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0
+9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0
+19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0
+-158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0
+28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0
+-148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0
+38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0
+-139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0
+48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0
+-129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0
+57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0
+-120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0
+67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0
+-110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0
+76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0
+-100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0
+86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0
+-86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0
+96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0
+-76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0
+105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0
+-67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0
+115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0
+-57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0
+124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0
+-48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0
+134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0
+-38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0
+144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0
+-28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0
+153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0
+163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0
+172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0
+4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0
+14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0
+-158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0
+24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0
+33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0
+-139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0
+43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0
+-129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0
+52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0
+-120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0
+62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0
+-110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0
+72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0
+-100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0
+81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0
+-91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0
+96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0
+-81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0
+105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0
+-72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0
+115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0
+-62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0
+124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0
+-52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0
+134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0
+-43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0
+144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0
+-33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0
+153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0
+-24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0
+163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0
+-14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0
+172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.80,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0
+9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0
+19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0
+-158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0
+28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0
+-148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0
+38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0
+-139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0
+48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0
+-129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0
+57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0
+-120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0
+67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0
+-110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0
+76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0
+-100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0
+86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0
+-86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0
+96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0
+-76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0
+105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0
+-67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0
+115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0
+-57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0
+124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0
+-48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0
+134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0
+-38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0
+144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0
+-28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0
+153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0
+-19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0
+163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0
+172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0
+-0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0
+4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0
+-168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0
+14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0
+-158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0
+24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0
+-148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0
+33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0
+-139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0
+43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0
+-129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0
+52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0
+-120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0
+62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0
+-110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0
+72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0
+-100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0
+81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0
+-91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0
+96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0
+-81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0
+105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0
+-72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0
+115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0
+-62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0
+124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0
+-52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0
+134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0
+-43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0
+144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0
+-33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0
+153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0
+-24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0
+163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0
+-14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0
+172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.01,0.00,1.00,0.00,0.00,0
+-177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0
+-168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0
+19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0
+-158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0
+28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0
+-148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0
+38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0
+-139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0
+48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0
+-129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0
+57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0
+-120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0
+67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0
+-110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0
+76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0
+-100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0
+86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0
+-86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0
+96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0
+-76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0
+105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0
+-67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0
+115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0
+-57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0
+124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0
+-48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0
+134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0
+-38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0
+144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0
+-28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0
+153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0
+-19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0
+163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0
+172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0
+14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0
+-158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0
+24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0
+-148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0
+33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0
+-139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0
+43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0
+-129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0
+52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0
+-120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0
+62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0
+-110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0
+72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0
+-100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0
+81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0
+-91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0
+96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0
+-81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0
+105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0
+-72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0
+115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0
+-62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0
+124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0
+-52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0
+134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0
+-43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0
+144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0
+-33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0
+153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0
+-24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0
+163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0
+-4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0
+0.00,0.00,7.20,0.00,1.00,0.00,0.00,0
+-177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0
+-168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0
+19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0
+38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0
+-139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0
+48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0
+-129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0
+57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0
+-120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0
+67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0
+-110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0
+76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0
+-100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0
+86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0
+-86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0
+96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0
+-76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0
+105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0
+-67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0
+115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0
+-57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0
+124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0
+-48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0
+134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0
+-38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0
+144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0
+-19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0
+163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0
+14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0
+-148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0
+33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0
+-139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0
+43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0
+-129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0
+52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0
+-120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0
+62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0
+72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0
+-100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0
+81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0
+-91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0
+96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0
+-81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0
+105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0
+-72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0
+115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0
+-62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0
+124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0
+-52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0
+134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0
+-43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0
+144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0
+-33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0
+153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0
+0.00,0.00,9.61,0.00,1.00,0.00,0.00,0
+-177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0
+48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0
+-129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0
+57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0
+-120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0
+67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0
+-110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0
+76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0
+-100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0
+86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0
+-86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0
+96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0
+-76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0
+105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0
+-67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0
+115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0
+-57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0
+124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0
+-48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0
+134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0
+163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0
+-9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0
+-148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0
+33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0
+-139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0
+43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0
+-129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0
+52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0
+-120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0
+62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0
+72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0
+-100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0
+81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0
+-91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0
+96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0
+-81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0
+105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0
+-72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0
+115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0
+-62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0
+124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0
+-52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0
+134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0
+-43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0
+144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0
+-33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0
+153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0
+-14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0
+172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0
+0.00,0.00,5.60,0.00,1.00,0.00,0.00,0
+-177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0
+-158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0
+28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0
+-148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0
+48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0
+-129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0
+57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0
+-120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0
+67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0
+-110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0
+76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0
+-100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0
+86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0
+-86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0
+96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0
+-76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0
+105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0
+-67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0
+115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0
+-57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0
+124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0
+-48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0
+134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0
+-28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0
+153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0
+-158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0
+-148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0
+33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0
+-139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0
+43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0
+-129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0
+52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0
+-120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0
+62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0
+-110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0
+72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0
+-100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0
+81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0
+-91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0
+96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0
+-81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0
+105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0
+-72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0
+115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0
+-62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0
+124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0
+-52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0
+134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0
+-43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0
+144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0
+-33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0
+153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0
+0.00,0.00,11.21,0.00,1.00,0.00,0.00,0
+-177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0
+28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0
+-148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0
+38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0
+-139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0
+48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0
+57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0
+-120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0
+67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0
+-110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0
+76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0
+-100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0
+86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0
+-86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0
+96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0
+-76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0
+105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0
+-67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0
+115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0
+-57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0
+124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0
+-48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0
+134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0
+-38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0
+144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0
+-28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0
+153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0
+-148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0
+-139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0
+43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0
+-129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0
+52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0
+-120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0
+62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0
+-110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0
+72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0
+-100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0
+81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0
+-91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0
+96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0
+-81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0
+105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0
+-72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0
+115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0
+-62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0
+124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0
+-52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0
+134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0
+-43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0
+-33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0
+153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0
+-24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0
+163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,3.99,0.00,1.00,0.00,0.00,0
+-177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0
+19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0
+-148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0
+33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0
+43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0
+52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0
+-120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0
+62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0
+-110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0
+76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0
+-100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0
+86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0
+-86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0
+96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0
+-76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0
+105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0
+-67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0
+120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0
+-57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0
+-48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0
+139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0
+148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0
+158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0
+163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0
+43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0
+-134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0
+-124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0
+62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0
+-110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0
+72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0
+-100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0
+81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0
+-91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0
+96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0
+-81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0
+105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0
+-72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0
+115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0
+-57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0
+124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0
+-48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0
+134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0
+-38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0
+-28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0
+-24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,12.82,0.00,1.00,0.00,0.00,0
+-177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0
+-148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0
+33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0
+-129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0
+-120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0
+62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0
+-110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0
+76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0
+-100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0
+86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0
+-86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0
+96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0
+-76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0
+110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0
+-67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0
+120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0
+-57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0
+-48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0
+-163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0
+33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0
+43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0
+-134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0
+62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0
+-115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0
+72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0
+-100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0
+81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0
+-91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0
+96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0
+-81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0
+105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0
+-67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0
+115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0
+-57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0
+124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0
+-48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0
+134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0
+-38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0
+144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0
+-14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,2.39,0.00,1.00,0.00,0.00,0
+-177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0
+33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0
+-144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0
+-134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0
+62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0
+-110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0
+72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0
+-100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0
+86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0
+-86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0
+96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0
+-76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0
+110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0
+-67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0
+120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0
+-52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0
+129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0
+-19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0
+28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0
+-144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0
+38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0
+-134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0
+48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0
+57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0
+-115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0
+72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0
+-105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0
+81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0
+-91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0
+96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0
+-81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0
+105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0
+-67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0
+120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0
+-57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0
+129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0
+-48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0
+139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0
+-38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0
+158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0
+0.00,0.00,14.42,0.00,1.00,0.00,0.00,0
+-177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0
+-163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0
+24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0
+28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0
+-144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0
+38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0
+-134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0
+48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0
+62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0
+-115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0
+72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0
+86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0
+-86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0
+96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0
+-76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0
+110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0
+-62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0
+120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0
+-52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0
+134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0
+158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0
+-148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0
+38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0
+-139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0
+48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0
+-129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0
+-115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0
+67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0
+-105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0
+81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0
+-91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0
+96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0
+105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0
+-67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0
+120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0
+-52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0
+129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0
+139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0
+163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0
+0.00,0.00,0.79,0.00,1.00,0.00,0.00,0
+-177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0
+4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0
+-163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0
+19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0
+-153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0
+28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0
+-148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0
+38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0
+-139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0
+48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0
+-124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0
+57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0
+-115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0
+72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0
+86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0
+-86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0
+100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0
+-76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0
+110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0
+-62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0
+124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0
+-48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0
+134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0
+-38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0
+-28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0
+-24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0
+163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0
+168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0
+9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0
+-158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0
+-148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0
+33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0
+-139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0
+43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0
+-129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0
+-120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0
+67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0
+-105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0
+81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0
+-91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0
+96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0
+110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0
+-67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0
+120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0
+-52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0
+134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0
+144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0
+153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0
+-24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0
+-19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0
+168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA2TC32c_ISM4.csv b/scripts/testv/stvOMASA_4ISM_1MASA2TC32c_ISM4.csv
new file mode 100644
index 0000000000000000000000000000000000000000..8a14c3413ddd2dd47415bf6de3e19631f65f8f6c
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA2TC32c_ISM4.csv
@@ -0,0 +1,1500 @@
+-0.00,0.00,0.00,0.00,1.00,0.00,4.80,0
+-0.00,4.80,0.06,0.00,1.00,4.80,9.60,0
+-0.00,9.60,0.13,0.00,1.00,9.60,14.40,0
+-0.00,14.40,0.19,0.00,1.00,14.40,19.20,0
+-0.00,19.20,0.26,0.00,1.00,19.20,24.00,0
+-0.00,24.00,0.32,0.00,1.00,24.00,28.80,0
+-0.00,28.80,0.39,0.00,1.00,28.80,33.60,0
+-0.00,33.60,0.45,0.00,1.00,33.60,38.40,0
+-0.00,38.40,0.51,0.00,1.00,38.40,43.20,0
+-0.00,43.20,0.58,0.00,1.00,43.20,48.00,0
+-0.00,48.00,0.64,0.00,1.00,48.00,52.80,0
+-0.00,52.80,0.71,0.00,1.00,52.80,57.60,0
+-0.00,57.60,0.77,0.00,1.00,57.60,62.40,0
+-0.00,62.40,0.84,0.00,1.00,62.40,67.20,0
+-0.00,67.20,0.90,0.00,1.00,67.20,72.00,0
+-0.00,72.00,0.96,0.00,1.00,72.00,76.80,0
+-0.00,76.80,1.03,0.00,1.00,76.80,81.60,0
+-0.00,81.60,1.09,0.00,1.00,81.60,86.40,0
+-0.00,86.40,1.16,0.00,1.00,86.40,86.40,0
+-177.60,89.20,1.22,0.00,1.00,91.20,81.60,0
+-177.60,86.40,1.29,0.00,1.00,96.00,76.80,0
+-177.60,81.60,1.35,0.00,1.00,100.80,72.00,0
+-177.60,76.80,1.41,0.00,1.00,105.60,67.20,0
+-177.60,72.00,1.48,0.00,1.00,110.40,62.40,0
+-177.60,67.20,1.54,0.00,1.00,115.20,57.60,0
+177.60,62.40,1.61,0.00,1.00,120.00,52.80,0
+177.60,57.60,1.67,0.00,1.00,124.80,48.00,0
+177.60,52.80,1.73,0.00,1.00,129.60,43.20,0
+177.60,48.00,1.80,0.00,1.00,134.40,38.40,0
+177.60,43.20,1.86,0.00,1.00,139.20,33.60,0
+177.60,38.40,1.93,0.00,1.00,144.00,28.80,0
+177.60,33.60,1.99,0.00,1.00,148.80,24.00,0
+177.60,28.80,2.06,0.00,1.00,153.60,19.20,0
+177.60,24.00,2.12,0.00,1.00,158.40,14.40,0
+177.60,19.20,2.18,0.00,1.00,163.20,9.60,0
+177.60,14.40,2.25,0.00,1.00,168.00,4.80,0
+177.60,9.60,2.31,0.00,1.00,172.80,0.00,0
+177.60,4.80,2.38,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.44,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,2.51,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,2.57,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,2.63,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,2.70,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,2.76,0.00,1.00,-153.60,-28.80,0
+-177.60,-28.80,2.83,0.00,1.00,-148.80,-33.60,0
+-177.60,-33.60,2.89,0.00,1.00,-144.00,-38.40,0
+-177.60,-38.40,2.96,0.00,1.00,-139.20,-43.20,0
+-177.60,-48.00,3.02,0.00,1.00,-134.40,-48.00,0
+-177.60,-48.00,3.08,0.00,1.00,-129.60,-52.80,0
+-177.60,-52.80,3.15,0.00,1.00,-124.80,-57.60,0
+-177.60,-57.60,3.21,0.00,1.00,-120.00,-62.40,0
+177.60,-62.40,3.28,0.00,1.00,-115.20,-67.20,0
+177.60,-67.20,3.34,0.00,1.00,-110.40,-72.00,0
+177.60,-76.80,3.41,0.00,1.00,-105.60,-76.80,0
+177.60,-76.80,3.47,0.00,1.00,-100.80,-81.60,0
+177.60,-86.40,3.53,0.00,1.00,-96.00,-86.40,0
+177.60,-89.20,3.60,0.00,1.00,-91.20,-86.40,0
+0.00,-86.40,3.66,0.00,1.00,-86.40,-81.60,0
+0.00,-81.60,3.73,0.00,1.00,-81.60,-76.80,0
+0.00,-76.80,3.79,0.00,1.00,-76.80,-72.00,0
+0.00,-72.00,3.86,0.00,1.00,-72.00,-67.20,0
+0.00,-67.20,3.92,0.00,1.00,-67.20,-62.40,0
+0.00,-62.40,3.98,0.00,1.00,-62.40,-57.60,0
+0.00,-57.60,4.05,0.00,1.00,-57.60,-52.80,0
+0.00,-52.80,4.11,0.00,1.00,-52.80,-48.00,0
+0.00,-48.00,4.18,0.00,1.00,-48.00,-43.20,0
+0.00,-43.20,4.24,0.00,1.00,-43.20,-38.40,0
+0.00,-38.40,4.31,0.00,1.00,-38.40,-33.60,0
+0.00,-33.60,4.37,0.00,1.00,-33.60,-28.80,0
+0.00,-28.80,4.43,0.00,1.00,-28.80,-24.00,0
+0.00,-24.00,4.50,0.00,1.00,-24.00,-19.20,0
+0.00,-19.20,4.56,0.00,1.00,-19.20,-14.40,0
+0.00,-14.40,4.63,0.00,1.00,-14.40,-9.60,0
+0.00,-9.60,4.69,0.00,1.00,-9.60,-4.80,0
+0.00,-4.80,4.76,0.00,1.00,-4.80,0.00,0
+0.00,0.00,4.82,0.00,1.00,0.00,4.80,0
+0.00,4.80,4.88,0.00,1.00,4.80,9.60,0
+0.00,9.60,4.95,0.00,1.00,9.60,14.40,0
+0.00,14.40,5.01,0.00,1.00,14.40,19.20,0
+0.00,19.20,5.08,0.00,1.00,19.20,24.00,0
+0.00,24.00,5.14,0.00,1.00,24.00,28.80,0
+4.80,28.80,5.20,0.00,1.00,28.80,33.60,0
+4.80,33.60,5.27,0.00,1.00,33.60,38.40,0
+4.80,38.40,5.33,0.00,1.00,38.40,43.20,0
+4.80,43.20,5.40,0.00,1.00,43.20,48.00,0
+4.80,48.00,5.46,0.00,1.00,48.00,52.80,0
+4.80,52.80,5.53,0.00,1.00,52.80,57.60,0
+9.60,57.60,5.59,0.00,1.00,57.60,62.40,0
+9.60,62.40,5.65,0.00,1.00,62.40,67.20,0
+9.60,67.20,5.72,0.00,1.00,67.20,72.00,0
+14.40,72.00,5.78,0.00,1.00,72.00,76.80,0
+19.20,76.80,5.85,0.00,1.00,76.80,81.60,0
+28.80,81.60,5.91,0.00,1.00,81.60,86.40,0
+52.80,86.40,5.98,0.00,1.00,86.40,86.40,0
+105.60,86.40,6.04,0.00,1.00,91.20,81.60,0
+139.20,81.60,6.10,0.00,1.00,96.00,76.80,0
+158.40,76.80,6.17,0.00,1.00,100.80,72.00,0
+163.20,72.00,6.23,0.00,1.00,105.60,67.20,0
+168.00,67.20,6.30,0.00,1.00,110.40,62.40,0
+168.00,62.40,6.36,0.00,1.00,115.20,57.60,0
+172.80,57.60,6.43,0.00,1.00,120.00,52.80,0
+172.80,52.80,6.49,0.00,1.00,124.80,48.00,0
+172.80,48.00,6.55,0.00,1.00,129.60,43.20,0
+172.80,43.20,6.62,0.00,1.00,134.40,38.40,0
+177.60,38.40,6.68,0.00,1.00,139.20,33.60,0
+177.60,33.60,6.75,0.00,1.00,144.00,28.80,0
+177.60,28.80,6.81,0.00,1.00,148.80,24.00,0
+177.60,24.00,6.88,0.00,1.00,153.60,19.20,0
+177.60,19.20,6.94,0.00,1.00,158.40,14.40,0
+177.60,14.40,7.00,0.00,1.00,163.20,9.60,0
+177.60,9.60,7.07,0.00,1.00,168.00,4.80,0
+177.60,4.80,7.13,0.00,1.00,172.80,0.00,0
+177.60,0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,7.26,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,7.33,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,7.39,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,7.45,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,7.52,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,7.58,0.00,1.00,-153.60,-28.80,0
+-177.60,-28.80,7.65,0.00,1.00,-148.80,-33.60,0
+-177.60,-33.60,7.71,0.00,1.00,-144.00,-38.40,0
+-177.60,-38.40,7.78,0.00,1.00,-139.20,-43.20,0
+-172.80,-43.20,7.84,0.00,1.00,-134.40,-48.00,0
+-172.80,-48.00,7.90,0.00,1.00,-129.60,-52.80,0
+-172.80,-52.80,7.97,0.00,1.00,-124.80,-57.60,0
+-172.80,-57.60,8.03,0.00,1.00,-120.00,-62.40,0
+-168.00,-62.40,8.10,0.00,1.00,-115.20,-67.20,0
+-168.00,-67.20,8.16,0.00,1.00,-110.40,-72.00,0
+-163.20,-72.00,8.22,0.00,1.00,-105.60,-76.80,0
+-158.40,-76.80,8.29,0.00,1.00,-100.80,-81.60,0
+-139.20,-81.60,8.35,0.00,1.00,-96.00,-86.40,0
+-105.60,-86.40,8.42,0.00,1.00,-91.20,-86.40,0
+-52.80,-86.40,8.48,0.00,1.00,-86.40,-81.60,0
+-28.80,-81.60,8.55,0.00,1.00,-81.60,-76.80,0
+-19.20,-76.80,8.61,0.00,1.00,-76.80,-72.00,0
+-14.40,-72.00,8.67,0.00,1.00,-72.00,-67.20,0
+-9.60,-67.20,8.74,0.00,1.00,-67.20,-62.40,0
+-9.60,-62.40,8.80,0.00,1.00,-62.40,-57.60,0
+-9.60,-57.60,8.87,0.00,1.00,-57.60,-52.80,0
+-4.80,-52.80,8.93,0.00,1.00,-52.80,-48.00,0
+-4.80,-48.00,9.00,0.00,1.00,-48.00,-43.20,0
+-4.80,-43.20,9.06,0.00,1.00,-43.20,-38.40,0
+-4.80,-38.40,9.12,0.00,1.00,-38.40,-33.60,0
+-4.80,-33.60,9.19,0.00,1.00,-33.60,-28.80,0
+-4.80,-28.80,9.25,0.00,1.00,-28.80,-24.00,0
+-0.00,-24.00,9.32,0.00,1.00,-24.00,-19.20,0
+-0.00,-19.20,9.38,0.00,1.00,-19.20,-14.40,0
+-0.00,-14.40,9.45,0.00,1.00,-14.40,-9.60,0
+-0.00,-9.60,9.51,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,9.57,0.00,1.00,-4.80,0.00,0
+0.00,0.00,9.64,0.00,1.00,0.00,4.80,0
+0.00,4.80,9.70,0.00,1.00,4.80,9.60,0
+0.00,9.60,9.77,0.00,1.00,9.60,14.40,0
+4.80,14.40,9.83,0.00,1.00,14.40,19.20,0
+4.80,19.20,9.90,0.00,1.00,19.20,24.00,0
+4.80,24.00,9.96,0.00,1.00,24.00,28.80,0
+4.80,28.80,10.02,0.00,1.00,28.80,33.60,0
+4.80,33.60,10.09,0.00,1.00,33.60,38.40,0
+9.60,38.40,10.15,0.00,1.00,38.40,43.20,0
+9.60,43.20,10.22,0.00,1.00,43.20,48.00,0
+9.60,48.00,10.28,0.00,1.00,48.00,52.80,0
+14.40,52.80,10.35,0.00,1.00,52.80,57.60,0
+14.40,57.60,10.41,0.00,1.00,57.60,62.40,0
+19.20,62.40,10.47,0.00,1.00,62.40,67.20,0
+24.00,67.20,10.54,0.00,1.00,67.20,72.00,0
+28.80,72.00,10.60,0.00,1.00,72.00,72.00,0
+33.60,72.00,10.67,0.00,1.00,76.80,76.80,0
+48.00,76.80,10.73,0.00,1.00,81.60,81.60,0
+67.20,81.60,10.80,0.00,1.00,86.40,81.60,0
+96.00,81.60,10.86,0.00,1.00,91.20,81.60,0
+120.00,76.80,10.92,0.00,1.00,96.00,76.80,0
+139.20,76.80,10.99,0.00,1.00,100.80,72.00,0
+148.80,72.00,11.05,0.00,1.00,105.60,67.20,0
+153.60,67.20,11.12,0.00,1.00,110.40,62.40,0
+158.40,62.40,11.18,0.00,1.00,115.20,57.60,0
+163.20,57.60,11.24,0.00,1.00,120.00,52.80,0
+168.00,52.80,11.31,0.00,1.00,124.80,48.00,0
+168.00,48.00,11.37,0.00,1.00,129.60,43.20,0
+168.00,43.20,11.44,0.00,1.00,134.40,38.40,0
+172.80,38.40,11.50,0.00,1.00,139.20,33.60,0
+172.80,33.60,11.57,0.00,1.00,144.00,28.80,0
+172.80,28.80,11.63,0.00,1.00,148.80,24.00,0
+177.60,24.00,11.69,0.00,1.00,153.60,19.20,0
+177.60,19.20,11.76,0.00,1.00,158.40,14.40,0
+177.60,14.40,11.82,0.00,1.00,163.20,9.60,0
+177.60,9.60,11.89,0.00,1.00,168.00,4.80,0
+177.60,4.80,11.95,0.00,1.00,172.80,0.00,0
+177.60,0.00,12.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,12.08,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,12.14,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,12.21,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,12.27,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,12.34,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,12.40,0.00,1.00,-153.60,-28.80,0
+-172.80,-28.80,12.47,0.00,1.00,-148.80,-33.60,0
+-172.80,-33.60,12.53,0.00,1.00,-144.00,-38.40,0
+-172.80,-38.40,12.59,0.00,1.00,-139.20,-43.20,0
+-168.00,-43.20,12.66,0.00,1.00,-134.40,-48.00,0
+-168.00,-48.00,12.72,0.00,1.00,-129.60,-52.80,0
+-168.00,-52.80,12.79,0.00,1.00,-124.80,-57.60,0
+-163.20,-57.60,12.85,0.00,1.00,-120.00,-62.40,0
+-158.40,-62.40,12.92,0.00,1.00,-115.20,-67.20,0
+-153.60,-67.20,12.98,0.00,1.00,-110.40,-72.00,0
+-148.80,-72.00,13.04,0.00,1.00,-105.60,-76.80,0
+-139.20,-76.80,13.11,0.00,1.00,-100.80,-81.60,0
+-120.00,-76.80,13.17,0.00,1.00,-96.00,-81.60,0
+-96.00,-81.60,13.24,0.00,1.00,-91.20,-81.60,0
+-67.20,-81.60,13.30,0.00,1.00,-86.40,-76.80,0
+-48.00,-76.80,13.37,0.00,1.00,-81.60,-72.00,0
+-33.60,-72.00,13.43,0.00,1.00,-76.80,-72.00,0
+-28.80,-72.00,13.49,0.00,1.00,-72.00,-67.20,0
+-24.00,-67.20,13.56,0.00,1.00,-67.20,-62.40,0
+-19.20,-62.40,13.62,0.00,1.00,-62.40,-57.60,0
+-14.40,-57.60,13.69,0.00,1.00,-57.60,-52.80,0
+-14.40,-52.80,13.75,0.00,1.00,-52.80,-48.00,0
+-9.60,-48.00,13.82,0.00,1.00,-48.00,-43.20,0
+-9.60,-43.20,13.88,0.00,1.00,-43.20,-38.40,0
+-9.60,-38.40,13.94,0.00,1.00,-38.40,-33.60,0
+-4.80,-33.60,14.01,0.00,1.00,-33.60,-28.80,0
+-4.80,-28.80,14.07,0.00,1.00,-28.80,-24.00,0
+-4.80,-24.00,14.14,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,14.20,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,14.27,0.00,1.00,-14.40,-9.60,0
+-0.00,-9.60,14.33,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,14.39,0.00,1.00,-4.80,0.00,0
+0.00,0.00,14.46,0.00,1.00,0.00,4.80,0
+0.00,4.80,14.52,0.00,1.00,4.80,9.60,0
+4.80,9.60,14.59,0.00,1.00,9.60,14.40,0
+4.80,14.40,14.65,0.00,1.00,14.40,19.20,0
+4.80,19.20,14.71,0.00,1.00,19.20,24.00,0
+4.80,24.00,14.78,0.00,1.00,24.00,28.80,0
+9.60,28.80,14.84,0.00,1.00,28.80,33.60,0
+9.60,33.60,14.91,0.00,1.00,33.60,38.40,0
+9.60,38.40,14.97,0.00,1.00,38.40,43.20,0
+14.40,43.20,15.04,0.00,1.00,43.20,48.00,0
+14.40,48.00,15.10,0.00,1.00,48.00,52.80,0
+19.20,52.80,15.16,0.00,1.00,52.80,57.60,0
+19.20,52.80,15.23,0.00,1.00,57.60,57.60,0
+24.00,57.60,15.29,0.00,1.00,62.40,62.40,0
+28.80,62.40,15.36,0.00,1.00,67.20,67.20,0
+38.40,67.20,15.42,0.00,1.00,72.00,72.00,0
+48.00,72.00,15.49,0.00,1.00,76.80,72.00,0
+57.60,72.00,15.55,0.00,1.00,81.60,76.80,0
+76.80,76.80,15.61,0.00,1.00,86.40,76.80,0
+96.00,76.80,15.68,0.00,1.00,91.20,76.80,0
+115.20,76.80,15.74,0.00,1.00,96.00,72.00,0
+129.60,72.00,15.81,0.00,1.00,100.80,72.00,0
+139.20,67.20,15.87,0.00,1.00,105.60,67.20,0
+144.00,67.20,15.94,0.00,1.00,110.40,62.40,0
+153.60,62.40,16.00,0.00,1.00,115.20,57.60,0
+158.40,57.60,16.00,0.00,1.00,120.00,52.80,0
+158.40,52.80,15.94,0.00,1.00,124.80,48.00,0
+163.20,48.00,15.87,0.00,1.00,129.60,43.20,0
+168.00,43.20,15.81,0.00,1.00,134.40,38.40,0
+168.00,38.40,15.74,0.00,1.00,139.20,33.60,0
+168.00,33.60,15.68,0.00,1.00,144.00,28.80,0
+172.80,28.80,15.61,0.00,1.00,148.80,24.00,0
+172.80,24.00,15.55,0.00,1.00,153.60,19.20,0
+172.80,19.20,15.49,0.00,1.00,158.40,14.40,0
+177.60,14.40,15.42,0.00,1.00,163.20,9.60,0
+177.60,9.60,15.36,0.00,1.00,168.00,4.80,0
+177.60,4.80,15.29,0.00,1.00,172.80,0.00,0
+177.60,0.00,15.23,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,15.16,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,15.10,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,15.04,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,14.97,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,14.91,0.00,1.00,-158.40,-24.00,0
+-172.80,-24.00,14.84,0.00,1.00,-153.60,-28.80,0
+-172.80,-28.80,14.78,0.00,1.00,-148.80,-33.60,0
+-168.00,-33.60,14.71,0.00,1.00,-144.00,-38.40,0
+-168.00,-38.40,14.65,0.00,1.00,-139.20,-43.20,0
+-168.00,-43.20,14.59,0.00,1.00,-134.40,-48.00,0
+-163.20,-48.00,14.52,0.00,1.00,-129.60,-52.80,0
+-158.40,-52.80,14.46,0.00,1.00,-124.80,-57.60,0
+-158.40,-57.60,14.39,0.00,1.00,-120.00,-62.40,0
+-153.60,-62.40,14.33,0.00,1.00,-115.20,-67.20,0
+-144.00,-67.20,14.27,0.00,1.00,-110.40,-72.00,0
+-139.20,-67.20,14.20,0.00,1.00,-105.60,-72.00,0
+-129.60,-72.00,14.14,0.00,1.00,-100.80,-76.80,0
+-115.20,-76.80,14.07,0.00,1.00,-96.00,-76.80,0
+-96.00,-76.80,14.01,0.00,1.00,-91.20,-76.80,0
+-76.80,-76.80,13.94,0.00,1.00,-86.40,-72.00,0
+-57.60,-72.00,13.88,0.00,1.00,-81.60,-72.00,0
+-48.00,-72.00,13.82,0.00,1.00,-76.80,-67.20,0
+-38.40,-67.20,13.75,0.00,1.00,-72.00,-62.40,0
+-28.80,-62.40,13.69,0.00,1.00,-67.20,-57.60,0
+-24.00,-57.60,13.62,0.00,1.00,-62.40,-57.60,0
+-19.20,-52.80,13.56,0.00,1.00,-57.60,-52.80,0
+-19.20,-52.80,13.49,0.00,1.00,-52.80,-48.00,0
+-14.40,-48.00,13.43,0.00,1.00,-48.00,-43.20,0
+-14.40,-43.20,13.37,0.00,1.00,-43.20,-38.40,0
+-9.60,-38.40,13.30,0.00,1.00,-38.40,-33.60,0
+-9.60,-33.60,13.24,0.00,1.00,-33.60,-28.80,0
+-9.60,-28.80,13.17,0.00,1.00,-28.80,-24.00,0
+-4.80,-24.00,13.11,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,13.04,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,12.98,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,12.92,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,12.85,0.00,1.00,-4.80,0.00,0
+0.00,0.00,12.79,0.00,1.00,0.00,4.80,0
+0.00,4.80,12.72,0.00,1.00,4.80,9.60,0
+4.80,9.60,12.66,0.00,1.00,9.60,14.40,0
+4.80,14.40,12.59,0.00,1.00,14.40,19.20,0
+4.80,19.20,12.53,0.00,1.00,19.20,24.00,0
+9.60,24.00,12.47,0.00,1.00,24.00,28.80,0
+9.60,28.80,12.40,0.00,1.00,28.80,33.60,0
+14.40,33.60,12.34,0.00,1.00,33.60,38.40,0
+14.40,33.60,12.27,0.00,1.00,38.40,38.40,0
+19.20,38.40,12.21,0.00,1.00,43.20,43.20,0
+19.20,43.20,12.14,0.00,1.00,48.00,48.00,0
+24.00,48.00,12.08,0.00,1.00,52.80,52.80,0
+28.80,52.80,12.02,0.00,1.00,57.60,57.60,0
+33.60,57.60,11.95,0.00,1.00,62.40,62.40,0
+38.40,62.40,11.89,0.00,1.00,67.20,62.40,0
+43.20,62.40,11.82,0.00,1.00,72.00,67.20,0
+52.80,67.20,11.76,0.00,1.00,76.80,72.00,0
+67.20,67.20,11.69,0.00,1.00,81.60,72.00,0
+76.80,72.00,11.63,0.00,1.00,86.40,72.00,0
+96.00,72.00,11.57,0.00,1.00,91.20,72.00,0
+105.60,72.00,11.50,0.00,1.00,96.00,67.20,0
+120.00,67.20,11.44,0.00,1.00,100.80,67.20,0
+129.60,67.20,11.37,0.00,1.00,105.60,62.40,0
+139.20,62.40,11.31,0.00,1.00,110.40,57.60,0
+144.00,57.60,11.24,0.00,1.00,115.20,57.60,0
+148.80,52.80,11.18,0.00,1.00,120.00,52.80,0
+153.60,52.80,11.12,0.00,1.00,124.80,48.00,0
+158.40,48.00,11.05,0.00,1.00,129.60,43.20,0
+163.20,43.20,10.99,0.00,1.00,134.40,38.40,0
+163.20,38.40,10.92,0.00,1.00,139.20,33.60,0
+168.00,33.60,10.86,0.00,1.00,144.00,28.80,0
+168.00,28.80,10.80,0.00,1.00,148.80,24.00,0
+172.80,24.00,10.73,0.00,1.00,153.60,19.20,0
+172.80,19.20,10.67,0.00,1.00,158.40,14.40,0
+172.80,14.40,10.60,0.00,1.00,163.20,9.60,0
+177.60,9.60,10.54,0.00,1.00,168.00,4.80,0
+177.60,4.80,10.47,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.35,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,10.28,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,10.22,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,10.15,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,10.09,0.00,1.00,-158.40,-24.00,0
+-172.80,-24.00,10.02,0.00,1.00,-153.60,-28.80,0
+-168.00,-28.80,9.96,0.00,1.00,-148.80,-33.60,0
+-168.00,-33.60,9.90,0.00,1.00,-144.00,-38.40,0
+-163.20,-38.40,9.83,0.00,1.00,-139.20,-43.20,0
+-163.20,-43.20,9.77,0.00,1.00,-134.40,-48.00,0
+-158.40,-48.00,9.70,0.00,1.00,-129.60,-52.80,0
+-153.60,-52.80,9.64,0.00,1.00,-124.80,-57.60,0
+-148.80,-52.80,9.57,0.00,1.00,-120.00,-57.60,0
+-144.00,-57.60,9.51,0.00,1.00,-115.20,-62.40,0
+-139.20,-62.40,9.45,0.00,1.00,-110.40,-67.20,0
+-129.60,-67.20,9.38,0.00,1.00,-105.60,-67.20,0
+-120.00,-67.20,9.32,0.00,1.00,-100.80,-72.00,0
+-105.60,-72.00,9.25,0.00,1.00,-96.00,-72.00,0
+-96.00,-72.00,9.19,0.00,1.00,-91.20,-72.00,0
+-76.80,-72.00,9.12,0.00,1.00,-86.40,-72.00,0
+-67.20,-67.20,9.06,0.00,1.00,-81.60,-67.20,0
+-52.80,-67.20,9.00,0.00,1.00,-76.80,-62.40,0
+-43.20,-62.40,8.93,0.00,1.00,-72.00,-62.40,0
+-38.40,-62.40,8.87,0.00,1.00,-67.20,-57.60,0
+-33.60,-57.60,8.80,0.00,1.00,-62.40,-52.80,0
+-28.80,-52.80,8.74,0.00,1.00,-57.60,-48.00,0
+-24.00,-48.00,8.67,0.00,1.00,-52.80,-43.20,0
+-19.20,-43.20,8.61,0.00,1.00,-48.00,-38.40,0
+-19.20,-38.40,8.55,0.00,1.00,-43.20,-38.40,0
+-14.40,-33.60,8.48,0.00,1.00,-38.40,-33.60,0
+-14.40,-33.60,8.42,0.00,1.00,-33.60,-28.80,0
+-9.60,-28.80,8.35,0.00,1.00,-28.80,-24.00,0
+-9.60,-24.00,8.29,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,8.22,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,8.16,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,8.10,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,8.03,0.00,1.00,-4.80,0.00,0
+0.00,0.00,7.97,0.00,1.00,0.00,4.80,0
+0.00,4.80,7.90,0.00,1.00,4.80,9.60,0
+4.80,9.60,7.84,0.00,1.00,9.60,14.40,0
+4.80,14.40,7.78,0.00,1.00,14.40,19.20,0
+9.60,19.20,7.71,0.00,1.00,19.20,24.00,0
+9.60,24.00,7.65,0.00,1.00,24.00,24.00,0
+14.40,24.00,7.58,0.00,1.00,28.80,28.80,0
+14.40,28.80,7.52,0.00,1.00,33.60,33.60,0
+19.20,33.60,7.45,0.00,1.00,33.60,38.40,0
+19.20,38.40,7.39,0.00,1.00,38.40,43.20,0
+24.00,43.20,7.33,0.00,1.00,43.20,48.00,0
+28.80,48.00,7.26,0.00,1.00,48.00,52.80,0
+33.60,52.80,7.20,0.00,1.00,57.60,52.80,0
+38.40,52.80,7.13,0.00,1.00,62.40,57.60,0
+43.20,57.60,7.07,0.00,1.00,67.20,62.40,0
+52.80,62.40,7.00,0.00,1.00,72.00,62.40,0
+62.40,62.40,6.94,0.00,1.00,76.80,67.20,0
+72.00,62.40,6.88,0.00,1.00,81.60,67.20,0
+81.60,67.20,6.81,0.00,1.00,86.40,67.20,0
+91.20,67.20,6.75,0.00,1.00,91.20,67.20,0
+105.60,67.20,6.68,0.00,1.00,96.00,67.20,0
+115.20,62.40,6.62,0.00,1.00,100.80,62.40,0
+124.80,62.40,6.55,0.00,1.00,105.60,57.60,0
+134.40,57.60,6.49,0.00,1.00,110.40,57.60,0
+139.20,57.60,6.43,0.00,1.00,115.20,52.80,0
+144.00,52.80,6.36,0.00,1.00,120.00,48.00,0
+148.80,48.00,6.30,0.00,1.00,129.60,43.20,0
+153.60,43.20,6.23,0.00,1.00,134.40,43.20,0
+158.40,38.40,6.17,0.00,1.00,139.20,38.40,0
+158.40,38.40,6.10,0.00,1.00,144.00,33.60,0
+163.20,33.60,6.04,0.00,1.00,148.80,28.80,0
+168.00,28.80,5.98,0.00,1.00,148.80,24.00,0
+168.00,24.00,5.91,0.00,1.00,153.60,19.20,0
+172.80,19.20,5.85,0.00,1.00,158.40,14.40,0
+172.80,14.40,5.78,0.00,1.00,163.20,9.60,0
+172.80,9.60,5.72,0.00,1.00,168.00,4.80,0
+177.60,4.80,5.65,0.00,1.00,172.80,0.00,0
+177.60,0.00,5.59,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.53,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,5.46,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,5.40,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,5.33,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,5.27,0.00,1.00,-158.40,-24.00,0
+-168.00,-24.00,5.20,0.00,1.00,-153.60,-28.80,0
+-168.00,-28.80,5.14,0.00,1.00,-148.80,-33.60,0
+-163.20,-33.60,5.08,0.00,1.00,-148.80,-38.40,0
+-158.40,-38.40,5.01,0.00,1.00,-144.00,-43.20,0
+-158.40,-38.40,4.95,0.00,1.00,-139.20,-43.20,0
+-153.60,-43.20,4.88,0.00,1.00,-134.40,-48.00,0
+-148.80,-48.00,4.82,0.00,1.00,-129.60,-52.80,0
+-144.00,-52.80,4.76,0.00,1.00,-120.00,-57.60,0
+-139.20,-57.60,4.69,0.00,1.00,-115.20,-57.60,0
+-134.40,-57.60,4.63,0.00,1.00,-110.40,-62.40,0
+-124.80,-62.40,4.56,0.00,1.00,-105.60,-67.20,0
+-115.20,-62.40,4.50,0.00,1.00,-100.80,-67.20,0
+-105.60,-67.20,4.43,0.00,1.00,-96.00,-67.20,0
+-91.20,-67.20,4.37,0.00,1.00,-91.20,-67.20,0
+-81.60,-67.20,4.31,0.00,1.00,-86.40,-67.20,0
+-72.00,-62.40,4.24,0.00,1.00,-81.60,-62.40,0
+-62.40,-62.40,4.18,0.00,1.00,-76.80,-62.40,0
+-52.80,-62.40,4.11,0.00,1.00,-72.00,-57.60,0
+-43.20,-57.60,4.05,0.00,1.00,-67.20,-52.80,0
+-38.40,-52.80,3.98,0.00,1.00,-62.40,-52.80,0
+-33.60,-52.80,3.92,0.00,1.00,-57.60,-48.00,0
+-28.80,-48.00,3.86,0.00,1.00,-48.00,-43.20,0
+-24.00,-43.20,3.79,0.00,1.00,-43.20,-38.40,0
+-19.20,-38.40,3.73,0.00,1.00,-38.40,-33.60,0
+-19.20,-33.60,3.66,0.00,1.00,-33.60,-28.80,0
+-14.40,-28.80,3.60,0.00,1.00,-33.60,-24.00,0
+-14.40,-24.00,3.53,0.00,1.00,-28.80,-24.00,0
+-9.60,-24.00,3.47,0.00,1.00,-24.00,-19.20,0
+-9.60,-19.20,3.41,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,3.34,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,3.28,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,3.21,0.00,1.00,-4.80,0.00,0
+0.00,0.00,3.15,0.00,1.00,0.00,4.80,0
+0.00,4.80,3.08,0.00,1.00,4.80,9.60,0
+4.80,9.60,3.02,0.00,1.00,9.60,14.40,0
+4.80,14.40,2.96,0.00,1.00,14.40,19.20,0
+9.60,14.40,2.89,0.00,1.00,19.20,19.20,0
+14.40,19.20,2.83,0.00,1.00,19.20,24.00,0
+14.40,24.00,2.76,0.00,1.00,24.00,28.80,0
+19.20,28.80,2.70,0.00,1.00,28.80,33.60,0
+19.20,33.60,2.63,0.00,1.00,33.60,38.40,0
+24.00,38.40,2.57,0.00,1.00,38.40,43.20,0
+28.80,38.40,2.51,0.00,1.00,43.20,43.20,0
+33.60,43.20,2.44,0.00,1.00,48.00,48.00,0
+38.40,48.00,2.38,0.00,1.00,52.80,52.80,0
+43.20,52.80,2.31,0.00,1.00,57.60,52.80,0
+48.00,52.80,2.25,0.00,1.00,62.40,57.60,0
+57.60,57.60,2.18,0.00,1.00,72.00,57.60,0
+62.40,57.60,2.12,0.00,1.00,76.80,62.40,0
+72.00,62.40,2.06,0.00,1.00,81.60,62.40,0
+81.60,62.40,1.99,0.00,1.00,86.40,62.40,0
+91.20,62.40,1.93,0.00,1.00,91.20,62.40,0
+100.80,62.40,1.86,0.00,1.00,96.00,62.40,0
+110.40,57.60,1.80,0.00,1.00,100.80,57.60,0
+120.00,57.60,1.73,0.00,1.00,105.60,57.60,0
+129.60,57.60,1.67,0.00,1.00,115.20,52.80,0
+134.40,52.80,1.61,0.00,1.00,120.00,48.00,0
+139.20,48.00,1.54,0.00,1.00,124.80,48.00,0
+144.00,48.00,1.48,0.00,1.00,129.60,43.20,0
+148.80,43.20,1.41,0.00,1.00,134.40,38.40,0
+153.60,38.40,1.35,0.00,1.00,139.20,33.60,0
+158.40,33.60,1.29,0.00,1.00,144.00,33.60,0
+158.40,28.80,1.22,0.00,1.00,148.80,28.80,0
+163.20,28.80,1.16,0.00,1.00,153.60,24.00,0
+168.00,24.00,1.09,0.00,1.00,158.40,19.20,0
+168.00,19.20,1.03,0.00,1.00,163.20,14.40,0
+172.80,14.40,0.96,0.00,1.00,163.20,9.60,0
+172.80,9.60,0.90,0.00,1.00,168.00,4.80,0
+177.60,4.80,0.84,0.00,1.00,172.80,0.00,0
+177.60,0.00,0.77,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,0.71,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,0.64,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,0.58,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,0.51,0.00,1.00,-163.20,-19.20,0
+-168.00,-19.20,0.45,0.00,1.00,-163.20,-24.00,0
+-168.00,-24.00,0.39,0.00,1.00,-158.40,-28.80,0
+-163.20,-28.80,0.32,0.00,1.00,-153.60,-33.60,0
+-158.40,-28.80,0.26,0.00,1.00,-148.80,-33.60,0
+-158.40,-33.60,0.19,0.00,1.00,-144.00,-38.40,0
+-153.60,-38.40,0.13,0.00,1.00,-139.20,-43.20,0
+-148.80,-43.20,0.06,0.00,1.00,-134.40,-48.00,0
+-144.00,-48.00,0.00,0.00,1.00,-129.60,-48.00,0
+-139.20,-48.00,0.00,0.00,1.00,-124.80,-52.80,0
+-134.40,-52.80,0.16,0.00,1.00,-120.00,-57.60,0
+-129.60,-57.60,0.32,0.00,1.00,-115.20,-57.60,0
+-120.00,-57.60,0.48,0.00,1.00,-105.60,-62.40,0
+-110.40,-57.60,0.65,0.00,1.00,-100.80,-62.40,0
+-100.80,-62.40,0.81,0.00,1.00,-96.00,-62.40,0
+-91.20,-62.40,0.97,0.00,1.00,-91.20,-62.40,0
+-81.60,-62.40,1.13,0.00,1.00,-86.40,-62.40,0
+-72.00,-62.40,1.29,0.00,1.00,-81.60,-57.60,0
+-62.40,-57.60,1.45,0.00,1.00,-76.80,-57.60,0
+-57.60,-57.60,1.62,0.00,1.00,-72.00,-52.80,0
+-48.00,-52.80,1.78,0.00,1.00,-62.40,-52.80,0
+-43.20,-52.80,1.94,0.00,1.00,-57.60,-48.00,0
+-38.40,-48.00,2.10,0.00,1.00,-52.80,-43.20,0
+-33.60,-43.20,2.26,0.00,1.00,-48.00,-43.20,0
+-28.80,-38.40,2.42,0.00,1.00,-43.20,-38.40,0
+-24.00,-38.40,2.59,0.00,1.00,-38.40,-33.60,0
+-19.20,-33.60,2.75,0.00,1.00,-33.60,-28.80,0
+-19.20,-28.80,2.91,0.00,1.00,-28.80,-24.00,0
+-14.40,-24.00,3.07,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,3.23,0.00,1.00,-19.20,-19.20,0
+-9.60,-14.40,3.39,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,3.56,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,3.72,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,3.88,0.00,1.00,-4.80,0.00,0
+0.00,0.00,4.04,0.00,1.00,0.00,4.80,0
+4.80,4.80,4.20,0.00,1.00,4.80,9.60,0
+4.80,9.60,4.36,0.00,1.00,9.60,14.40,0
+9.60,9.60,4.53,0.00,1.00,14.40,14.40,0
+9.60,14.40,4.69,0.00,1.00,14.40,19.20,0
+14.40,19.20,4.85,0.00,1.00,19.20,24.00,0
+19.20,24.00,5.01,0.00,1.00,24.00,28.80,0
+19.20,28.80,5.17,0.00,1.00,28.80,33.60,0
+24.00,28.80,5.33,0.00,1.00,33.60,33.60,0
+28.80,33.60,5.49,0.00,1.00,38.40,38.40,0
+33.60,38.40,5.66,0.00,1.00,43.20,43.20,0
+38.40,43.20,5.82,0.00,1.00,48.00,43.20,0
+43.20,43.20,5.98,0.00,1.00,52.80,48.00,0
+48.00,48.00,6.14,0.00,1.00,57.60,52.80,0
+52.80,48.00,6.30,0.00,1.00,62.40,52.80,0
+57.60,52.80,6.46,0.00,1.00,67.20,57.60,0
+67.20,52.80,6.63,0.00,1.00,72.00,57.60,0
+76.80,57.60,6.79,0.00,1.00,81.60,57.60,0
+81.60,57.60,6.95,0.00,1.00,86.40,57.60,0
+91.20,57.60,7.11,0.00,1.00,91.20,57.60,0
+100.80,57.60,7.27,0.00,1.00,96.00,57.60,0
+110.40,52.80,7.43,0.00,1.00,100.80,52.80,0
+115.20,52.80,7.60,0.00,1.00,110.40,52.80,0
+124.80,52.80,7.76,0.00,1.00,115.20,48.00,0
+129.60,48.00,7.92,0.00,1.00,120.00,48.00,0
+134.40,48.00,8.08,0.00,1.00,124.80,43.20,0
+139.20,43.20,8.24,0.00,1.00,129.60,38.40,0
+144.00,38.40,8.40,0.00,1.00,134.40,38.40,0
+148.80,38.40,8.57,0.00,1.00,139.20,33.60,0
+153.60,33.60,8.73,0.00,1.00,144.00,28.80,0
+158.40,28.80,8.89,0.00,1.00,148.80,24.00,0
+163.20,24.00,9.05,0.00,1.00,153.60,24.00,0
+163.20,24.00,9.21,0.00,1.00,158.40,19.20,0
+168.00,19.20,9.37,0.00,1.00,163.20,14.40,0
+172.80,14.40,9.54,0.00,1.00,168.00,9.60,0
+172.80,9.60,9.70,0.00,1.00,168.00,4.80,0
+177.60,4.80,9.86,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.18,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,10.34,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,10.51,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,10.67,0.00,1.00,-168.00,-19.20,0
+-168.00,-19.20,10.83,0.00,1.00,-163.20,-24.00,0
+-163.20,-24.00,10.99,0.00,1.00,-158.40,-24.00,0
+-163.20,-24.00,11.15,0.00,1.00,-153.60,-28.80,0
+-158.40,-28.80,11.31,0.00,1.00,-148.80,-33.60,0
+-153.60,-33.60,11.47,0.00,1.00,-144.00,-38.40,0
+-148.80,-38.40,11.64,0.00,1.00,-139.20,-38.40,0
+-144.00,-38.40,11.80,0.00,1.00,-134.40,-43.20,0
+-139.20,-43.20,11.96,0.00,1.00,-129.60,-48.00,0
+-134.40,-48.00,12.12,0.00,1.00,-124.80,-48.00,0
+-129.60,-48.00,12.28,0.00,1.00,-120.00,-52.80,0
+-124.80,-52.80,12.44,0.00,1.00,-115.20,-52.80,0
+-115.20,-52.80,12.61,0.00,1.00,-110.40,-57.60,0
+-110.40,-52.80,12.77,0.00,1.00,-100.80,-57.60,0
+-100.80,-57.60,12.93,0.00,1.00,-96.00,-57.60,0
+-91.20,-57.60,13.09,0.00,1.00,-91.20,-57.60,0
+-81.60,-57.60,13.25,0.00,1.00,-86.40,-57.60,0
+-76.80,-57.60,13.41,0.00,1.00,-81.60,-57.60,0
+-67.20,-52.80,13.58,0.00,1.00,-72.00,-52.80,0
+-57.60,-52.80,13.74,0.00,1.00,-67.20,-52.80,0
+-52.80,-48.00,13.90,0.00,1.00,-62.40,-48.00,0
+-48.00,-48.00,14.06,0.00,1.00,-57.60,-43.20,0
+-43.20,-43.20,14.22,0.00,1.00,-52.80,-43.20,0
+-38.40,-43.20,14.38,0.00,1.00,-48.00,-38.40,0
+-33.60,-38.40,14.55,0.00,1.00,-43.20,-33.60,0
+-28.80,-33.60,14.71,0.00,1.00,-38.40,-33.60,0
+-24.00,-28.80,14.87,0.00,1.00,-33.60,-28.80,0
+-19.20,-28.80,15.03,0.00,1.00,-28.80,-24.00,0
+-19.20,-24.00,15.19,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,15.35,0.00,1.00,-19.20,-14.40,0
+-9.60,-14.40,15.52,0.00,1.00,-14.40,-14.40,0
+-9.60,-9.60,15.68,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,15.84,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,16.00,0.00,1.00,-4.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,0.00,4.80,0
+4.80,4.80,15.84,0.00,1.00,4.80,9.60,0
+4.80,9.60,15.68,0.00,1.00,9.60,9.60,0
+9.60,9.60,15.52,0.00,1.00,9.60,14.40,0
+14.40,14.40,15.35,0.00,1.00,14.40,19.20,0
+14.40,19.20,15.19,0.00,1.00,19.20,24.00,0
+19.20,24.00,15.03,0.00,1.00,24.00,24.00,0
+24.00,24.00,14.87,0.00,1.00,28.80,28.80,0
+24.00,28.80,14.71,0.00,1.00,33.60,33.60,0
+28.80,33.60,14.55,0.00,1.00,38.40,38.40,0
+33.60,33.60,14.38,0.00,1.00,43.20,38.40,0
+38.40,38.40,14.22,0.00,1.00,48.00,43.20,0
+43.20,43.20,14.06,0.00,1.00,52.80,43.20,0
+48.00,43.20,13.90,0.00,1.00,57.60,48.00,0
+57.60,48.00,13.74,0.00,1.00,62.40,48.00,0
+62.40,48.00,13.58,0.00,1.00,67.20,52.80,0
+67.20,48.00,13.41,0.00,1.00,72.00,52.80,0
+76.80,52.80,13.25,0.00,1.00,81.60,52.80,0
+86.40,52.80,13.09,0.00,1.00,86.40,52.80,0
+91.20,52.80,12.93,0.00,1.00,91.20,52.80,0
+100.80,52.80,12.77,0.00,1.00,96.00,52.80,0
+105.60,48.00,12.61,0.00,1.00,105.60,48.00,0
+115.20,48.00,12.44,0.00,1.00,110.40,48.00,0
+120.00,48.00,12.28,0.00,1.00,115.20,48.00,0
+124.80,43.20,12.12,0.00,1.00,120.00,43.20,0
+134.40,43.20,11.96,0.00,1.00,124.80,43.20,0
+139.20,38.40,11.80,0.00,1.00,129.60,38.40,0
+144.00,38.40,11.64,0.00,1.00,134.40,33.60,0
+148.80,33.60,11.47,0.00,1.00,139.20,33.60,0
+153.60,28.80,11.31,0.00,1.00,144.00,28.80,0
+153.60,28.80,11.15,0.00,1.00,148.80,24.00,0
+158.40,24.00,10.99,0.00,1.00,153.60,19.20,0
+163.20,19.20,10.83,0.00,1.00,158.40,19.20,0
+168.00,14.40,10.67,0.00,1.00,163.20,14.40,0
+168.00,14.40,10.51,0.00,1.00,168.00,9.60,0
+172.80,9.60,10.34,0.00,1.00,172.80,4.80,0
+177.60,4.80,10.18,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,9.86,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,9.70,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,9.54,0.00,1.00,-172.80,-14.40,0
+-168.00,-14.40,9.37,0.00,1.00,-168.00,-19.20,0
+-168.00,-14.40,9.21,0.00,1.00,-163.20,-19.20,0
+-163.20,-19.20,9.05,0.00,1.00,-158.40,-24.00,0
+-158.40,-24.00,8.89,0.00,1.00,-153.60,-28.80,0
+-153.60,-28.80,8.73,0.00,1.00,-148.80,-33.60,0
+-153.60,-28.80,8.57,0.00,1.00,-144.00,-33.60,0
+-148.80,-33.60,8.40,0.00,1.00,-139.20,-38.40,0
+-144.00,-38.40,8.24,0.00,1.00,-134.40,-43.20,0
+-139.20,-38.40,8.08,0.00,1.00,-129.60,-43.20,0
+-134.40,-43.20,7.92,0.00,1.00,-124.80,-48.00,0
+-124.80,-43.20,7.76,0.00,1.00,-120.00,-48.00,0
+-120.00,-48.00,7.60,0.00,1.00,-115.20,-48.00,0
+-115.20,-48.00,7.43,0.00,1.00,-110.40,-52.80,0
+-105.60,-48.00,7.27,0.00,1.00,-105.60,-52.80,0
+-100.80,-52.80,7.11,0.00,1.00,-96.00,-52.80,0
+-91.20,-52.80,6.95,0.00,1.00,-91.20,-52.80,0
+-86.40,-52.80,6.79,0.00,1.00,-86.40,-52.80,0
+-76.80,-52.80,6.63,0.00,1.00,-81.60,-52.80,0
+-67.20,-48.00,6.46,0.00,1.00,-72.00,-48.00,0
+-62.40,-48.00,6.30,0.00,1.00,-67.20,-48.00,0
+-57.60,-48.00,6.14,0.00,1.00,-62.40,-43.20,0
+-48.00,-43.20,5.98,0.00,1.00,-57.60,-43.20,0
+-43.20,-43.20,5.82,0.00,1.00,-52.80,-38.40,0
+-38.40,-38.40,5.66,0.00,1.00,-48.00,-38.40,0
+-33.60,-33.60,5.49,0.00,1.00,-43.20,-33.60,0
+-28.80,-33.60,5.33,0.00,1.00,-38.40,-28.80,0
+-24.00,-28.80,5.17,0.00,1.00,-33.60,-24.00,0
+-24.00,-24.00,5.01,0.00,1.00,-28.80,-24.00,0
+-19.20,-24.00,4.85,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,4.69,0.00,1.00,-19.20,-14.40,0
+-14.40,-14.40,4.53,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,4.36,0.00,1.00,-9.60,-9.60,0
+-4.80,-9.60,4.20,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,4.04,0.00,1.00,-4.80,0.00,0
+0.00,0.00,3.88,0.00,1.00,0.00,4.80,0
+4.80,4.80,3.72,0.00,1.00,4.80,4.80,0
+4.80,4.80,3.56,0.00,1.00,4.80,9.60,0
+9.60,9.60,3.39,0.00,1.00,9.60,14.40,0
+14.40,14.40,3.23,0.00,1.00,14.40,19.20,0
+19.20,19.20,3.07,0.00,1.00,19.20,19.20,0
+19.20,19.20,2.91,0.00,1.00,24.00,24.00,0
+24.00,24.00,2.75,0.00,1.00,24.00,28.80,0
+28.80,28.80,2.59,0.00,1.00,28.80,28.80,0
+33.60,28.80,2.42,0.00,1.00,33.60,33.60,0
+38.40,33.60,2.26,0.00,1.00,38.40,38.40,0
+43.20,33.60,2.10,0.00,1.00,43.20,38.40,0
+48.00,38.40,1.94,0.00,1.00,48.00,43.20,0
+52.80,38.40,1.78,0.00,1.00,52.80,43.20,0
+57.60,43.20,1.62,0.00,1.00,62.40,43.20,0
+62.40,43.20,1.45,0.00,1.00,67.20,48.00,0
+72.00,43.20,1.29,0.00,1.00,72.00,48.00,0
+76.80,48.00,1.13,0.00,1.00,76.80,48.00,0
+86.40,48.00,0.97,0.00,1.00,86.40,48.00,0
+91.20,48.00,0.81,0.00,1.00,91.20,48.00,0
+100.80,48.00,0.65,0.00,1.00,96.00,48.00,0
+105.60,48.00,0.48,0.00,1.00,105.60,48.00,0
+110.40,43.20,0.32,0.00,1.00,110.40,43.20,0
+120.00,43.20,0.16,0.00,1.00,115.20,43.20,0
+124.80,43.20,0.00,0.00,1.00,124.80,38.40,0
+129.60,38.40,0.00,0.00,1.00,129.60,38.40,0
+134.40,38.40,0.04,0.00,1.00,134.40,33.60,0
+139.20,33.60,0.08,0.00,1.00,139.20,33.60,0
+144.00,33.60,0.12,0.00,1.00,144.00,28.80,0
+148.80,28.80,0.16,0.00,1.00,148.80,24.00,0
+153.60,24.00,0.20,0.00,1.00,153.60,24.00,0
+158.40,24.00,0.24,0.00,1.00,158.40,19.20,0
+163.20,19.20,0.28,0.00,1.00,158.40,14.40,0
+163.20,14.40,0.32,0.00,1.00,163.20,14.40,0
+168.00,14.40,0.36,0.00,1.00,168.00,9.60,0
+172.80,9.60,0.40,0.00,1.00,172.80,4.80,0
+172.80,4.80,0.44,0.00,1.00,172.80,0.00,0
+177.60,0.00,0.48,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,0.52,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,0.56,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,0.60,0.00,1.00,-172.80,-14.40,0
+-168.00,-14.40,0.64,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,0.68,0.00,1.00,-163.20,-19.20,0
+-163.20,-19.20,0.72,0.00,1.00,-158.40,-24.00,0
+-158.40,-24.00,0.76,0.00,1.00,-158.40,-24.00,0
+-153.60,-24.00,0.80,0.00,1.00,-153.60,-28.80,0
+-148.80,-28.80,0.84,0.00,1.00,-148.80,-33.60,0
+-144.00,-33.60,0.88,0.00,1.00,-144.00,-33.60,0
+-139.20,-33.60,0.92,0.00,1.00,-139.20,-38.40,0
+-134.40,-38.40,0.96,0.00,1.00,-134.40,-38.40,0
+-129.60,-38.40,1.00,0.00,1.00,-129.60,-43.20,0
+-124.80,-43.20,1.04,0.00,1.00,-124.80,-43.20,0
+-120.00,-43.20,1.08,0.00,1.00,-115.20,-48.00,0
+-110.40,-43.20,1.12,0.00,1.00,-110.40,-48.00,0
+-105.60,-48.00,1.16,0.00,1.00,-105.60,-48.00,0
+-100.80,-48.00,1.20,0.00,1.00,-96.00,-48.00,0
+-91.20,-48.00,1.24,0.00,1.00,-91.20,-48.00,0
+-86.40,-48.00,1.28,0.00,1.00,-86.40,-48.00,0
+-76.80,-48.00,1.32,0.00,1.00,-76.80,-48.00,0
+-72.00,-43.20,1.36,0.00,1.00,-72.00,-43.20,0
+-62.40,-43.20,1.40,0.00,1.00,-67.20,-43.20,0
+-57.60,-43.20,1.44,0.00,1.00,-62.40,-43.20,0
+-52.80,-38.40,1.48,0.00,1.00,-52.80,-38.40,0
+-48.00,-38.40,1.52,0.00,1.00,-48.00,-38.40,0
+-43.20,-33.60,1.56,0.00,1.00,-43.20,-33.60,0
+-38.40,-33.60,1.60,0.00,1.00,-38.40,-28.80,0
+-33.60,-28.80,1.64,0.00,1.00,-33.60,-28.80,0
+-28.80,-28.80,1.68,0.00,1.00,-28.80,-24.00,0
+-24.00,-24.00,1.72,0.00,1.00,-24.00,-19.20,0
+-19.20,-19.20,1.76,0.00,1.00,-24.00,-19.20,0
+-19.20,-19.20,1.80,0.00,1.00,-19.20,-14.40,0
+-14.40,-14.40,1.84,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,1.88,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,1.92,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,1.96,0.00,1.00,-4.80,0.00,0
+0.00,0.00,2.01,0.00,1.00,0.00,4.80,0
+4.80,4.80,2.05,0.00,1.00,4.80,4.80,0
+4.80,4.80,2.09,0.00,1.00,4.80,9.60,0
+9.60,9.60,2.13,0.00,1.00,9.60,14.40,0
+14.40,14.40,2.17,0.00,1.00,14.40,14.40,0
+19.20,14.40,2.21,0.00,1.00,14.40,19.20,0
+24.00,19.20,2.25,0.00,1.00,19.20,24.00,0
+24.00,24.00,2.29,0.00,1.00,24.00,24.00,0
+28.80,24.00,2.33,0.00,1.00,28.80,28.80,0
+33.60,28.80,2.37,0.00,1.00,33.60,28.80,0
+38.40,28.80,2.41,0.00,1.00,38.40,33.60,0
+43.20,33.60,2.45,0.00,1.00,43.20,33.60,0
+48.00,33.60,2.49,0.00,1.00,48.00,38.40,0
+52.80,38.40,2.53,0.00,1.00,52.80,38.40,0
+62.40,38.40,2.57,0.00,1.00,57.60,38.40,0
+67.20,38.40,2.61,0.00,1.00,62.40,43.20,0
+72.00,38.40,2.65,0.00,1.00,72.00,43.20,0
+76.80,43.20,2.69,0.00,1.00,76.80,43.20,0
+86.40,43.20,2.73,0.00,1.00,86.40,43.20,0
+91.20,43.20,2.77,0.00,1.00,91.20,43.20,0
+96.00,43.20,2.81,0.00,1.00,100.80,43.20,0
+105.60,43.20,2.85,0.00,1.00,105.60,43.20,0
+110.40,38.40,2.89,0.00,1.00,110.40,38.40,0
+115.20,38.40,2.93,0.00,1.00,120.00,38.40,0
+120.00,38.40,2.97,0.00,1.00,124.80,38.40,0
+129.60,33.60,3.01,0.00,1.00,129.60,33.60,0
+134.40,33.60,3.05,0.00,1.00,134.40,33.60,0
+139.20,28.80,3.09,0.00,1.00,139.20,28.80,0
+144.00,28.80,3.13,0.00,1.00,144.00,28.80,0
+148.80,24.00,3.17,0.00,1.00,148.80,24.00,0
+153.60,24.00,3.21,0.00,1.00,153.60,19.20,0
+153.60,19.20,3.25,0.00,1.00,158.40,19.20,0
+158.40,19.20,3.29,0.00,1.00,163.20,14.40,0
+163.20,14.40,3.33,0.00,1.00,163.20,9.60,0
+168.00,9.60,3.37,0.00,1.00,168.00,9.60,0
+172.80,9.60,3.41,0.00,1.00,172.80,4.80,0
+172.80,4.80,3.45,0.00,1.00,172.80,0.00,0
+177.60,0.00,3.49,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.53,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,3.57,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,3.61,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,3.65,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,3.69,0.00,1.00,-163.20,-19.20,0
+-158.40,-19.20,3.73,0.00,1.00,-163.20,-19.20,0
+-153.60,-19.20,3.77,0.00,1.00,-158.40,-24.00,0
+-153.60,-24.00,3.81,0.00,1.00,-153.60,-28.80,0
+-148.80,-24.00,3.85,0.00,1.00,-148.80,-28.80,0
+-144.00,-28.80,3.89,0.00,1.00,-144.00,-33.60,0
+-139.20,-28.80,3.93,0.00,1.00,-139.20,-33.60,0
+-134.40,-33.60,3.97,0.00,1.00,-134.40,-38.40,0
+-129.60,-33.60,4.01,0.00,1.00,-129.60,-38.40,0
+-120.00,-38.40,4.05,0.00,1.00,-124.80,-38.40,0
+-115.20,-38.40,4.09,0.00,1.00,-120.00,-43.20,0
+-110.40,-38.40,4.13,0.00,1.00,-110.40,-43.20,0
+-105.60,-43.20,4.17,0.00,1.00,-105.60,-43.20,0
+-96.00,-43.20,4.21,0.00,1.00,-100.80,-43.20,0
+-91.20,-43.20,4.25,0.00,1.00,-91.20,-43.20,0
+-86.40,-43.20,4.29,0.00,1.00,-86.40,-43.20,0
+-76.80,-43.20,4.33,0.00,1.00,-76.80,-43.20,0
+-72.00,-38.40,4.37,0.00,1.00,-72.00,-38.40,0
+-67.20,-38.40,4.41,0.00,1.00,-62.40,-38.40,0
+-62.40,-38.40,4.45,0.00,1.00,-57.60,-38.40,0
+-52.80,-38.40,4.49,0.00,1.00,-52.80,-33.60,0
+-48.00,-33.60,4.53,0.00,1.00,-48.00,-33.60,0
+-43.20,-33.60,4.57,0.00,1.00,-43.20,-28.80,0
+-38.40,-28.80,4.61,0.00,1.00,-38.40,-28.80,0
+-33.60,-28.80,4.65,0.00,1.00,-33.60,-24.00,0
+-28.80,-24.00,4.69,0.00,1.00,-28.80,-24.00,0
+-24.00,-24.00,4.73,0.00,1.00,-24.00,-19.20,0
+-24.00,-19.20,4.77,0.00,1.00,-19.20,-14.40,0
+-19.20,-14.40,4.81,0.00,1.00,-14.40,-14.40,0
+-14.40,-14.40,4.85,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,4.89,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,4.93,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,4.97,0.00,1.00,-4.80,0.00,0
+0.00,0.00,5.01,0.00,1.00,0.00,4.80,0
+4.80,4.80,5.05,0.00,1.00,4.80,4.80,0
+9.60,4.80,5.09,0.00,1.00,4.80,9.60,0
+9.60,9.60,5.13,0.00,1.00,9.60,9.60,0
+14.40,9.60,5.17,0.00,1.00,9.60,14.40,0
+19.20,14.40,5.21,0.00,1.00,14.40,19.20,0
+24.00,19.20,5.25,0.00,1.00,19.20,19.20,0
+28.80,19.20,5.29,0.00,1.00,24.00,24.00,0
+33.60,24.00,5.33,0.00,1.00,24.00,24.00,0
+38.40,24.00,5.37,0.00,1.00,28.80,28.80,0
+43.20,28.80,5.41,0.00,1.00,33.60,28.80,0
+48.00,28.80,5.45,0.00,1.00,38.40,33.60,0
+52.80,28.80,5.49,0.00,1.00,43.20,33.60,0
+57.60,33.60,5.53,0.00,1.00,48.00,33.60,0
+62.40,33.60,5.57,0.00,1.00,52.80,38.40,0
+67.20,33.60,5.61,0.00,1.00,62.40,38.40,0
+72.00,38.40,5.65,0.00,1.00,67.20,38.40,0
+81.60,38.40,5.69,0.00,1.00,76.80,38.40,0
+86.40,38.40,5.73,0.00,1.00,86.40,38.40,0
+91.20,38.40,5.77,0.00,1.00,91.20,38.40,0
+96.00,38.40,5.81,0.00,1.00,100.80,38.40,0
+105.60,38.40,5.85,0.00,1.00,105.60,38.40,0
+110.40,33.60,5.89,0.00,1.00,115.20,33.60,0
+115.20,33.60,5.93,0.00,1.00,120.00,33.60,0
+120.00,33.60,5.97,0.00,1.00,129.60,33.60,0
+124.80,33.60,6.02,0.00,1.00,134.40,28.80,0
+129.60,28.80,6.06,0.00,1.00,139.20,28.80,0
+134.40,28.80,6.10,0.00,1.00,144.00,24.00,0
+139.20,24.00,6.14,0.00,1.00,148.80,24.00,0
+144.00,24.00,6.18,0.00,1.00,153.60,19.20,0
+148.80,19.20,6.22,0.00,1.00,158.40,19.20,0
+153.60,19.20,6.26,0.00,1.00,158.40,14.40,0
+158.40,14.40,6.30,0.00,1.00,163.20,14.40,0
+163.20,14.40,6.34,0.00,1.00,168.00,9.60,0
+168.00,9.60,6.38,0.00,1.00,168.00,9.60,0
+168.00,9.60,6.42,0.00,1.00,172.80,4.80,0
+172.80,4.80,6.46,0.00,1.00,177.60,0.00,0
+177.60,0.00,6.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.54,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,6.58,0.00,1.00,-177.60,-9.60,0
+-168.00,-9.60,6.62,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,6.66,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,6.70,0.00,1.00,-168.00,-14.40,0
+-158.40,-14.40,6.74,0.00,1.00,-163.20,-19.20,0
+-153.60,-19.20,6.78,0.00,1.00,-158.40,-19.20,0
+-148.80,-19.20,6.82,0.00,1.00,-158.40,-24.00,0
+-144.00,-24.00,6.86,0.00,1.00,-153.60,-24.00,0
+-139.20,-24.00,6.90,0.00,1.00,-148.80,-28.80,0
+-134.40,-28.80,6.94,0.00,1.00,-144.00,-28.80,0
+-129.60,-28.80,6.98,0.00,1.00,-139.20,-33.60,0
+-124.80,-33.60,7.02,0.00,1.00,-134.40,-33.60,0
+-120.00,-33.60,7.06,0.00,1.00,-129.60,-33.60,0
+-115.20,-33.60,7.10,0.00,1.00,-120.00,-38.40,0
+-110.40,-33.60,7.14,0.00,1.00,-115.20,-38.40,0
+-105.60,-38.40,7.18,0.00,1.00,-105.60,-38.40,0
+-96.00,-38.40,7.22,0.00,1.00,-100.80,-38.40,0
+-91.20,-38.40,7.26,0.00,1.00,-91.20,-38.40,0
+-86.40,-38.40,7.30,0.00,1.00,-86.40,-38.40,0
+-81.60,-38.40,7.34,0.00,1.00,-76.80,-38.40,0
+-72.00,-38.40,7.38,0.00,1.00,-67.20,-38.40,0
+-67.20,-33.60,7.42,0.00,1.00,-62.40,-33.60,0
+-62.40,-33.60,7.46,0.00,1.00,-52.80,-33.60,0
+-57.60,-33.60,7.50,0.00,1.00,-48.00,-33.60,0
+-52.80,-28.80,7.54,0.00,1.00,-43.20,-28.80,0
+-48.00,-28.80,7.58,0.00,1.00,-38.40,-28.80,0
+-43.20,-28.80,7.62,0.00,1.00,-33.60,-24.00,0
+-38.40,-24.00,7.66,0.00,1.00,-28.80,-24.00,0
+-33.60,-24.00,7.70,0.00,1.00,-24.00,-19.20,0
+-28.80,-19.20,7.74,0.00,1.00,-24.00,-19.20,0
+-24.00,-19.20,7.78,0.00,1.00,-19.20,-14.40,0
+-19.20,-14.40,7.82,0.00,1.00,-14.40,-9.60,0
+-14.40,-9.60,7.86,0.00,1.00,-9.60,-9.60,0
+-9.60,-9.60,7.90,0.00,1.00,-9.60,-4.80,0
+-9.60,-4.80,7.94,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,7.98,0.00,1.00,-4.80,0.00,0
+0.00,0.00,8.02,0.00,1.00,0.00,4.80,0
+4.80,4.80,8.06,0.00,1.00,4.80,4.80,0
+9.60,4.80,8.10,0.00,1.00,4.80,9.60,0
+14.40,9.60,8.14,0.00,1.00,9.60,9.60,0
+14.40,9.60,8.18,0.00,1.00,9.60,14.40,0
+19.20,14.40,8.22,0.00,1.00,14.40,14.40,0
+24.00,14.40,8.26,0.00,1.00,14.40,19.20,0
+28.80,19.20,8.30,0.00,1.00,19.20,19.20,0
+33.60,19.20,8.34,0.00,1.00,24.00,24.00,0
+38.40,19.20,8.38,0.00,1.00,28.80,24.00,0
+43.20,24.00,8.42,0.00,1.00,28.80,24.00,0
+48.00,24.00,8.46,0.00,1.00,33.60,28.80,0
+52.80,28.80,8.50,0.00,1.00,38.40,28.80,0
+57.60,28.80,8.54,0.00,1.00,48.00,28.80,0
+62.40,28.80,8.58,0.00,1.00,52.80,33.60,0
+67.20,28.80,8.62,0.00,1.00,57.60,33.60,0
+76.80,33.60,8.66,0.00,1.00,67.20,33.60,0
+81.60,33.60,8.70,0.00,1.00,76.80,33.60,0
+86.40,33.60,8.74,0.00,1.00,81.60,33.60,0
+91.20,33.60,8.78,0.00,1.00,91.20,33.60,0
+96.00,33.60,8.82,0.00,1.00,100.80,33.60,0
+100.80,33.60,8.86,0.00,1.00,110.40,33.60,0
+110.40,28.80,8.90,0.00,1.00,115.20,33.60,0
+115.20,28.80,8.94,0.00,1.00,124.80,28.80,0
+120.00,28.80,8.98,0.00,1.00,129.60,28.80,0
+124.80,28.80,9.02,0.00,1.00,139.20,28.80,0
+129.60,24.00,9.06,0.00,1.00,144.00,24.00,0
+134.40,24.00,9.10,0.00,1.00,148.80,24.00,0
+139.20,24.00,9.14,0.00,1.00,153.60,19.20,0
+144.00,19.20,9.18,0.00,1.00,153.60,19.20,0
+148.80,19.20,9.22,0.00,1.00,158.40,14.40,0
+153.60,14.40,9.26,0.00,1.00,163.20,14.40,0
+158.40,14.40,9.30,0.00,1.00,163.20,9.60,0
+163.20,9.60,9.34,0.00,1.00,168.00,9.60,0
+168.00,9.60,9.38,0.00,1.00,172.80,4.80,0
+168.00,4.80,9.42,0.00,1.00,172.80,4.80,0
+172.80,4.80,9.46,0.00,1.00,177.60,0.00,0
+177.60,0.00,9.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,9.54,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,9.58,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,9.62,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,9.66,0.00,1.00,-172.80,-9.60,0
+-163.20,-9.60,9.70,0.00,1.00,-168.00,-14.40,0
+-158.40,-14.40,9.74,0.00,1.00,-163.20,-14.40,0
+-153.60,-14.40,9.78,0.00,1.00,-163.20,-19.20,0
+-148.80,-19.20,9.82,0.00,1.00,-158.40,-19.20,0
+-144.00,-19.20,9.86,0.00,1.00,-153.60,-24.00,0
+-139.20,-24.00,9.90,0.00,1.00,-153.60,-24.00,0
+-134.40,-24.00,9.94,0.00,1.00,-148.80,-28.80,0
+-129.60,-24.00,9.98,0.00,1.00,-144.00,-28.80,0
+-124.80,-28.80,10.03,0.00,1.00,-139.20,-28.80,0
+-120.00,-28.80,10.07,0.00,1.00,-129.60,-33.60,0
+-115.20,-28.80,10.11,0.00,1.00,-124.80,-33.60,0
+-110.40,-28.80,10.15,0.00,1.00,-115.20,-33.60,0
+-100.80,-33.60,10.19,0.00,1.00,-110.40,-33.60,0
+-96.00,-33.60,10.23,0.00,1.00,-100.80,-33.60,0
+-91.20,-33.60,10.27,0.00,1.00,-91.20,-33.60,0
+-86.40,-33.60,10.31,0.00,1.00,-81.60,-33.60,0
+-81.60,-33.60,10.35,0.00,1.00,-76.80,-33.60,0
+-76.80,-33.60,10.39,0.00,1.00,-67.20,-33.60,0
+-67.20,-28.80,10.43,0.00,1.00,-57.60,-28.80,0
+-62.40,-28.80,10.47,0.00,1.00,-52.80,-28.80,0
+-57.60,-28.80,10.51,0.00,1.00,-48.00,-28.80,0
+-52.80,-28.80,10.55,0.00,1.00,-38.40,-24.00,0
+-48.00,-24.00,10.59,0.00,1.00,-33.60,-24.00,0
+-43.20,-24.00,10.63,0.00,1.00,-28.80,-24.00,0
+-38.40,-19.20,10.67,0.00,1.00,-28.80,-19.20,0
+-33.60,-19.20,10.71,0.00,1.00,-24.00,-19.20,0
+-28.80,-19.20,10.75,0.00,1.00,-19.20,-14.40,0
+-24.00,-14.40,10.79,0.00,1.00,-14.40,-14.40,0
+-19.20,-14.40,10.83,0.00,1.00,-14.40,-9.60,0
+-14.40,-9.60,10.87,0.00,1.00,-9.60,-9.60,0
+-14.40,-9.60,10.91,0.00,1.00,-9.60,-4.80,0
+-9.60,-4.80,10.95,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,10.99,0.00,1.00,-4.80,0.00,0
+0.00,0.00,11.03,0.00,1.00,0.00,0.00,0
+4.80,0.00,11.07,0.00,1.00,0.00,4.80,0
+9.60,4.80,11.11,0.00,1.00,4.80,4.80,0
+14.40,4.80,11.15,0.00,1.00,4.80,9.60,0
+19.20,9.60,11.19,0.00,1.00,9.60,9.60,0
+19.20,9.60,11.23,0.00,1.00,9.60,14.40,0
+24.00,14.40,11.27,0.00,1.00,14.40,14.40,0
+28.80,14.40,11.31,0.00,1.00,19.20,19.20,0
+33.60,14.40,11.35,0.00,1.00,19.20,19.20,0
+38.40,19.20,11.39,0.00,1.00,24.00,19.20,0
+43.20,19.20,11.43,0.00,1.00,28.80,24.00,0
+48.00,24.00,11.47,0.00,1.00,33.60,24.00,0
+52.80,24.00,11.51,0.00,1.00,38.40,24.00,0
+57.60,24.00,11.55,0.00,1.00,43.20,24.00,0
+62.40,24.00,11.59,0.00,1.00,48.00,28.80,0
+72.00,24.00,11.63,0.00,1.00,52.80,28.80,0
+76.80,28.80,11.67,0.00,1.00,62.40,28.80,0
+81.60,28.80,11.71,0.00,1.00,72.00,28.80,0
+86.40,28.80,11.75,0.00,1.00,81.60,28.80,0
+91.20,28.80,11.79,0.00,1.00,91.20,28.80,0
+96.00,28.80,11.83,0.00,1.00,100.80,28.80,0
+100.80,28.80,11.87,0.00,1.00,110.40,28.80,0
+105.60,28.80,11.91,0.00,1.00,120.00,28.80,0
+110.40,24.00,11.95,0.00,1.00,129.60,24.00,0
+120.00,24.00,11.99,0.00,1.00,134.40,24.00,0
+124.80,24.00,12.03,0.00,1.00,139.20,24.00,0
+129.60,24.00,12.07,0.00,1.00,144.00,24.00,0
+134.40,19.20,12.11,0.00,1.00,148.80,19.20,0
+139.20,19.20,12.15,0.00,1.00,153.60,19.20,0
+144.00,19.20,12.19,0.00,1.00,158.40,14.40,0
+148.80,14.40,12.23,0.00,1.00,163.20,14.40,0
+153.60,14.40,12.27,0.00,1.00,163.20,14.40,0
+158.40,9.60,12.31,0.00,1.00,168.00,9.60,0
+158.40,9.60,12.35,0.00,1.00,168.00,9.60,0
+163.20,9.60,12.39,0.00,1.00,172.80,4.80,0
+168.00,4.80,12.43,0.00,1.00,172.80,4.80,0
+172.80,4.80,12.47,0.00,1.00,177.60,0.00,0
+177.60,0.00,12.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,12.55,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,12.59,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,12.63,0.00,1.00,-172.80,-9.60,0
+-163.20,-9.60,12.67,0.00,1.00,-172.80,-9.60,0
+-158.40,-9.60,12.71,0.00,1.00,-168.00,-14.40,0
+-158.40,-9.60,12.75,0.00,1.00,-168.00,-14.40,0
+-153.60,-14.40,12.79,0.00,1.00,-163.20,-14.40,0
+-148.80,-14.40,12.83,0.00,1.00,-163.20,-19.20,0
+-144.00,-19.20,12.87,0.00,1.00,-158.40,-19.20,0
+-139.20,-19.20,12.91,0.00,1.00,-153.60,-24.00,0
+-134.40,-19.20,12.95,0.00,1.00,-148.80,-24.00,0
+-129.60,-24.00,12.99,0.00,1.00,-144.00,-24.00,0
+-124.80,-24.00,13.03,0.00,1.00,-139.20,-24.00,0
+-120.00,-24.00,13.07,0.00,1.00,-134.40,-28.80,0
+-110.40,-24.00,13.11,0.00,1.00,-129.60,-28.80,0
+-105.60,-28.80,13.15,0.00,1.00,-120.00,-28.80,0
+-100.80,-28.80,13.19,0.00,1.00,-110.40,-28.80,0
+-96.00,-28.80,13.23,0.00,1.00,-100.80,-28.80,0
+-91.20,-28.80,13.27,0.00,1.00,-91.20,-28.80,0
+-86.40,-28.80,13.31,0.00,1.00,-81.60,-28.80,0
+-81.60,-28.80,13.35,0.00,1.00,-72.00,-28.80,0
+-76.80,-28.80,13.39,0.00,1.00,-62.40,-28.80,0
+-72.00,-24.00,13.43,0.00,1.00,-52.80,-24.00,0
+-62.40,-24.00,13.47,0.00,1.00,-48.00,-24.00,0
+-57.60,-24.00,13.51,0.00,1.00,-43.20,-24.00,0
+-52.80,-24.00,13.55,0.00,1.00,-38.40,-24.00,0
+-48.00,-24.00,13.59,0.00,1.00,-33.60,-19.20,0
+-43.20,-19.20,13.63,0.00,1.00,-28.80,-19.20,0
+-38.40,-19.20,13.67,0.00,1.00,-24.00,-19.20,0
+-33.60,-14.40,13.71,0.00,1.00,-19.20,-14.40,0
+-28.80,-14.40,13.75,0.00,1.00,-19.20,-14.40,0
+-24.00,-14.40,13.79,0.00,1.00,-14.40,-9.60,0
+-19.20,-9.60,13.83,0.00,1.00,-9.60,-9.60,0
+-19.20,-9.60,13.87,0.00,1.00,-9.60,-4.80,0
+-14.40,-4.80,13.91,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,13.95,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,13.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,14.04,0.00,1.00,0.00,0.00,0
+4.80,0.00,14.08,0.00,1.00,0.00,4.80,0
+9.60,4.80,14.12,0.00,1.00,4.80,4.80,0
+14.40,4.80,14.16,0.00,1.00,4.80,9.60,0
+19.20,9.60,14.20,0.00,1.00,9.60,9.60,0
+24.00,9.60,14.24,0.00,1.00,9.60,9.60,0
+28.80,9.60,14.28,0.00,1.00,14.40,14.40,0
+33.60,14.40,14.32,0.00,1.00,14.40,14.40,0
+38.40,14.40,14.36,0.00,1.00,19.20,14.40,0
+43.20,14.40,14.40,0.00,1.00,19.20,19.20,0
+48.00,14.40,14.44,0.00,1.00,24.00,19.20,0
+52.80,19.20,14.48,0.00,1.00,28.80,19.20,0
+57.60,19.20,14.52,0.00,1.00,33.60,19.20,0
+62.40,19.20,14.56,0.00,1.00,38.40,24.00,0
+67.20,19.20,14.60,0.00,1.00,43.20,24.00,0
+72.00,24.00,14.64,0.00,1.00,48.00,24.00,0
+76.80,24.00,14.68,0.00,1.00,57.60,24.00,0
+81.60,24.00,14.72,0.00,1.00,67.20,24.00,0
+86.40,24.00,14.76,0.00,1.00,81.60,24.00,0
+91.20,24.00,14.80,0.00,1.00,91.20,24.00,0
+96.00,24.00,14.84,0.00,1.00,105.60,24.00,0
+100.80,24.00,14.88,0.00,1.00,115.20,24.00,0
+105.60,24.00,14.92,0.00,1.00,124.80,24.00,0
+110.40,19.20,14.96,0.00,1.00,134.40,19.20,0
+115.20,19.20,15.00,0.00,1.00,139.20,19.20,0
+120.00,19.20,15.04,0.00,1.00,144.00,19.20,0
+124.80,19.20,15.08,0.00,1.00,148.80,19.20,0
+129.60,19.20,15.12,0.00,1.00,153.60,19.20,0
+134.40,14.40,15.16,0.00,1.00,158.40,14.40,0
+139.20,14.40,15.20,0.00,1.00,163.20,14.40,0
+144.00,14.40,15.24,0.00,1.00,163.20,14.40,0
+148.80,9.60,15.28,0.00,1.00,168.00,9.60,0
+153.60,9.60,15.32,0.00,1.00,168.00,9.60,0
+158.40,9.60,15.36,0.00,1.00,172.80,4.80,0
+163.20,4.80,15.40,0.00,1.00,172.80,4.80,0
+168.00,4.80,15.44,0.00,1.00,177.60,4.80,0
+172.80,4.80,15.48,0.00,1.00,177.60,0.00,0
+177.60,0.00,15.52,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,15.56,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,15.60,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,15.64,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,15.68,0.00,1.00,-172.80,-9.60,0
+-158.40,-9.60,15.72,0.00,1.00,-172.80,-9.60,0
+-153.60,-9.60,15.76,0.00,1.00,-168.00,-14.40,0
+-148.80,-9.60,15.80,0.00,1.00,-168.00,-14.40,0
+-144.00,-14.40,15.84,0.00,1.00,-163.20,-14.40,0
+-139.20,-14.40,15.88,0.00,1.00,-163.20,-19.20,0
+-134.40,-14.40,15.92,0.00,1.00,-158.40,-19.20,0
+-129.60,-19.20,15.96,0.00,1.00,-153.60,-19.20,0
+-124.80,-19.20,16.00,0.00,1.00,-148.80,-19.20,0
+-120.00,-19.20,16.00,0.00,1.00,-144.00,-19.20,0
+-115.20,-19.20,15.96,0.00,1.00,-139.20,-24.00,0
+-110.40,-19.20,15.92,0.00,1.00,-134.40,-24.00,0
+-105.60,-24.00,15.88,0.00,1.00,-124.80,-24.00,0
+-100.80,-24.00,15.84,0.00,1.00,-115.20,-24.00,0
+-96.00,-24.00,15.80,0.00,1.00,-105.60,-24.00,0
+-91.20,-24.00,15.76,0.00,1.00,-91.20,-24.00,0
+-86.40,-24.00,15.72,0.00,1.00,-81.60,-24.00,0
+-81.60,-24.00,15.68,0.00,1.00,-67.20,-24.00,0
+-76.80,-24.00,15.64,0.00,1.00,-57.60,-24.00,0
+-72.00,-24.00,15.60,0.00,1.00,-48.00,-24.00,0
+-67.20,-19.20,15.56,0.00,1.00,-43.20,-19.20,0
+-62.40,-19.20,15.52,0.00,1.00,-38.40,-19.20,0
+-57.60,-19.20,15.48,0.00,1.00,-33.60,-19.20,0
+-52.80,-19.20,15.44,0.00,1.00,-28.80,-19.20,0
+-48.00,-14.40,15.40,0.00,1.00,-24.00,-14.40,0
+-43.20,-14.40,15.36,0.00,1.00,-19.20,-14.40,0
+-38.40,-14.40,15.32,0.00,1.00,-19.20,-14.40,0
+-33.60,-14.40,15.28,0.00,1.00,-14.40,-9.60,0
+-28.80,-9.60,15.24,0.00,1.00,-14.40,-9.60,0
+-24.00,-9.60,15.20,0.00,1.00,-9.60,-9.60,0
+-19.20,-9.60,15.16,0.00,1.00,-9.60,-4.80,0
+-14.40,-4.80,15.12,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,15.08,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,15.04,0.00,1.00,-0.00,0.00,0
+0.00,0.00,15.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,14.96,0.00,1.00,0.00,4.80,0
+9.60,4.80,14.92,0.00,1.00,4.80,4.80,0
+14.40,4.80,14.88,0.00,1.00,4.80,4.80,0
+19.20,4.80,14.84,0.00,1.00,4.80,9.60,0
+24.00,9.60,14.80,0.00,1.00,9.60,9.60,0
+28.80,9.60,14.76,0.00,1.00,9.60,9.60,0
+33.60,9.60,14.72,0.00,1.00,9.60,9.60,0
+38.40,9.60,14.68,0.00,1.00,14.40,14.40,0
+43.20,14.40,14.64,0.00,1.00,14.40,14.40,0
+48.00,14.40,14.60,0.00,1.00,19.20,14.40,0
+52.80,14.40,14.56,0.00,1.00,24.00,14.40,0
+57.60,14.40,14.52,0.00,1.00,24.00,19.20,0
+62.40,14.40,14.48,0.00,1.00,28.80,19.20,0
+67.20,14.40,14.44,0.00,1.00,38.40,19.20,0
+72.00,19.20,14.40,0.00,1.00,43.20,19.20,0
+76.80,19.20,14.36,0.00,1.00,52.80,19.20,0
+81.60,19.20,14.32,0.00,1.00,62.40,19.20,0
+86.40,19.20,14.28,0.00,1.00,76.80,19.20,0
+91.20,19.20,14.24,0.00,1.00,96.00,19.20,0
+96.00,19.20,14.20,0.00,1.00,110.40,19.20,0
+100.80,19.20,14.16,0.00,1.00,120.00,19.20,0
+105.60,19.20,14.12,0.00,1.00,134.40,19.20,0
+110.40,19.20,14.08,0.00,1.00,139.20,19.20,0
+115.20,14.40,14.04,0.00,1.00,148.80,14.40,0
+120.00,14.40,13.99,0.00,1.00,153.60,14.40,0
+124.80,14.40,13.95,0.00,1.00,158.40,14.40,0
+129.60,14.40,13.91,0.00,1.00,158.40,14.40,0
+134.40,14.40,13.87,0.00,1.00,163.20,14.40,0
+139.20,9.60,13.83,0.00,1.00,163.20,9.60,0
+144.00,9.60,13.79,0.00,1.00,168.00,9.60,0
+148.80,9.60,13.75,0.00,1.00,168.00,9.60,0
+153.60,9.60,13.71,0.00,1.00,172.80,4.80,0
+158.40,4.80,13.67,0.00,1.00,172.80,4.80,0
+163.20,4.80,13.63,0.00,1.00,172.80,4.80,0
+168.00,4.80,13.59,0.00,1.00,177.60,0.00,0
+172.80,0.00,13.55,0.00,1.00,177.60,0.00,0
+177.60,0.00,13.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.47,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,13.43,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,13.39,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,13.35,0.00,1.00,-172.80,-4.80,0
+-158.40,-4.80,13.31,0.00,1.00,-172.80,-9.60,0
+-153.60,-9.60,13.27,0.00,1.00,-172.80,-9.60,0
+-148.80,-9.60,13.23,0.00,1.00,-168.00,-9.60,0
+-144.00,-9.60,13.19,0.00,1.00,-168.00,-14.40,0
+-139.20,-9.60,13.15,0.00,1.00,-163.20,-14.40,0
+-134.40,-14.40,13.11,0.00,1.00,-163.20,-14.40,0
+-129.60,-14.40,13.07,0.00,1.00,-158.40,-14.40,0
+-124.80,-14.40,13.03,0.00,1.00,-158.40,-14.40,0
+-120.00,-14.40,12.99,0.00,1.00,-153.60,-19.20,0
+-115.20,-14.40,12.95,0.00,1.00,-148.80,-19.20,0
+-110.40,-19.20,12.91,0.00,1.00,-139.20,-19.20,0
+-105.60,-19.20,12.87,0.00,1.00,-134.40,-19.20,0
+-100.80,-19.20,12.83,0.00,1.00,-120.00,-19.20,0
+-96.00,-19.20,12.79,0.00,1.00,-110.40,-19.20,0
+-91.20,-19.20,12.75,0.00,1.00,-96.00,-19.20,0
+-86.40,-19.20,12.71,0.00,1.00,-76.80,-19.20,0
+-81.60,-19.20,12.67,0.00,1.00,-62.40,-19.20,0
+-76.80,-19.20,12.63,0.00,1.00,-52.80,-19.20,0
+-72.00,-19.20,12.59,0.00,1.00,-43.20,-19.20,0
+-67.20,-14.40,12.55,0.00,1.00,-38.40,-19.20,0
+-62.40,-14.40,12.51,0.00,1.00,-28.80,-14.40,0
+-57.60,-14.40,12.47,0.00,1.00,-24.00,-14.40,0
+-52.80,-14.40,12.43,0.00,1.00,-24.00,-14.40,0
+-48.00,-14.40,12.39,0.00,1.00,-19.20,-14.40,0
+-43.20,-14.40,12.35,0.00,1.00,-14.40,-9.60,0
+-38.40,-9.60,12.31,0.00,1.00,-14.40,-9.60,0
+-33.60,-9.60,12.27,0.00,1.00,-9.60,-9.60,0
+-28.80,-9.60,12.23,0.00,1.00,-9.60,-9.60,0
+-24.00,-9.60,12.19,0.00,1.00,-9.60,-4.80,0
+-19.20,-4.80,12.15,0.00,1.00,-4.80,-4.80,0
+-14.40,-4.80,12.11,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,12.07,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,12.03,0.00,1.00,-0.00,0.00,0
+0.00,0.00,11.99,0.00,1.00,0.00,0.00,0
+4.80,0.00,11.95,0.00,1.00,0.00,0.00,0
+9.60,0.00,11.91,0.00,1.00,0.00,4.80,0
+14.40,4.80,11.87,0.00,1.00,4.80,4.80,0
+19.20,4.80,11.83,0.00,1.00,4.80,4.80,0
+24.00,4.80,11.79,0.00,1.00,4.80,4.80,0
+28.80,4.80,11.75,0.00,1.00,4.80,9.60,0
+33.60,9.60,11.71,0.00,1.00,9.60,9.60,0
+38.40,9.60,11.67,0.00,1.00,9.60,9.60,0
+43.20,9.60,11.63,0.00,1.00,14.40,9.60,0
+48.00,9.60,11.59,0.00,1.00,14.40,9.60,0
+52.80,9.60,11.55,0.00,1.00,14.40,14.40,0
+57.60,9.60,11.51,0.00,1.00,19.20,14.40,0
+62.40,9.60,11.47,0.00,1.00,24.00,14.40,0
+67.20,14.40,11.43,0.00,1.00,28.80,14.40,0
+72.00,14.40,11.39,0.00,1.00,33.60,14.40,0
+76.80,14.40,11.35,0.00,1.00,43.20,14.40,0
+81.60,14.40,11.31,0.00,1.00,57.60,14.40,0
+86.40,14.40,11.27,0.00,1.00,76.80,14.40,0
+91.20,14.40,11.23,0.00,1.00,96.00,14.40,0
+96.00,14.40,11.19,0.00,1.00,115.20,14.40,0
+100.80,14.40,11.15,0.00,1.00,129.60,14.40,0
+105.60,14.40,11.11,0.00,1.00,139.20,14.40,0
+110.40,14.40,11.07,0.00,1.00,148.80,14.40,0
+115.20,9.60,11.03,0.00,1.00,153.60,14.40,0
+120.00,9.60,10.99,0.00,1.00,158.40,9.60,0
+124.80,9.60,10.95,0.00,1.00,163.20,9.60,0
+129.60,9.60,10.91,0.00,1.00,163.20,9.60,0
+134.40,9.60,10.87,0.00,1.00,168.00,9.60,0
+139.20,9.60,10.83,0.00,1.00,168.00,9.60,0
+144.00,9.60,10.79,0.00,1.00,172.80,9.60,0
+148.80,4.80,10.75,0.00,1.00,172.80,4.80,0
+153.60,4.80,10.71,0.00,1.00,172.80,4.80,0
+158.40,4.80,10.67,0.00,1.00,172.80,4.80,0
+163.20,4.80,10.63,0.00,1.00,177.60,4.80,0
+168.00,4.80,10.59,0.00,1.00,177.60,0.00,0
+172.80,0.00,10.55,0.00,1.00,177.60,0.00,0
+177.60,0.00,10.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.47,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,10.43,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,10.39,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,10.35,0.00,1.00,-177.60,-4.80,0
+-158.40,-4.80,10.31,0.00,1.00,-172.80,-4.80,0
+-153.60,-4.80,10.27,0.00,1.00,-172.80,-9.60,0
+-148.80,-4.80,10.23,0.00,1.00,-172.80,-9.60,0
+-144.00,-9.60,10.19,0.00,1.00,-172.80,-9.60,0
+-139.20,-9.60,10.15,0.00,1.00,-168.00,-9.60,0
+-134.40,-9.60,10.11,0.00,1.00,-168.00,-9.60,0
+-129.60,-9.60,10.07,0.00,1.00,-163.20,-9.60,0
+-124.80,-9.60,10.03,0.00,1.00,-163.20,-14.40,0
+-120.00,-9.60,9.98,0.00,1.00,-158.40,-14.40,0
+-115.20,-9.60,9.94,0.00,1.00,-153.60,-14.40,0
+-110.40,-14.40,9.90,0.00,1.00,-148.80,-14.40,0
+-105.60,-14.40,9.86,0.00,1.00,-139.20,-14.40,0
+-100.80,-14.40,9.82,0.00,1.00,-129.60,-14.40,0
+-96.00,-14.40,9.78,0.00,1.00,-115.20,-14.40,0
+-91.20,-14.40,9.74,0.00,1.00,-96.00,-14.40,0
+-86.40,-14.40,9.70,0.00,1.00,-76.80,-14.40,0
+-81.60,-14.40,9.66,0.00,1.00,-57.60,-14.40,0
+-76.80,-14.40,9.62,0.00,1.00,-43.20,-14.40,0
+-72.00,-14.40,9.58,0.00,1.00,-33.60,-14.40,0
+-67.20,-14.40,9.54,0.00,1.00,-28.80,-14.40,0
+-62.40,-9.60,9.50,0.00,1.00,-24.00,-14.40,0
+-57.60,-9.60,9.46,0.00,1.00,-19.20,-9.60,0
+-52.80,-9.60,9.42,0.00,1.00,-14.40,-9.60,0
+-48.00,-9.60,9.38,0.00,1.00,-14.40,-9.60,0
+-43.20,-9.60,9.34,0.00,1.00,-14.40,-9.60,0
+-38.40,-9.60,9.30,0.00,1.00,-9.60,-9.60,0
+-33.60,-9.60,9.26,0.00,1.00,-9.60,-4.80,0
+-28.80,-4.80,9.22,0.00,1.00,-4.80,-4.80,0
+-24.00,-4.80,9.18,0.00,1.00,-4.80,-4.80,0
+-19.20,-4.80,9.14,0.00,1.00,-4.80,-4.80,0
+-14.40,-4.80,9.10,0.00,1.00,-4.80,-0.00,0
+-9.60,-0.00,9.06,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,9.02,0.00,1.00,-0.00,0.00,0
+0.00,0.00,8.98,0.00,1.00,0.00,0.00,0
+4.80,0.00,8.94,0.00,1.00,0.00,0.00,0
+9.60,0.00,8.90,0.00,1.00,0.00,0.00,0
+14.40,0.00,8.86,0.00,1.00,0.00,4.80,0
+19.20,4.80,8.82,0.00,1.00,4.80,4.80,0
+24.00,4.80,8.78,0.00,1.00,4.80,4.80,0
+28.80,4.80,8.74,0.00,1.00,4.80,4.80,0
+33.60,4.80,8.70,0.00,1.00,4.80,4.80,0
+38.40,4.80,8.66,0.00,1.00,4.80,4.80,0
+43.20,4.80,8.62,0.00,1.00,9.60,4.80,0
+48.00,4.80,8.58,0.00,1.00,9.60,9.60,0
+52.80,4.80,8.54,0.00,1.00,9.60,9.60,0
+57.60,4.80,8.50,0.00,1.00,14.40,9.60,0
+62.40,9.60,8.46,0.00,1.00,14.40,9.60,0
+67.20,9.60,8.42,0.00,1.00,19.20,9.60,0
+72.00,9.60,8.38,0.00,1.00,24.00,9.60,0
+76.80,9.60,8.34,0.00,1.00,33.60,9.60,0
+81.60,9.60,8.30,0.00,1.00,43.20,9.60,0
+86.40,9.60,8.26,0.00,1.00,67.20,9.60,0
+91.20,9.60,8.22,0.00,1.00,96.00,9.60,0
+96.00,9.60,8.18,0.00,1.00,124.80,9.60,0
+100.80,9.60,8.14,0.00,1.00,144.00,9.60,0
+105.60,9.60,8.10,0.00,1.00,153.60,9.60,0
+110.40,9.60,8.06,0.00,1.00,158.40,9.60,0
+115.20,9.60,8.02,0.00,1.00,163.20,9.60,0
+120.00,9.60,7.98,0.00,1.00,168.00,9.60,0
+124.80,4.80,7.94,0.00,1.00,168.00,9.60,0
+129.60,4.80,7.90,0.00,1.00,168.00,4.80,0
+134.40,4.80,7.86,0.00,1.00,172.80,4.80,0
+139.20,4.80,7.82,0.00,1.00,172.80,4.80,0
+144.00,4.80,7.78,0.00,1.00,172.80,4.80,0
+148.80,4.80,7.74,0.00,1.00,172.80,4.80,0
+153.60,4.80,7.70,0.00,1.00,177.60,4.80,0
+158.40,4.80,7.66,0.00,1.00,177.60,4.80,0
+163.20,4.80,7.62,0.00,1.00,177.60,0.00,0
+168.00,0.00,7.58,0.00,1.00,177.60,0.00,0
+172.80,0.00,7.54,0.00,1.00,177.60,0.00,0
+177.60,0.00,7.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,7.46,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,7.42,0.00,1.00,-177.60,-0.00,0
+-168.00,-0.00,7.38,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,7.34,0.00,1.00,-177.60,-4.80,0
+-158.40,-4.80,7.30,0.00,1.00,-177.60,-4.80,0
+-153.60,-4.80,7.26,0.00,1.00,-177.60,-4.80,0
+-148.80,-4.80,7.22,0.00,1.00,-172.80,-4.80,0
+-144.00,-4.80,7.18,0.00,1.00,-172.80,-4.80,0
+-139.20,-4.80,7.14,0.00,1.00,-172.80,-4.80,0
+-134.40,-4.80,7.10,0.00,1.00,-172.80,-9.60,0
+-129.60,-4.80,7.06,0.00,1.00,-168.00,-9.60,0
+-124.80,-4.80,7.02,0.00,1.00,-168.00,-9.60,0
+-120.00,-9.60,6.98,0.00,1.00,-168.00,-9.60,0
+-115.20,-9.60,6.94,0.00,1.00,-163.20,-9.60,0
+-110.40,-9.60,6.90,0.00,1.00,-158.40,-9.60,0
+-105.60,-9.60,6.86,0.00,1.00,-153.60,-9.60,0
+-100.80,-9.60,6.82,0.00,1.00,-144.00,-9.60,0
+-96.00,-9.60,6.78,0.00,1.00,-124.80,-9.60,0
+-91.20,-9.60,6.74,0.00,1.00,-96.00,-9.60,0
+-86.40,-9.60,6.70,0.00,1.00,-67.20,-9.60,0
+-81.60,-9.60,6.66,0.00,1.00,-43.20,-9.60,0
+-76.80,-9.60,6.62,0.00,1.00,-33.60,-9.60,0
+-72.00,-9.60,6.58,0.00,1.00,-24.00,-9.60,0
+-67.20,-9.60,6.54,0.00,1.00,-19.20,-9.60,0
+-62.40,-9.60,6.50,0.00,1.00,-14.40,-9.60,0
+-57.60,-4.80,6.46,0.00,1.00,-14.40,-9.60,0
+-52.80,-4.80,6.42,0.00,1.00,-9.60,-4.80,0
+-48.00,-4.80,6.38,0.00,1.00,-9.60,-4.80,0
+-43.20,-4.80,6.34,0.00,1.00,-9.60,-4.80,0
+-38.40,-4.80,6.30,0.00,1.00,-4.80,-4.80,0
+-33.60,-4.80,6.26,0.00,1.00,-4.80,-4.80,0
+-28.80,-4.80,6.22,0.00,1.00,-4.80,-4.80,0
+-24.00,-4.80,6.18,0.00,1.00,-4.80,-4.80,0
+-19.20,-4.80,6.14,0.00,1.00,-4.80,-0.00,0
+-14.40,-0.00,6.10,0.00,1.00,-0.00,-0.00,0
+-9.60,-0.00,6.06,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,6.02,0.00,1.00,-0.00,0.00,0
+0.00,0.00,5.97,0.00,1.00,0.00,0.00,0
+4.80,0.00,5.93,0.00,1.00,0.00,0.00,0
+9.60,0.00,5.89,0.00,1.00,0.00,0.00,0
+14.40,0.00,5.85,0.00,1.00,0.00,0.00,0
+19.20,0.00,5.81,0.00,1.00,0.00,0.00,0
+24.00,0.00,5.77,0.00,1.00,0.00,0.00,0
+28.80,0.00,5.73,0.00,1.00,0.00,4.80,0
+33.60,0.00,5.69,0.00,1.00,0.00,4.80,0
+38.40,0.00,5.65,0.00,1.00,4.80,4.80,0
+43.20,4.80,5.61,0.00,1.00,4.80,4.80,0
+48.00,4.80,5.57,0.00,1.00,4.80,4.80,0
+52.80,4.80,5.53,0.00,1.00,4.80,4.80,0
+57.60,4.80,5.49,0.00,1.00,4.80,4.80,0
+62.40,4.80,5.45,0.00,1.00,4.80,4.80,0
+67.20,4.80,5.41,0.00,1.00,9.60,4.80,0
+72.00,4.80,5.37,0.00,1.00,9.60,4.80,0
+76.80,4.80,5.33,0.00,1.00,14.40,4.80,0
+81.60,4.80,5.29,0.00,1.00,24.00,4.80,0
+86.40,4.80,5.25,0.00,1.00,43.20,4.80,0
+91.20,4.80,5.21,0.00,1.00,110.40,4.80,0
+96.00,4.80,5.17,0.00,1.00,148.80,4.80,0
+100.80,4.80,5.13,0.00,1.00,163.20,4.80,0
+105.60,4.80,5.09,0.00,1.00,168.00,4.80,0
+110.40,4.80,5.05,0.00,1.00,172.80,4.80,0
+115.20,4.80,5.01,0.00,1.00,172.80,4.80,0
+120.00,4.80,4.97,0.00,1.00,172.80,4.80,0
+124.80,4.80,4.93,0.00,1.00,172.80,4.80,0
+129.60,4.80,4.89,0.00,1.00,177.60,4.80,0
+134.40,4.80,4.85,0.00,1.00,177.60,4.80,0
+139.20,0.00,4.81,0.00,1.00,177.60,4.80,0
+144.00,0.00,4.77,0.00,1.00,177.60,4.80,0
+148.80,0.00,4.73,0.00,1.00,177.60,0.00,0
+153.60,0.00,4.69,0.00,1.00,177.60,0.00,0
+158.40,0.00,4.65,0.00,1.00,177.60,0.00,0
+163.20,0.00,4.61,0.00,1.00,177.60,0.00,0
+168.00,0.00,4.57,0.00,1.00,177.60,0.00,0
+172.80,0.00,4.53,0.00,1.00,177.60,0.00,0
+177.60,0.00,4.49,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,4.45,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,4.41,0.00,1.00,-177.60,-0.00,0
+-168.00,-0.00,4.37,0.00,1.00,-177.60,-0.00,0
+-163.20,-0.00,4.33,0.00,1.00,-177.60,-0.00,0
+-158.40,-0.00,4.29,0.00,1.00,-177.60,-0.00,0
+-153.60,-0.00,4.25,0.00,1.00,-177.60,-4.80,0
+-148.80,-0.00,4.21,0.00,1.00,-177.60,-4.80,0
+-144.00,-0.00,4.17,0.00,1.00,-177.60,-4.80,0
+-139.20,-0.00,4.13,0.00,1.00,-177.60,-4.80,0
+-134.40,-4.80,4.09,0.00,1.00,-177.60,-4.80,0
+-129.60,-4.80,4.05,0.00,1.00,-177.60,-4.80,0
+-124.80,-4.80,4.01,0.00,1.00,-172.80,-4.80,0
+-120.00,-4.80,3.97,0.00,1.00,-172.80,-4.80,0
+-115.20,-4.80,3.93,0.00,1.00,-172.80,-4.80,0
+-110.40,-4.80,3.89,0.00,1.00,-172.80,-4.80,0
+-105.60,-4.80,3.85,0.00,1.00,-168.00,-4.80,0
+-100.80,-4.80,3.81,0.00,1.00,-163.20,-4.80,0
+-96.00,-4.80,3.77,0.00,1.00,-148.80,-4.80,0
+-91.20,-4.80,3.73,0.00,1.00,-110.40,-4.80,0
+-86.40,-4.80,3.69,0.00,1.00,-43.20,-4.80,0
+-81.60,-4.80,3.65,0.00,1.00,-24.00,-4.80,0
+-76.80,-4.80,3.61,0.00,1.00,-14.40,-4.80,0
+-72.00,-4.80,3.57,0.00,1.00,-9.60,-4.80,0
+-67.20,-4.80,3.53,0.00,1.00,-9.60,-4.80,0
+-62.40,-4.80,3.49,0.00,1.00,-4.80,-4.80,0
+-57.60,-4.80,3.45,0.00,1.00,-4.80,-4.80,0
+-52.80,-4.80,3.41,0.00,1.00,-4.80,-4.80,0
+-48.00,-4.80,3.37,0.00,1.00,-4.80,-4.80,0
+-43.20,-4.80,3.33,0.00,1.00,-4.80,-4.80,0
+-38.40,-0.00,3.29,0.00,1.00,-4.80,-4.80,0
+-33.60,-0.00,3.25,0.00,1.00,-0.00,-0.00,0
+-28.80,-0.00,3.21,0.00,1.00,-0.00,-0.00,0
+-24.00,-0.00,3.17,0.00,1.00,-0.00,-0.00,0
+-19.20,-0.00,3.13,0.00,1.00,-0.00,-0.00,0
+-14.40,-0.00,3.09,0.00,1.00,-0.00,-0.00,0
+-9.60,-0.00,3.05,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,3.01,0.00,1.00,-0.00,0.00,0
+0.00,0.00,2.97,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,2.93,0.00,1.00,-0.00,0.00,0
+9.60,-0.00,2.89,0.00,1.00,-0.00,0.00,0
+14.40,-0.00,2.85,0.00,1.00,-0.00,0.00,0
+19.20,-0.00,2.81,0.00,1.00,-0.00,0.00,0
+24.00,-0.00,2.77,0.00,1.00,-0.00,0.00,0
+28.80,-0.00,2.73,0.00,1.00,-0.00,0.00,0
+33.60,-0.00,2.69,0.00,1.00,-0.00,0.00,0
+38.40,-0.00,2.65,0.00,1.00,-0.00,0.00,0
+43.20,-0.00,2.61,0.00,1.00,-0.00,0.00,0
+48.00,-0.00,2.57,0.00,1.00,-0.00,0.00,0
+52.80,-0.00,2.53,0.00,1.00,-0.00,0.00,0
+57.60,-0.00,2.49,0.00,1.00,-0.00,0.00,0
+62.40,-0.00,2.45,0.00,1.00,-0.00,0.00,0
+67.20,-0.00,2.41,0.00,1.00,-4.80,0.00,0
+72.00,-0.00,2.37,0.00,1.00,-4.80,0.00,0
+76.80,-0.00,2.33,0.00,1.00,-4.80,0.00,0
+81.60,-0.00,2.29,0.00,1.00,-9.60,0.00,0
+86.40,-0.00,2.25,0.00,1.00,-19.20,0.00,0
+91.20,-0.00,2.21,0.00,1.00,-134.40,0.00,0
+96.00,-0.00,2.17,0.00,1.00,-168.00,0.00,0
+100.80,-0.00,2.13,0.00,1.00,-172.80,0.00,0
+105.60,-0.00,2.09,0.00,1.00,-177.60,0.00,0
+110.40,-0.00,2.05,0.00,1.00,-177.60,0.00,0
+115.20,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+120.00,-0.00,1.96,0.00,1.00,-177.60,0.00,0
+124.80,-0.00,1.92,0.00,1.00,-177.60,0.00,0
+129.60,-0.00,1.88,0.00,1.00,-177.60,0.00,0
+134.40,-0.00,1.84,0.00,1.00,-177.60,0.00,0
+139.20,-0.00,1.80,0.00,1.00,-177.60,0.00,0
+144.00,-0.00,1.76,0.00,1.00,-177.60,0.00,0
+148.80,-0.00,1.72,0.00,1.00,-177.60,0.00,0
+153.60,-0.00,1.68,0.00,1.00,-177.60,0.00,0
+158.40,-0.00,1.64,0.00,1.00,-177.60,0.00,0
+163.20,-0.00,1.60,0.00,1.00,-177.60,0.00,0
+168.00,-0.00,1.56,0.00,1.00,-177.60,0.00,0
+172.80,-0.00,1.52,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,1.48,0.00,1.00,-177.60,0.00,0
+-177.60,0.00,1.44,0.00,1.00,177.60,0.00,0
+-172.80,0.00,1.40,0.00,1.00,177.60,0.00,0
+-168.00,0.00,1.36,0.00,1.00,177.60,0.00,0
+-163.20,0.00,1.32,0.00,1.00,177.60,0.00,0
+-158.40,0.00,1.28,0.00,1.00,177.60,0.00,0
+-153.60,0.00,1.24,0.00,1.00,177.60,0.00,0
+-148.80,0.00,1.20,0.00,1.00,177.60,0.00,0
+-144.00,0.00,1.16,0.00,1.00,177.60,0.00,0
+-139.20,0.00,1.12,0.00,1.00,177.60,0.00,0
+-134.40,0.00,1.08,0.00,1.00,177.60,0.00,0
+-129.60,0.00,1.04,0.00,1.00,177.60,0.00,0
+-124.80,0.00,1.00,0.00,1.00,177.60,0.00,0
+-120.00,0.00,0.96,0.00,1.00,177.60,0.00,0
+-115.20,0.00,0.92,0.00,1.00,177.60,0.00,0
+-110.40,0.00,0.88,0.00,1.00,177.60,0.00,0
+-105.60,0.00,0.84,0.00,1.00,177.60,0.00,0
+-100.80,0.00,0.80,0.00,1.00,172.80,0.00,0
+-96.00,0.00,0.76,0.00,1.00,168.00,0.00,0
+-91.20,0.00,0.72,0.00,1.00,134.40,0.00,0
+-86.40,0.00,0.68,0.00,1.00,19.20,0.00,0
+-81.60,0.00,0.64,0.00,1.00,9.60,0.00,0
+-76.80,0.00,0.60,0.00,1.00,4.80,0.00,0
+-72.00,0.00,0.56,0.00,1.00,4.80,0.00,0
+-67.20,0.00,0.52,0.00,1.00,4.80,0.00,0
+-62.40,0.00,0.48,0.00,1.00,0.00,0.00,0
+-57.60,0.00,0.44,0.00,1.00,0.00,0.00,0
+-52.80,0.00,0.40,0.00,1.00,0.00,0.00,0
+-48.00,0.00,0.36,0.00,1.00,0.00,0.00,0
+-43.20,0.00,0.32,0.00,1.00,0.00,0.00,0
+-38.40,0.00,0.28,0.00,1.00,0.00,0.00,0
+-33.60,0.00,0.24,0.00,1.00,0.00,0.00,0
+-28.80,0.00,0.20,0.00,1.00,0.00,0.00,0
+-24.00,0.00,0.16,0.00,1.00,0.00,0.00,0
+-19.20,0.00,0.12,0.00,1.00,0.00,0.00,0
+-14.40,0.00,0.08,0.00,1.00,0.00,0.00,0
+-9.60,0.00,0.04,0.00,1.00,0.00,0.00,0
+-4.80,0.00,0.00,0.00,1.00,0.00,0.00,0
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA2TC48c.met b/scripts/testv/stvOMASA_4ISM_1MASA2TC48c.met
new file mode 100644
index 0000000000000000000000000000000000000000..00acdae5394c5d40e9193d7dd9cd1fee6d182c24
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA2TC48c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5a1f87bfe360dbd221a94583aa68a58ef050e968a63351730d643f2dc2cac4e1
+size 204600
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA2TC48c_ISM1.csv b/scripts/testv/stvOMASA_4ISM_1MASA2TC48c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA2TC48c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA2TC48c_ISM2.csv b/scripts/testv/stvOMASA_4ISM_1MASA2TC48c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA2TC48c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA2TC48c_ISM3.csv b/scripts/testv/stvOMASA_4ISM_1MASA2TC48c_ISM3.csv
new file mode 100644
index 0000000000000000000000000000000000000000..14eee9b693b536fa2fd22d2813d7f588b8930b06
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA2TC48c_ISM3.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0
+-177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0
+4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0
+-168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0
+14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0
+-163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0
+19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0
+-153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0
+28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0
+-148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0
+38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0
+-139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0
+48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0
+-124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0
+57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0
+-115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0
+72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0
+-100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0
+86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0
+-86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0
+100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0
+-76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0
+110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0
+-62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0
+124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0
+-52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0
+134.40,33.60,0.28,0.00,1.00,177.60,0.00,0
+-38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0
+144.00,28.80,0.30,0.00,1.00,177.60,0.00,0
+-33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0
+153.60,24.00,0.32,0.00,1.00,177.60,0.00,0
+-24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0
+158.40,19.20,0.34,0.00,1.00,177.60,0.00,0
+-14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0
+168.00,9.60,0.36,0.00,1.00,177.60,0.00,0
+-9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0
+172.80,4.80,0.38,0.00,1.00,177.60,0.00,0
+-0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0
+-177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0
+4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0
+14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0
+19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0
+-158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0
+28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0
+-148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0
+33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0
+-139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0
+43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0
+-129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0
+57.60,38.40,15.47,0.00,1.00,177.60,0.00,0
+-120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0
+67.20,43.20,15.44,0.00,1.00,177.60,0.00,0
+-105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0
+81.60,43.20,15.42,0.00,1.00,177.60,0.00,0
+-91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0
+96.00,43.20,15.40,0.00,1.00,0.00,0.00,0
+-76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0
+110.40,43.20,15.38,0.00,1.00,0.00,0.00,0
+-67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0
+120.00,38.40,15.36,0.00,1.00,0.00,0.00,0
+-52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0
+129.60,38.40,15.34,0.00,1.00,0.00,0.00,0
+-43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0
+144.00,33.60,15.32,0.00,1.00,0.00,0.00,0
+-33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0
+148.80,24.00,15.30,0.00,1.00,0.00,0.00,0
+-24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0
+158.40,19.20,15.27,0.00,1.00,0.00,0.00,0
+-19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0
+168.00,14.40,15.25,0.00,1.00,0.00,0.00,0
+-9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0
+172.80,4.80,15.23,0.00,1.00,0.00,0.00,0
+-4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0
+0.00,0.00,15.21,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0
+9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0
+14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0
+-163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0
+24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0
+-153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0
+28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0
+-144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0
+38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0
+-134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0
+48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0
+-124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0
+62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0
+-115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0
+72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0
+-100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0
+86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0
+-86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0
+96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0
+-76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0
+110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0
+-62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0
+120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0
+-52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0
+134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0
+-43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0
+144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0
+-33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0
+148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0
+-24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0
+158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0
+-19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0
+168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0
+-9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0
+172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0
+4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0
+14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0
+19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0
+-153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0
+28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0
+-148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0
+38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0
+-139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0
+48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0
+-124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0
+57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0
+-115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0
+72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0
+-105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0
+81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0
+-91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0
+96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0
+-76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0
+105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0
+-67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0
+120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0
+-57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0
+129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0
+-43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0
+139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0
+-33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0
+148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0
+-28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0
+158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0
+-19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0
+163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0
+-9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0
+172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0
+0.00,0.00,1.60,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0
+9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0
+14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0
+-158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0
+24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0
+-153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0
+33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0
+-144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0
+43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0
+-134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0
+52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0
+-124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0
+62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0
+-110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0
+72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0
+-100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0
+86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0
+-86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0
+96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0
+-76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0
+110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0
+-67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0
+120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0
+-52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0
+129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0
+-43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0
+139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0
+-33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0
+148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0
+-24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0
+158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0
+-19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0
+168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0
+172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0
+14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0
+-163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0
+24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0
+-153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0
+28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0
+-144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0
+38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0
+-134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0
+48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0
+-124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0
+62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0
+-115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0
+72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0
+-100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0
+81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0
+-91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0
+96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0
+-81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0
+105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0
+-67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0
+115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0
+-57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0
+129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0
+-48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0
+139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0
+-38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0
+148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0
+-28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0
+153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0
+-19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0
+163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0
+-9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0
+172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0
+0.00,0.00,13.61,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0
+9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0
+-168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0
+24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0
+-148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0
+33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0
+-139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0
+43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0
+-129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0
+52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0
+-120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0
+62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0
+-110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0
+76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0
+-100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0
+86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0
+-86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0
+96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0
+-76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0
+105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0
+-67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0
+120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0
+-57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0
+129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0
+-48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0
+139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0
+-38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0
+148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0
+158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0
+-19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0
+163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0
+172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0
+4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0
+14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0
+-163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0
+24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0
+-153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0
+33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0
+-144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0
+43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0
+-134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0
+52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0
+-124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0
+62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0
+-115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0
+72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0
+-100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0
+81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0
+-91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0
+96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0
+-81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0
+105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0
+-67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0
+115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0
+-57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0
+124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0
+-48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0
+134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0
+-38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0
+144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0
+-28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0
+153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0
+-19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0
+163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0
+-14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0
+172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0
+-4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0
+0.00,0.00,3.20,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0
+9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0
+19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0
+24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0
+-148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0
+33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0
+-139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0
+43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0
+-129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0
+52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0
+-120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0
+67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0
+-110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0
+76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0
+-100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0
+86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0
+-86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0
+96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0
+-76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0
+105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0
+-67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0
+115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0
+-57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0
+129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0
+-48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0
+139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0
+-38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0
+148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0
+153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0
+-19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0
+163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0
+172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0
+4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0
+14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0
+24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0
+-153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0
+33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0
+-144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0
+43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0
+-134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0
+52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0
+-124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0
+62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0
+-110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0
+72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0
+-100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0
+81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0
+-91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0
+96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0
+-81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0
+105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0
+-72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0
+115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0
+-57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0
+124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0
+-48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0
+134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0
+-38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0
+144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0
+-28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0
+153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0
+-24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0
+163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0
+-14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0
+172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,12.01,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0
+9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0
+-158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0
+28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0
+-148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0
+38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0
+-139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0
+48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0
+-129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0
+57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0
+-120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0
+67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0
+-110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0
+76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0
+-100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0
+86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0
+-86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0
+96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0
+-76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0
+105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0
+-67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0
+115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0
+-57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0
+124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0
+-48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0
+134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0
+-38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0
+144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0
+-28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0
+153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0
+-19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0
+163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0
+172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0
+4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0
+14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0
+24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0
+-148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0
+33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0
+-139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0
+43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0
+-129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0
+52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0
+-120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0
+62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0
+-110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0
+72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0
+-100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0
+81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0
+-91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0
+96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0
+-81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0
+105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0
+-72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0
+115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0
+-62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0
+124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0
+-52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0
+134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0
+-43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0
+144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0
+-33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0
+153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0
+-24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0
+163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0
+172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0
+0.00,0.00,4.81,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0
+9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0
+19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0
+28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0
+-148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0
+38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0
+-139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0
+48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0
+-129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0
+57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0
+-120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0
+67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0
+-110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0
+76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0
+-100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0
+86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0
+-86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0
+96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0
+-76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0
+105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0
+-67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0
+115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0
+-57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0
+124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0
+-48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0
+134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0
+-38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0
+144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0
+-28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0
+153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0
+-19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0
+163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0
+-9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0
+172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0
+4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0
+14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0
+24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0
+-148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0
+33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0
+-139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0
+43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0
+-129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0
+52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0
+-120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0
+62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0
+-110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0
+72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0
+-100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0
+81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0
+-91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0
+96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0
+-81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0
+105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0
+-72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0
+115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0
+-62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0
+124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0
+-52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0
+134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0
+-43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0
+144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0
+-33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0
+153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0
+-24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0
+163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0
+172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+0.00,0.00,10.40,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0
+9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0
+19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0
+28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0
+-148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0
+38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0
+-139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0
+48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0
+-129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0
+57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0
+-120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0
+67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0
+-110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0
+76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0
+-100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0
+86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0
+-86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0
+96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0
+-76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0
+105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0
+-67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0
+115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0
+-57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0
+124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0
+-48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0
+134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0
+-38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0
+144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0
+-28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0
+153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0
+163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0
+-9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0
+172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0
+4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0
+14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0
+24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0
+33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0
+-139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0
+43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0
+-129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0
+52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0
+-120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0
+62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0
+-110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0
+72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0
+-100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0
+81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0
+-91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0
+96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0
+-81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0
+105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0
+-72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0
+115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0
+-62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0
+124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0
+-52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0
+134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0
+-43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0
+144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0
+-33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0
+153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0
+-24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0
+163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0
+172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,6.41,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0
+9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0
+19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0
+-158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0
+28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0
+-148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0
+38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0
+-139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0
+48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0
+-129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0
+57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0
+-120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0
+67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0
+-110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0
+76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0
+-100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0
+86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0
+-86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0
+96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0
+-76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0
+105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0
+-67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0
+115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0
+-57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0
+124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0
+-48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0
+134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0
+-38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0
+144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0
+-28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0
+153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0
+163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0
+172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0
+4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0
+14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0
+-158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0
+24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0
+33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0
+-139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0
+43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0
+-129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0
+52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0
+-120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0
+62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0
+-110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0
+72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0
+-100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0
+81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0
+-91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0
+96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0
+-81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0
+105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0
+-72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0
+115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0
+-62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0
+124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0
+-52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0
+134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0
+-43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0
+144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0
+-33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0
+153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0
+-24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0
+163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0
+-14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0
+172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.80,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0
+9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0
+19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0
+-158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0
+28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0
+-148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0
+38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0
+-139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0
+48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0
+-129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0
+57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0
+-120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0
+67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0
+-110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0
+76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0
+-100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0
+86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0
+-86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0
+96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0
+-76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0
+105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0
+-67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0
+115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0
+-57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0
+124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0
+-48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0
+134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0
+-38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0
+144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0
+-28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0
+153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0
+-19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0
+163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0
+172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0
+-0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0
+4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0
+-168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0
+14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0
+-158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0
+24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0
+-148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0
+33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0
+-139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0
+43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0
+-129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0
+52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0
+-120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0
+62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0
+-110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0
+72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0
+-100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0
+81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0
+-91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0
+96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0
+-81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0
+105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0
+-72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0
+115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0
+-62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0
+124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0
+-52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0
+134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0
+-43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0
+144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0
+-33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0
+153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0
+-24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0
+163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0
+-14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0
+172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.01,0.00,1.00,0.00,0.00,0
+-177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0
+-168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0
+19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0
+-158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0
+28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0
+-148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0
+38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0
+-139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0
+48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0
+-129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0
+57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0
+-120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0
+67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0
+-110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0
+76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0
+-100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0
+86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0
+-86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0
+96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0
+-76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0
+105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0
+-67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0
+115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0
+-57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0
+124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0
+-48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0
+134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0
+-38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0
+144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0
+-28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0
+153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0
+-19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0
+163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0
+172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0
+14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0
+-158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0
+24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0
+-148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0
+33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0
+-139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0
+43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0
+-129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0
+52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0
+-120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0
+62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0
+-110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0
+72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0
+-100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0
+81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0
+-91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0
+96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0
+-81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0
+105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0
+-72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0
+115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0
+-62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0
+124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0
+-52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0
+134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0
+-43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0
+144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0
+-33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0
+153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0
+-24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0
+163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0
+-4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0
+0.00,0.00,7.20,0.00,1.00,0.00,0.00,0
+-177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0
+-168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0
+19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0
+38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0
+-139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0
+48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0
+-129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0
+57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0
+-120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0
+67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0
+-110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0
+76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0
+-100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0
+86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0
+-86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0
+96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0
+-76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0
+105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0
+-67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0
+115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0
+-57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0
+124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0
+-48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0
+134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0
+-38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0
+144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0
+-19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0
+163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0
+14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0
+-148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0
+33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0
+-139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0
+43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0
+-129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0
+52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0
+-120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0
+62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0
+72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0
+-100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0
+81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0
+-91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0
+96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0
+-81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0
+105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0
+-72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0
+115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0
+-62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0
+124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0
+-52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0
+134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0
+-43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0
+144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0
+-33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0
+153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0
+0.00,0.00,9.61,0.00,1.00,0.00,0.00,0
+-177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0
+48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0
+-129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0
+57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0
+-120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0
+67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0
+-110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0
+76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0
+-100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0
+86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0
+-86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0
+96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0
+-76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0
+105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0
+-67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0
+115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0
+-57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0
+124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0
+-48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0
+134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0
+163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0
+-9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0
+-148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0
+33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0
+-139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0
+43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0
+-129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0
+52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0
+-120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0
+62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0
+72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0
+-100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0
+81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0
+-91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0
+96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0
+-81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0
+105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0
+-72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0
+115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0
+-62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0
+124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0
+-52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0
+134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0
+-43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0
+144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0
+-33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0
+153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0
+-14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0
+172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0
+0.00,0.00,5.60,0.00,1.00,0.00,0.00,0
+-177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0
+-158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0
+28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0
+-148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0
+48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0
+-129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0
+57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0
+-120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0
+67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0
+-110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0
+76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0
+-100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0
+86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0
+-86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0
+96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0
+-76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0
+105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0
+-67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0
+115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0
+-57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0
+124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0
+-48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0
+134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0
+-28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0
+153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0
+-158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0
+-148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0
+33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0
+-139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0
+43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0
+-129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0
+52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0
+-120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0
+62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0
+-110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0
+72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0
+-100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0
+81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0
+-91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0
+96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0
+-81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0
+105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0
+-72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0
+115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0
+-62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0
+124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0
+-52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0
+134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0
+-43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0
+144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0
+-33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0
+153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0
+0.00,0.00,11.21,0.00,1.00,0.00,0.00,0
+-177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0
+28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0
+-148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0
+38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0
+-139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0
+48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0
+57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0
+-120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0
+67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0
+-110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0
+76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0
+-100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0
+86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0
+-86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0
+96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0
+-76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0
+105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0
+-67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0
+115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0
+-57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0
+124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0
+-48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0
+134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0
+-38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0
+144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0
+-28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0
+153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0
+-148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0
+-139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0
+43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0
+-129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0
+52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0
+-120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0
+62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0
+-110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0
+72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0
+-100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0
+81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0
+-91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0
+96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0
+-81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0
+105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0
+-72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0
+115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0
+-62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0
+124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0
+-52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0
+134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0
+-43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0
+-33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0
+153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0
+-24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0
+163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,3.99,0.00,1.00,0.00,0.00,0
+-177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0
+19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0
+-148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0
+33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0
+43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0
+52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0
+-120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0
+62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0
+-110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0
+76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0
+-100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0
+86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0
+-86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0
+96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0
+-76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0
+105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0
+-67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0
+120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0
+-57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0
+-48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0
+139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0
+148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0
+158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0
+163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0
+43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0
+-134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0
+-124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0
+62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0
+-110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0
+72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0
+-100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0
+81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0
+-91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0
+96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0
+-81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0
+105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0
+-72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0
+115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0
+-57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0
+124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0
+-48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0
+134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0
+-38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0
+-28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0
+-24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,12.82,0.00,1.00,0.00,0.00,0
+-177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0
+-148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0
+33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0
+-129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0
+-120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0
+62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0
+-110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0
+76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0
+-100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0
+86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0
+-86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0
+96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0
+-76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0
+110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0
+-67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0
+120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0
+-57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0
+-48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0
+-163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0
+33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0
+43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0
+-134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0
+62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0
+-115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0
+72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0
+-100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0
+81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0
+-91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0
+96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0
+-81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0
+105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0
+-67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0
+115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0
+-57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0
+124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0
+-48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0
+134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0
+-38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0
+144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0
+-14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,2.39,0.00,1.00,0.00,0.00,0
+-177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0
+33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0
+-144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0
+-134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0
+62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0
+-110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0
+72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0
+-100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0
+86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0
+-86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0
+96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0
+-76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0
+110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0
+-67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0
+120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0
+-52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0
+129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0
+-19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0
+28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0
+-144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0
+38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0
+-134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0
+48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0
+57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0
+-115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0
+72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0
+-105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0
+81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0
+-91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0
+96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0
+-81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0
+105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0
+-67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0
+120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0
+-57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0
+129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0
+-48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0
+139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0
+-38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0
+158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0
+0.00,0.00,14.42,0.00,1.00,0.00,0.00,0
+-177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0
+-163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0
+24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0
+28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0
+-144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0
+38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0
+-134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0
+48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0
+62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0
+-115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0
+72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0
+86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0
+-86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0
+96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0
+-76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0
+110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0
+-62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0
+120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0
+-52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0
+134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0
+158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0
+-148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0
+38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0
+-139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0
+48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0
+-129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0
+-115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0
+67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0
+-105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0
+81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0
+-91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0
+96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0
+105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0
+-67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0
+120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0
+-52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0
+129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0
+139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0
+163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0
+0.00,0.00,0.79,0.00,1.00,0.00,0.00,0
+-177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0
+4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0
+-163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0
+19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0
+-153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0
+28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0
+-148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0
+38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0
+-139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0
+48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0
+-124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0
+57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0
+-115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0
+72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0
+86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0
+-86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0
+100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0
+-76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0
+110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0
+-62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0
+124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0
+-48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0
+134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0
+-38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0
+-28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0
+-24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0
+163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0
+168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0
+9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0
+-158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0
+-148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0
+33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0
+-139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0
+43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0
+-129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0
+-120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0
+67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0
+-105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0
+81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0
+-91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0
+96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0
+110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0
+-67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0
+120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0
+-52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0
+134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0
+144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0
+153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0
+-24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0
+-19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0
+168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0
diff --git a/scripts/testv/stvOMASA_4ISM_1MASA2TC48c_ISM4.csv b/scripts/testv/stvOMASA_4ISM_1MASA2TC48c_ISM4.csv
new file mode 100644
index 0000000000000000000000000000000000000000..8a14c3413ddd2dd47415bf6de3e19631f65f8f6c
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_1MASA2TC48c_ISM4.csv
@@ -0,0 +1,1500 @@
+-0.00,0.00,0.00,0.00,1.00,0.00,4.80,0
+-0.00,4.80,0.06,0.00,1.00,4.80,9.60,0
+-0.00,9.60,0.13,0.00,1.00,9.60,14.40,0
+-0.00,14.40,0.19,0.00,1.00,14.40,19.20,0
+-0.00,19.20,0.26,0.00,1.00,19.20,24.00,0
+-0.00,24.00,0.32,0.00,1.00,24.00,28.80,0
+-0.00,28.80,0.39,0.00,1.00,28.80,33.60,0
+-0.00,33.60,0.45,0.00,1.00,33.60,38.40,0
+-0.00,38.40,0.51,0.00,1.00,38.40,43.20,0
+-0.00,43.20,0.58,0.00,1.00,43.20,48.00,0
+-0.00,48.00,0.64,0.00,1.00,48.00,52.80,0
+-0.00,52.80,0.71,0.00,1.00,52.80,57.60,0
+-0.00,57.60,0.77,0.00,1.00,57.60,62.40,0
+-0.00,62.40,0.84,0.00,1.00,62.40,67.20,0
+-0.00,67.20,0.90,0.00,1.00,67.20,72.00,0
+-0.00,72.00,0.96,0.00,1.00,72.00,76.80,0
+-0.00,76.80,1.03,0.00,1.00,76.80,81.60,0
+-0.00,81.60,1.09,0.00,1.00,81.60,86.40,0
+-0.00,86.40,1.16,0.00,1.00,86.40,86.40,0
+-177.60,89.20,1.22,0.00,1.00,91.20,81.60,0
+-177.60,86.40,1.29,0.00,1.00,96.00,76.80,0
+-177.60,81.60,1.35,0.00,1.00,100.80,72.00,0
+-177.60,76.80,1.41,0.00,1.00,105.60,67.20,0
+-177.60,72.00,1.48,0.00,1.00,110.40,62.40,0
+-177.60,67.20,1.54,0.00,1.00,115.20,57.60,0
+177.60,62.40,1.61,0.00,1.00,120.00,52.80,0
+177.60,57.60,1.67,0.00,1.00,124.80,48.00,0
+177.60,52.80,1.73,0.00,1.00,129.60,43.20,0
+177.60,48.00,1.80,0.00,1.00,134.40,38.40,0
+177.60,43.20,1.86,0.00,1.00,139.20,33.60,0
+177.60,38.40,1.93,0.00,1.00,144.00,28.80,0
+177.60,33.60,1.99,0.00,1.00,148.80,24.00,0
+177.60,28.80,2.06,0.00,1.00,153.60,19.20,0
+177.60,24.00,2.12,0.00,1.00,158.40,14.40,0
+177.60,19.20,2.18,0.00,1.00,163.20,9.60,0
+177.60,14.40,2.25,0.00,1.00,168.00,4.80,0
+177.60,9.60,2.31,0.00,1.00,172.80,0.00,0
+177.60,4.80,2.38,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.44,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,2.51,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,2.57,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,2.63,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,2.70,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,2.76,0.00,1.00,-153.60,-28.80,0
+-177.60,-28.80,2.83,0.00,1.00,-148.80,-33.60,0
+-177.60,-33.60,2.89,0.00,1.00,-144.00,-38.40,0
+-177.60,-38.40,2.96,0.00,1.00,-139.20,-43.20,0
+-177.60,-48.00,3.02,0.00,1.00,-134.40,-48.00,0
+-177.60,-48.00,3.08,0.00,1.00,-129.60,-52.80,0
+-177.60,-52.80,3.15,0.00,1.00,-124.80,-57.60,0
+-177.60,-57.60,3.21,0.00,1.00,-120.00,-62.40,0
+177.60,-62.40,3.28,0.00,1.00,-115.20,-67.20,0
+177.60,-67.20,3.34,0.00,1.00,-110.40,-72.00,0
+177.60,-76.80,3.41,0.00,1.00,-105.60,-76.80,0
+177.60,-76.80,3.47,0.00,1.00,-100.80,-81.60,0
+177.60,-86.40,3.53,0.00,1.00,-96.00,-86.40,0
+177.60,-89.20,3.60,0.00,1.00,-91.20,-86.40,0
+0.00,-86.40,3.66,0.00,1.00,-86.40,-81.60,0
+0.00,-81.60,3.73,0.00,1.00,-81.60,-76.80,0
+0.00,-76.80,3.79,0.00,1.00,-76.80,-72.00,0
+0.00,-72.00,3.86,0.00,1.00,-72.00,-67.20,0
+0.00,-67.20,3.92,0.00,1.00,-67.20,-62.40,0
+0.00,-62.40,3.98,0.00,1.00,-62.40,-57.60,0
+0.00,-57.60,4.05,0.00,1.00,-57.60,-52.80,0
+0.00,-52.80,4.11,0.00,1.00,-52.80,-48.00,0
+0.00,-48.00,4.18,0.00,1.00,-48.00,-43.20,0
+0.00,-43.20,4.24,0.00,1.00,-43.20,-38.40,0
+0.00,-38.40,4.31,0.00,1.00,-38.40,-33.60,0
+0.00,-33.60,4.37,0.00,1.00,-33.60,-28.80,0
+0.00,-28.80,4.43,0.00,1.00,-28.80,-24.00,0
+0.00,-24.00,4.50,0.00,1.00,-24.00,-19.20,0
+0.00,-19.20,4.56,0.00,1.00,-19.20,-14.40,0
+0.00,-14.40,4.63,0.00,1.00,-14.40,-9.60,0
+0.00,-9.60,4.69,0.00,1.00,-9.60,-4.80,0
+0.00,-4.80,4.76,0.00,1.00,-4.80,0.00,0
+0.00,0.00,4.82,0.00,1.00,0.00,4.80,0
+0.00,4.80,4.88,0.00,1.00,4.80,9.60,0
+0.00,9.60,4.95,0.00,1.00,9.60,14.40,0
+0.00,14.40,5.01,0.00,1.00,14.40,19.20,0
+0.00,19.20,5.08,0.00,1.00,19.20,24.00,0
+0.00,24.00,5.14,0.00,1.00,24.00,28.80,0
+4.80,28.80,5.20,0.00,1.00,28.80,33.60,0
+4.80,33.60,5.27,0.00,1.00,33.60,38.40,0
+4.80,38.40,5.33,0.00,1.00,38.40,43.20,0
+4.80,43.20,5.40,0.00,1.00,43.20,48.00,0
+4.80,48.00,5.46,0.00,1.00,48.00,52.80,0
+4.80,52.80,5.53,0.00,1.00,52.80,57.60,0
+9.60,57.60,5.59,0.00,1.00,57.60,62.40,0
+9.60,62.40,5.65,0.00,1.00,62.40,67.20,0
+9.60,67.20,5.72,0.00,1.00,67.20,72.00,0
+14.40,72.00,5.78,0.00,1.00,72.00,76.80,0
+19.20,76.80,5.85,0.00,1.00,76.80,81.60,0
+28.80,81.60,5.91,0.00,1.00,81.60,86.40,0
+52.80,86.40,5.98,0.00,1.00,86.40,86.40,0
+105.60,86.40,6.04,0.00,1.00,91.20,81.60,0
+139.20,81.60,6.10,0.00,1.00,96.00,76.80,0
+158.40,76.80,6.17,0.00,1.00,100.80,72.00,0
+163.20,72.00,6.23,0.00,1.00,105.60,67.20,0
+168.00,67.20,6.30,0.00,1.00,110.40,62.40,0
+168.00,62.40,6.36,0.00,1.00,115.20,57.60,0
+172.80,57.60,6.43,0.00,1.00,120.00,52.80,0
+172.80,52.80,6.49,0.00,1.00,124.80,48.00,0
+172.80,48.00,6.55,0.00,1.00,129.60,43.20,0
+172.80,43.20,6.62,0.00,1.00,134.40,38.40,0
+177.60,38.40,6.68,0.00,1.00,139.20,33.60,0
+177.60,33.60,6.75,0.00,1.00,144.00,28.80,0
+177.60,28.80,6.81,0.00,1.00,148.80,24.00,0
+177.60,24.00,6.88,0.00,1.00,153.60,19.20,0
+177.60,19.20,6.94,0.00,1.00,158.40,14.40,0
+177.60,14.40,7.00,0.00,1.00,163.20,9.60,0
+177.60,9.60,7.07,0.00,1.00,168.00,4.80,0
+177.60,4.80,7.13,0.00,1.00,172.80,0.00,0
+177.60,0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,7.26,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,7.33,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,7.39,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,7.45,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,7.52,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,7.58,0.00,1.00,-153.60,-28.80,0
+-177.60,-28.80,7.65,0.00,1.00,-148.80,-33.60,0
+-177.60,-33.60,7.71,0.00,1.00,-144.00,-38.40,0
+-177.60,-38.40,7.78,0.00,1.00,-139.20,-43.20,0
+-172.80,-43.20,7.84,0.00,1.00,-134.40,-48.00,0
+-172.80,-48.00,7.90,0.00,1.00,-129.60,-52.80,0
+-172.80,-52.80,7.97,0.00,1.00,-124.80,-57.60,0
+-172.80,-57.60,8.03,0.00,1.00,-120.00,-62.40,0
+-168.00,-62.40,8.10,0.00,1.00,-115.20,-67.20,0
+-168.00,-67.20,8.16,0.00,1.00,-110.40,-72.00,0
+-163.20,-72.00,8.22,0.00,1.00,-105.60,-76.80,0
+-158.40,-76.80,8.29,0.00,1.00,-100.80,-81.60,0
+-139.20,-81.60,8.35,0.00,1.00,-96.00,-86.40,0
+-105.60,-86.40,8.42,0.00,1.00,-91.20,-86.40,0
+-52.80,-86.40,8.48,0.00,1.00,-86.40,-81.60,0
+-28.80,-81.60,8.55,0.00,1.00,-81.60,-76.80,0
+-19.20,-76.80,8.61,0.00,1.00,-76.80,-72.00,0
+-14.40,-72.00,8.67,0.00,1.00,-72.00,-67.20,0
+-9.60,-67.20,8.74,0.00,1.00,-67.20,-62.40,0
+-9.60,-62.40,8.80,0.00,1.00,-62.40,-57.60,0
+-9.60,-57.60,8.87,0.00,1.00,-57.60,-52.80,0
+-4.80,-52.80,8.93,0.00,1.00,-52.80,-48.00,0
+-4.80,-48.00,9.00,0.00,1.00,-48.00,-43.20,0
+-4.80,-43.20,9.06,0.00,1.00,-43.20,-38.40,0
+-4.80,-38.40,9.12,0.00,1.00,-38.40,-33.60,0
+-4.80,-33.60,9.19,0.00,1.00,-33.60,-28.80,0
+-4.80,-28.80,9.25,0.00,1.00,-28.80,-24.00,0
+-0.00,-24.00,9.32,0.00,1.00,-24.00,-19.20,0
+-0.00,-19.20,9.38,0.00,1.00,-19.20,-14.40,0
+-0.00,-14.40,9.45,0.00,1.00,-14.40,-9.60,0
+-0.00,-9.60,9.51,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,9.57,0.00,1.00,-4.80,0.00,0
+0.00,0.00,9.64,0.00,1.00,0.00,4.80,0
+0.00,4.80,9.70,0.00,1.00,4.80,9.60,0
+0.00,9.60,9.77,0.00,1.00,9.60,14.40,0
+4.80,14.40,9.83,0.00,1.00,14.40,19.20,0
+4.80,19.20,9.90,0.00,1.00,19.20,24.00,0
+4.80,24.00,9.96,0.00,1.00,24.00,28.80,0
+4.80,28.80,10.02,0.00,1.00,28.80,33.60,0
+4.80,33.60,10.09,0.00,1.00,33.60,38.40,0
+9.60,38.40,10.15,0.00,1.00,38.40,43.20,0
+9.60,43.20,10.22,0.00,1.00,43.20,48.00,0
+9.60,48.00,10.28,0.00,1.00,48.00,52.80,0
+14.40,52.80,10.35,0.00,1.00,52.80,57.60,0
+14.40,57.60,10.41,0.00,1.00,57.60,62.40,0
+19.20,62.40,10.47,0.00,1.00,62.40,67.20,0
+24.00,67.20,10.54,0.00,1.00,67.20,72.00,0
+28.80,72.00,10.60,0.00,1.00,72.00,72.00,0
+33.60,72.00,10.67,0.00,1.00,76.80,76.80,0
+48.00,76.80,10.73,0.00,1.00,81.60,81.60,0
+67.20,81.60,10.80,0.00,1.00,86.40,81.60,0
+96.00,81.60,10.86,0.00,1.00,91.20,81.60,0
+120.00,76.80,10.92,0.00,1.00,96.00,76.80,0
+139.20,76.80,10.99,0.00,1.00,100.80,72.00,0
+148.80,72.00,11.05,0.00,1.00,105.60,67.20,0
+153.60,67.20,11.12,0.00,1.00,110.40,62.40,0
+158.40,62.40,11.18,0.00,1.00,115.20,57.60,0
+163.20,57.60,11.24,0.00,1.00,120.00,52.80,0
+168.00,52.80,11.31,0.00,1.00,124.80,48.00,0
+168.00,48.00,11.37,0.00,1.00,129.60,43.20,0
+168.00,43.20,11.44,0.00,1.00,134.40,38.40,0
+172.80,38.40,11.50,0.00,1.00,139.20,33.60,0
+172.80,33.60,11.57,0.00,1.00,144.00,28.80,0
+172.80,28.80,11.63,0.00,1.00,148.80,24.00,0
+177.60,24.00,11.69,0.00,1.00,153.60,19.20,0
+177.60,19.20,11.76,0.00,1.00,158.40,14.40,0
+177.60,14.40,11.82,0.00,1.00,163.20,9.60,0
+177.60,9.60,11.89,0.00,1.00,168.00,4.80,0
+177.60,4.80,11.95,0.00,1.00,172.80,0.00,0
+177.60,0.00,12.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,12.08,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,12.14,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,12.21,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,12.27,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,12.34,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,12.40,0.00,1.00,-153.60,-28.80,0
+-172.80,-28.80,12.47,0.00,1.00,-148.80,-33.60,0
+-172.80,-33.60,12.53,0.00,1.00,-144.00,-38.40,0
+-172.80,-38.40,12.59,0.00,1.00,-139.20,-43.20,0
+-168.00,-43.20,12.66,0.00,1.00,-134.40,-48.00,0
+-168.00,-48.00,12.72,0.00,1.00,-129.60,-52.80,0
+-168.00,-52.80,12.79,0.00,1.00,-124.80,-57.60,0
+-163.20,-57.60,12.85,0.00,1.00,-120.00,-62.40,0
+-158.40,-62.40,12.92,0.00,1.00,-115.20,-67.20,0
+-153.60,-67.20,12.98,0.00,1.00,-110.40,-72.00,0
+-148.80,-72.00,13.04,0.00,1.00,-105.60,-76.80,0
+-139.20,-76.80,13.11,0.00,1.00,-100.80,-81.60,0
+-120.00,-76.80,13.17,0.00,1.00,-96.00,-81.60,0
+-96.00,-81.60,13.24,0.00,1.00,-91.20,-81.60,0
+-67.20,-81.60,13.30,0.00,1.00,-86.40,-76.80,0
+-48.00,-76.80,13.37,0.00,1.00,-81.60,-72.00,0
+-33.60,-72.00,13.43,0.00,1.00,-76.80,-72.00,0
+-28.80,-72.00,13.49,0.00,1.00,-72.00,-67.20,0
+-24.00,-67.20,13.56,0.00,1.00,-67.20,-62.40,0
+-19.20,-62.40,13.62,0.00,1.00,-62.40,-57.60,0
+-14.40,-57.60,13.69,0.00,1.00,-57.60,-52.80,0
+-14.40,-52.80,13.75,0.00,1.00,-52.80,-48.00,0
+-9.60,-48.00,13.82,0.00,1.00,-48.00,-43.20,0
+-9.60,-43.20,13.88,0.00,1.00,-43.20,-38.40,0
+-9.60,-38.40,13.94,0.00,1.00,-38.40,-33.60,0
+-4.80,-33.60,14.01,0.00,1.00,-33.60,-28.80,0
+-4.80,-28.80,14.07,0.00,1.00,-28.80,-24.00,0
+-4.80,-24.00,14.14,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,14.20,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,14.27,0.00,1.00,-14.40,-9.60,0
+-0.00,-9.60,14.33,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,14.39,0.00,1.00,-4.80,0.00,0
+0.00,0.00,14.46,0.00,1.00,0.00,4.80,0
+0.00,4.80,14.52,0.00,1.00,4.80,9.60,0
+4.80,9.60,14.59,0.00,1.00,9.60,14.40,0
+4.80,14.40,14.65,0.00,1.00,14.40,19.20,0
+4.80,19.20,14.71,0.00,1.00,19.20,24.00,0
+4.80,24.00,14.78,0.00,1.00,24.00,28.80,0
+9.60,28.80,14.84,0.00,1.00,28.80,33.60,0
+9.60,33.60,14.91,0.00,1.00,33.60,38.40,0
+9.60,38.40,14.97,0.00,1.00,38.40,43.20,0
+14.40,43.20,15.04,0.00,1.00,43.20,48.00,0
+14.40,48.00,15.10,0.00,1.00,48.00,52.80,0
+19.20,52.80,15.16,0.00,1.00,52.80,57.60,0
+19.20,52.80,15.23,0.00,1.00,57.60,57.60,0
+24.00,57.60,15.29,0.00,1.00,62.40,62.40,0
+28.80,62.40,15.36,0.00,1.00,67.20,67.20,0
+38.40,67.20,15.42,0.00,1.00,72.00,72.00,0
+48.00,72.00,15.49,0.00,1.00,76.80,72.00,0
+57.60,72.00,15.55,0.00,1.00,81.60,76.80,0
+76.80,76.80,15.61,0.00,1.00,86.40,76.80,0
+96.00,76.80,15.68,0.00,1.00,91.20,76.80,0
+115.20,76.80,15.74,0.00,1.00,96.00,72.00,0
+129.60,72.00,15.81,0.00,1.00,100.80,72.00,0
+139.20,67.20,15.87,0.00,1.00,105.60,67.20,0
+144.00,67.20,15.94,0.00,1.00,110.40,62.40,0
+153.60,62.40,16.00,0.00,1.00,115.20,57.60,0
+158.40,57.60,16.00,0.00,1.00,120.00,52.80,0
+158.40,52.80,15.94,0.00,1.00,124.80,48.00,0
+163.20,48.00,15.87,0.00,1.00,129.60,43.20,0
+168.00,43.20,15.81,0.00,1.00,134.40,38.40,0
+168.00,38.40,15.74,0.00,1.00,139.20,33.60,0
+168.00,33.60,15.68,0.00,1.00,144.00,28.80,0
+172.80,28.80,15.61,0.00,1.00,148.80,24.00,0
+172.80,24.00,15.55,0.00,1.00,153.60,19.20,0
+172.80,19.20,15.49,0.00,1.00,158.40,14.40,0
+177.60,14.40,15.42,0.00,1.00,163.20,9.60,0
+177.60,9.60,15.36,0.00,1.00,168.00,4.80,0
+177.60,4.80,15.29,0.00,1.00,172.80,0.00,0
+177.60,0.00,15.23,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,15.16,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,15.10,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,15.04,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,14.97,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,14.91,0.00,1.00,-158.40,-24.00,0
+-172.80,-24.00,14.84,0.00,1.00,-153.60,-28.80,0
+-172.80,-28.80,14.78,0.00,1.00,-148.80,-33.60,0
+-168.00,-33.60,14.71,0.00,1.00,-144.00,-38.40,0
+-168.00,-38.40,14.65,0.00,1.00,-139.20,-43.20,0
+-168.00,-43.20,14.59,0.00,1.00,-134.40,-48.00,0
+-163.20,-48.00,14.52,0.00,1.00,-129.60,-52.80,0
+-158.40,-52.80,14.46,0.00,1.00,-124.80,-57.60,0
+-158.40,-57.60,14.39,0.00,1.00,-120.00,-62.40,0
+-153.60,-62.40,14.33,0.00,1.00,-115.20,-67.20,0
+-144.00,-67.20,14.27,0.00,1.00,-110.40,-72.00,0
+-139.20,-67.20,14.20,0.00,1.00,-105.60,-72.00,0
+-129.60,-72.00,14.14,0.00,1.00,-100.80,-76.80,0
+-115.20,-76.80,14.07,0.00,1.00,-96.00,-76.80,0
+-96.00,-76.80,14.01,0.00,1.00,-91.20,-76.80,0
+-76.80,-76.80,13.94,0.00,1.00,-86.40,-72.00,0
+-57.60,-72.00,13.88,0.00,1.00,-81.60,-72.00,0
+-48.00,-72.00,13.82,0.00,1.00,-76.80,-67.20,0
+-38.40,-67.20,13.75,0.00,1.00,-72.00,-62.40,0
+-28.80,-62.40,13.69,0.00,1.00,-67.20,-57.60,0
+-24.00,-57.60,13.62,0.00,1.00,-62.40,-57.60,0
+-19.20,-52.80,13.56,0.00,1.00,-57.60,-52.80,0
+-19.20,-52.80,13.49,0.00,1.00,-52.80,-48.00,0
+-14.40,-48.00,13.43,0.00,1.00,-48.00,-43.20,0
+-14.40,-43.20,13.37,0.00,1.00,-43.20,-38.40,0
+-9.60,-38.40,13.30,0.00,1.00,-38.40,-33.60,0
+-9.60,-33.60,13.24,0.00,1.00,-33.60,-28.80,0
+-9.60,-28.80,13.17,0.00,1.00,-28.80,-24.00,0
+-4.80,-24.00,13.11,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,13.04,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,12.98,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,12.92,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,12.85,0.00,1.00,-4.80,0.00,0
+0.00,0.00,12.79,0.00,1.00,0.00,4.80,0
+0.00,4.80,12.72,0.00,1.00,4.80,9.60,0
+4.80,9.60,12.66,0.00,1.00,9.60,14.40,0
+4.80,14.40,12.59,0.00,1.00,14.40,19.20,0
+4.80,19.20,12.53,0.00,1.00,19.20,24.00,0
+9.60,24.00,12.47,0.00,1.00,24.00,28.80,0
+9.60,28.80,12.40,0.00,1.00,28.80,33.60,0
+14.40,33.60,12.34,0.00,1.00,33.60,38.40,0
+14.40,33.60,12.27,0.00,1.00,38.40,38.40,0
+19.20,38.40,12.21,0.00,1.00,43.20,43.20,0
+19.20,43.20,12.14,0.00,1.00,48.00,48.00,0
+24.00,48.00,12.08,0.00,1.00,52.80,52.80,0
+28.80,52.80,12.02,0.00,1.00,57.60,57.60,0
+33.60,57.60,11.95,0.00,1.00,62.40,62.40,0
+38.40,62.40,11.89,0.00,1.00,67.20,62.40,0
+43.20,62.40,11.82,0.00,1.00,72.00,67.20,0
+52.80,67.20,11.76,0.00,1.00,76.80,72.00,0
+67.20,67.20,11.69,0.00,1.00,81.60,72.00,0
+76.80,72.00,11.63,0.00,1.00,86.40,72.00,0
+96.00,72.00,11.57,0.00,1.00,91.20,72.00,0
+105.60,72.00,11.50,0.00,1.00,96.00,67.20,0
+120.00,67.20,11.44,0.00,1.00,100.80,67.20,0
+129.60,67.20,11.37,0.00,1.00,105.60,62.40,0
+139.20,62.40,11.31,0.00,1.00,110.40,57.60,0
+144.00,57.60,11.24,0.00,1.00,115.20,57.60,0
+148.80,52.80,11.18,0.00,1.00,120.00,52.80,0
+153.60,52.80,11.12,0.00,1.00,124.80,48.00,0
+158.40,48.00,11.05,0.00,1.00,129.60,43.20,0
+163.20,43.20,10.99,0.00,1.00,134.40,38.40,0
+163.20,38.40,10.92,0.00,1.00,139.20,33.60,0
+168.00,33.60,10.86,0.00,1.00,144.00,28.80,0
+168.00,28.80,10.80,0.00,1.00,148.80,24.00,0
+172.80,24.00,10.73,0.00,1.00,153.60,19.20,0
+172.80,19.20,10.67,0.00,1.00,158.40,14.40,0
+172.80,14.40,10.60,0.00,1.00,163.20,9.60,0
+177.60,9.60,10.54,0.00,1.00,168.00,4.80,0
+177.60,4.80,10.47,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.35,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,10.28,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,10.22,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,10.15,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,10.09,0.00,1.00,-158.40,-24.00,0
+-172.80,-24.00,10.02,0.00,1.00,-153.60,-28.80,0
+-168.00,-28.80,9.96,0.00,1.00,-148.80,-33.60,0
+-168.00,-33.60,9.90,0.00,1.00,-144.00,-38.40,0
+-163.20,-38.40,9.83,0.00,1.00,-139.20,-43.20,0
+-163.20,-43.20,9.77,0.00,1.00,-134.40,-48.00,0
+-158.40,-48.00,9.70,0.00,1.00,-129.60,-52.80,0
+-153.60,-52.80,9.64,0.00,1.00,-124.80,-57.60,0
+-148.80,-52.80,9.57,0.00,1.00,-120.00,-57.60,0
+-144.00,-57.60,9.51,0.00,1.00,-115.20,-62.40,0
+-139.20,-62.40,9.45,0.00,1.00,-110.40,-67.20,0
+-129.60,-67.20,9.38,0.00,1.00,-105.60,-67.20,0
+-120.00,-67.20,9.32,0.00,1.00,-100.80,-72.00,0
+-105.60,-72.00,9.25,0.00,1.00,-96.00,-72.00,0
+-96.00,-72.00,9.19,0.00,1.00,-91.20,-72.00,0
+-76.80,-72.00,9.12,0.00,1.00,-86.40,-72.00,0
+-67.20,-67.20,9.06,0.00,1.00,-81.60,-67.20,0
+-52.80,-67.20,9.00,0.00,1.00,-76.80,-62.40,0
+-43.20,-62.40,8.93,0.00,1.00,-72.00,-62.40,0
+-38.40,-62.40,8.87,0.00,1.00,-67.20,-57.60,0
+-33.60,-57.60,8.80,0.00,1.00,-62.40,-52.80,0
+-28.80,-52.80,8.74,0.00,1.00,-57.60,-48.00,0
+-24.00,-48.00,8.67,0.00,1.00,-52.80,-43.20,0
+-19.20,-43.20,8.61,0.00,1.00,-48.00,-38.40,0
+-19.20,-38.40,8.55,0.00,1.00,-43.20,-38.40,0
+-14.40,-33.60,8.48,0.00,1.00,-38.40,-33.60,0
+-14.40,-33.60,8.42,0.00,1.00,-33.60,-28.80,0
+-9.60,-28.80,8.35,0.00,1.00,-28.80,-24.00,0
+-9.60,-24.00,8.29,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,8.22,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,8.16,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,8.10,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,8.03,0.00,1.00,-4.80,0.00,0
+0.00,0.00,7.97,0.00,1.00,0.00,4.80,0
+0.00,4.80,7.90,0.00,1.00,4.80,9.60,0
+4.80,9.60,7.84,0.00,1.00,9.60,14.40,0
+4.80,14.40,7.78,0.00,1.00,14.40,19.20,0
+9.60,19.20,7.71,0.00,1.00,19.20,24.00,0
+9.60,24.00,7.65,0.00,1.00,24.00,24.00,0
+14.40,24.00,7.58,0.00,1.00,28.80,28.80,0
+14.40,28.80,7.52,0.00,1.00,33.60,33.60,0
+19.20,33.60,7.45,0.00,1.00,33.60,38.40,0
+19.20,38.40,7.39,0.00,1.00,38.40,43.20,0
+24.00,43.20,7.33,0.00,1.00,43.20,48.00,0
+28.80,48.00,7.26,0.00,1.00,48.00,52.80,0
+33.60,52.80,7.20,0.00,1.00,57.60,52.80,0
+38.40,52.80,7.13,0.00,1.00,62.40,57.60,0
+43.20,57.60,7.07,0.00,1.00,67.20,62.40,0
+52.80,62.40,7.00,0.00,1.00,72.00,62.40,0
+62.40,62.40,6.94,0.00,1.00,76.80,67.20,0
+72.00,62.40,6.88,0.00,1.00,81.60,67.20,0
+81.60,67.20,6.81,0.00,1.00,86.40,67.20,0
+91.20,67.20,6.75,0.00,1.00,91.20,67.20,0
+105.60,67.20,6.68,0.00,1.00,96.00,67.20,0
+115.20,62.40,6.62,0.00,1.00,100.80,62.40,0
+124.80,62.40,6.55,0.00,1.00,105.60,57.60,0
+134.40,57.60,6.49,0.00,1.00,110.40,57.60,0
+139.20,57.60,6.43,0.00,1.00,115.20,52.80,0
+144.00,52.80,6.36,0.00,1.00,120.00,48.00,0
+148.80,48.00,6.30,0.00,1.00,129.60,43.20,0
+153.60,43.20,6.23,0.00,1.00,134.40,43.20,0
+158.40,38.40,6.17,0.00,1.00,139.20,38.40,0
+158.40,38.40,6.10,0.00,1.00,144.00,33.60,0
+163.20,33.60,6.04,0.00,1.00,148.80,28.80,0
+168.00,28.80,5.98,0.00,1.00,148.80,24.00,0
+168.00,24.00,5.91,0.00,1.00,153.60,19.20,0
+172.80,19.20,5.85,0.00,1.00,158.40,14.40,0
+172.80,14.40,5.78,0.00,1.00,163.20,9.60,0
+172.80,9.60,5.72,0.00,1.00,168.00,4.80,0
+177.60,4.80,5.65,0.00,1.00,172.80,0.00,0
+177.60,0.00,5.59,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.53,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,5.46,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,5.40,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,5.33,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,5.27,0.00,1.00,-158.40,-24.00,0
+-168.00,-24.00,5.20,0.00,1.00,-153.60,-28.80,0
+-168.00,-28.80,5.14,0.00,1.00,-148.80,-33.60,0
+-163.20,-33.60,5.08,0.00,1.00,-148.80,-38.40,0
+-158.40,-38.40,5.01,0.00,1.00,-144.00,-43.20,0
+-158.40,-38.40,4.95,0.00,1.00,-139.20,-43.20,0
+-153.60,-43.20,4.88,0.00,1.00,-134.40,-48.00,0
+-148.80,-48.00,4.82,0.00,1.00,-129.60,-52.80,0
+-144.00,-52.80,4.76,0.00,1.00,-120.00,-57.60,0
+-139.20,-57.60,4.69,0.00,1.00,-115.20,-57.60,0
+-134.40,-57.60,4.63,0.00,1.00,-110.40,-62.40,0
+-124.80,-62.40,4.56,0.00,1.00,-105.60,-67.20,0
+-115.20,-62.40,4.50,0.00,1.00,-100.80,-67.20,0
+-105.60,-67.20,4.43,0.00,1.00,-96.00,-67.20,0
+-91.20,-67.20,4.37,0.00,1.00,-91.20,-67.20,0
+-81.60,-67.20,4.31,0.00,1.00,-86.40,-67.20,0
+-72.00,-62.40,4.24,0.00,1.00,-81.60,-62.40,0
+-62.40,-62.40,4.18,0.00,1.00,-76.80,-62.40,0
+-52.80,-62.40,4.11,0.00,1.00,-72.00,-57.60,0
+-43.20,-57.60,4.05,0.00,1.00,-67.20,-52.80,0
+-38.40,-52.80,3.98,0.00,1.00,-62.40,-52.80,0
+-33.60,-52.80,3.92,0.00,1.00,-57.60,-48.00,0
+-28.80,-48.00,3.86,0.00,1.00,-48.00,-43.20,0
+-24.00,-43.20,3.79,0.00,1.00,-43.20,-38.40,0
+-19.20,-38.40,3.73,0.00,1.00,-38.40,-33.60,0
+-19.20,-33.60,3.66,0.00,1.00,-33.60,-28.80,0
+-14.40,-28.80,3.60,0.00,1.00,-33.60,-24.00,0
+-14.40,-24.00,3.53,0.00,1.00,-28.80,-24.00,0
+-9.60,-24.00,3.47,0.00,1.00,-24.00,-19.20,0
+-9.60,-19.20,3.41,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,3.34,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,3.28,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,3.21,0.00,1.00,-4.80,0.00,0
+0.00,0.00,3.15,0.00,1.00,0.00,4.80,0
+0.00,4.80,3.08,0.00,1.00,4.80,9.60,0
+4.80,9.60,3.02,0.00,1.00,9.60,14.40,0
+4.80,14.40,2.96,0.00,1.00,14.40,19.20,0
+9.60,14.40,2.89,0.00,1.00,19.20,19.20,0
+14.40,19.20,2.83,0.00,1.00,19.20,24.00,0
+14.40,24.00,2.76,0.00,1.00,24.00,28.80,0
+19.20,28.80,2.70,0.00,1.00,28.80,33.60,0
+19.20,33.60,2.63,0.00,1.00,33.60,38.40,0
+24.00,38.40,2.57,0.00,1.00,38.40,43.20,0
+28.80,38.40,2.51,0.00,1.00,43.20,43.20,0
+33.60,43.20,2.44,0.00,1.00,48.00,48.00,0
+38.40,48.00,2.38,0.00,1.00,52.80,52.80,0
+43.20,52.80,2.31,0.00,1.00,57.60,52.80,0
+48.00,52.80,2.25,0.00,1.00,62.40,57.60,0
+57.60,57.60,2.18,0.00,1.00,72.00,57.60,0
+62.40,57.60,2.12,0.00,1.00,76.80,62.40,0
+72.00,62.40,2.06,0.00,1.00,81.60,62.40,0
+81.60,62.40,1.99,0.00,1.00,86.40,62.40,0
+91.20,62.40,1.93,0.00,1.00,91.20,62.40,0
+100.80,62.40,1.86,0.00,1.00,96.00,62.40,0
+110.40,57.60,1.80,0.00,1.00,100.80,57.60,0
+120.00,57.60,1.73,0.00,1.00,105.60,57.60,0
+129.60,57.60,1.67,0.00,1.00,115.20,52.80,0
+134.40,52.80,1.61,0.00,1.00,120.00,48.00,0
+139.20,48.00,1.54,0.00,1.00,124.80,48.00,0
+144.00,48.00,1.48,0.00,1.00,129.60,43.20,0
+148.80,43.20,1.41,0.00,1.00,134.40,38.40,0
+153.60,38.40,1.35,0.00,1.00,139.20,33.60,0
+158.40,33.60,1.29,0.00,1.00,144.00,33.60,0
+158.40,28.80,1.22,0.00,1.00,148.80,28.80,0
+163.20,28.80,1.16,0.00,1.00,153.60,24.00,0
+168.00,24.00,1.09,0.00,1.00,158.40,19.20,0
+168.00,19.20,1.03,0.00,1.00,163.20,14.40,0
+172.80,14.40,0.96,0.00,1.00,163.20,9.60,0
+172.80,9.60,0.90,0.00,1.00,168.00,4.80,0
+177.60,4.80,0.84,0.00,1.00,172.80,0.00,0
+177.60,0.00,0.77,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,0.71,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,0.64,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,0.58,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,0.51,0.00,1.00,-163.20,-19.20,0
+-168.00,-19.20,0.45,0.00,1.00,-163.20,-24.00,0
+-168.00,-24.00,0.39,0.00,1.00,-158.40,-28.80,0
+-163.20,-28.80,0.32,0.00,1.00,-153.60,-33.60,0
+-158.40,-28.80,0.26,0.00,1.00,-148.80,-33.60,0
+-158.40,-33.60,0.19,0.00,1.00,-144.00,-38.40,0
+-153.60,-38.40,0.13,0.00,1.00,-139.20,-43.20,0
+-148.80,-43.20,0.06,0.00,1.00,-134.40,-48.00,0
+-144.00,-48.00,0.00,0.00,1.00,-129.60,-48.00,0
+-139.20,-48.00,0.00,0.00,1.00,-124.80,-52.80,0
+-134.40,-52.80,0.16,0.00,1.00,-120.00,-57.60,0
+-129.60,-57.60,0.32,0.00,1.00,-115.20,-57.60,0
+-120.00,-57.60,0.48,0.00,1.00,-105.60,-62.40,0
+-110.40,-57.60,0.65,0.00,1.00,-100.80,-62.40,0
+-100.80,-62.40,0.81,0.00,1.00,-96.00,-62.40,0
+-91.20,-62.40,0.97,0.00,1.00,-91.20,-62.40,0
+-81.60,-62.40,1.13,0.00,1.00,-86.40,-62.40,0
+-72.00,-62.40,1.29,0.00,1.00,-81.60,-57.60,0
+-62.40,-57.60,1.45,0.00,1.00,-76.80,-57.60,0
+-57.60,-57.60,1.62,0.00,1.00,-72.00,-52.80,0
+-48.00,-52.80,1.78,0.00,1.00,-62.40,-52.80,0
+-43.20,-52.80,1.94,0.00,1.00,-57.60,-48.00,0
+-38.40,-48.00,2.10,0.00,1.00,-52.80,-43.20,0
+-33.60,-43.20,2.26,0.00,1.00,-48.00,-43.20,0
+-28.80,-38.40,2.42,0.00,1.00,-43.20,-38.40,0
+-24.00,-38.40,2.59,0.00,1.00,-38.40,-33.60,0
+-19.20,-33.60,2.75,0.00,1.00,-33.60,-28.80,0
+-19.20,-28.80,2.91,0.00,1.00,-28.80,-24.00,0
+-14.40,-24.00,3.07,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,3.23,0.00,1.00,-19.20,-19.20,0
+-9.60,-14.40,3.39,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,3.56,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,3.72,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,3.88,0.00,1.00,-4.80,0.00,0
+0.00,0.00,4.04,0.00,1.00,0.00,4.80,0
+4.80,4.80,4.20,0.00,1.00,4.80,9.60,0
+4.80,9.60,4.36,0.00,1.00,9.60,14.40,0
+9.60,9.60,4.53,0.00,1.00,14.40,14.40,0
+9.60,14.40,4.69,0.00,1.00,14.40,19.20,0
+14.40,19.20,4.85,0.00,1.00,19.20,24.00,0
+19.20,24.00,5.01,0.00,1.00,24.00,28.80,0
+19.20,28.80,5.17,0.00,1.00,28.80,33.60,0
+24.00,28.80,5.33,0.00,1.00,33.60,33.60,0
+28.80,33.60,5.49,0.00,1.00,38.40,38.40,0
+33.60,38.40,5.66,0.00,1.00,43.20,43.20,0
+38.40,43.20,5.82,0.00,1.00,48.00,43.20,0
+43.20,43.20,5.98,0.00,1.00,52.80,48.00,0
+48.00,48.00,6.14,0.00,1.00,57.60,52.80,0
+52.80,48.00,6.30,0.00,1.00,62.40,52.80,0
+57.60,52.80,6.46,0.00,1.00,67.20,57.60,0
+67.20,52.80,6.63,0.00,1.00,72.00,57.60,0
+76.80,57.60,6.79,0.00,1.00,81.60,57.60,0
+81.60,57.60,6.95,0.00,1.00,86.40,57.60,0
+91.20,57.60,7.11,0.00,1.00,91.20,57.60,0
+100.80,57.60,7.27,0.00,1.00,96.00,57.60,0
+110.40,52.80,7.43,0.00,1.00,100.80,52.80,0
+115.20,52.80,7.60,0.00,1.00,110.40,52.80,0
+124.80,52.80,7.76,0.00,1.00,115.20,48.00,0
+129.60,48.00,7.92,0.00,1.00,120.00,48.00,0
+134.40,48.00,8.08,0.00,1.00,124.80,43.20,0
+139.20,43.20,8.24,0.00,1.00,129.60,38.40,0
+144.00,38.40,8.40,0.00,1.00,134.40,38.40,0
+148.80,38.40,8.57,0.00,1.00,139.20,33.60,0
+153.60,33.60,8.73,0.00,1.00,144.00,28.80,0
+158.40,28.80,8.89,0.00,1.00,148.80,24.00,0
+163.20,24.00,9.05,0.00,1.00,153.60,24.00,0
+163.20,24.00,9.21,0.00,1.00,158.40,19.20,0
+168.00,19.20,9.37,0.00,1.00,163.20,14.40,0
+172.80,14.40,9.54,0.00,1.00,168.00,9.60,0
+172.80,9.60,9.70,0.00,1.00,168.00,4.80,0
+177.60,4.80,9.86,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.18,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,10.34,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,10.51,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,10.67,0.00,1.00,-168.00,-19.20,0
+-168.00,-19.20,10.83,0.00,1.00,-163.20,-24.00,0
+-163.20,-24.00,10.99,0.00,1.00,-158.40,-24.00,0
+-163.20,-24.00,11.15,0.00,1.00,-153.60,-28.80,0
+-158.40,-28.80,11.31,0.00,1.00,-148.80,-33.60,0
+-153.60,-33.60,11.47,0.00,1.00,-144.00,-38.40,0
+-148.80,-38.40,11.64,0.00,1.00,-139.20,-38.40,0
+-144.00,-38.40,11.80,0.00,1.00,-134.40,-43.20,0
+-139.20,-43.20,11.96,0.00,1.00,-129.60,-48.00,0
+-134.40,-48.00,12.12,0.00,1.00,-124.80,-48.00,0
+-129.60,-48.00,12.28,0.00,1.00,-120.00,-52.80,0
+-124.80,-52.80,12.44,0.00,1.00,-115.20,-52.80,0
+-115.20,-52.80,12.61,0.00,1.00,-110.40,-57.60,0
+-110.40,-52.80,12.77,0.00,1.00,-100.80,-57.60,0
+-100.80,-57.60,12.93,0.00,1.00,-96.00,-57.60,0
+-91.20,-57.60,13.09,0.00,1.00,-91.20,-57.60,0
+-81.60,-57.60,13.25,0.00,1.00,-86.40,-57.60,0
+-76.80,-57.60,13.41,0.00,1.00,-81.60,-57.60,0
+-67.20,-52.80,13.58,0.00,1.00,-72.00,-52.80,0
+-57.60,-52.80,13.74,0.00,1.00,-67.20,-52.80,0
+-52.80,-48.00,13.90,0.00,1.00,-62.40,-48.00,0
+-48.00,-48.00,14.06,0.00,1.00,-57.60,-43.20,0
+-43.20,-43.20,14.22,0.00,1.00,-52.80,-43.20,0
+-38.40,-43.20,14.38,0.00,1.00,-48.00,-38.40,0
+-33.60,-38.40,14.55,0.00,1.00,-43.20,-33.60,0
+-28.80,-33.60,14.71,0.00,1.00,-38.40,-33.60,0
+-24.00,-28.80,14.87,0.00,1.00,-33.60,-28.80,0
+-19.20,-28.80,15.03,0.00,1.00,-28.80,-24.00,0
+-19.20,-24.00,15.19,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,15.35,0.00,1.00,-19.20,-14.40,0
+-9.60,-14.40,15.52,0.00,1.00,-14.40,-14.40,0
+-9.60,-9.60,15.68,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,15.84,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,16.00,0.00,1.00,-4.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,0.00,4.80,0
+4.80,4.80,15.84,0.00,1.00,4.80,9.60,0
+4.80,9.60,15.68,0.00,1.00,9.60,9.60,0
+9.60,9.60,15.52,0.00,1.00,9.60,14.40,0
+14.40,14.40,15.35,0.00,1.00,14.40,19.20,0
+14.40,19.20,15.19,0.00,1.00,19.20,24.00,0
+19.20,24.00,15.03,0.00,1.00,24.00,24.00,0
+24.00,24.00,14.87,0.00,1.00,28.80,28.80,0
+24.00,28.80,14.71,0.00,1.00,33.60,33.60,0
+28.80,33.60,14.55,0.00,1.00,38.40,38.40,0
+33.60,33.60,14.38,0.00,1.00,43.20,38.40,0
+38.40,38.40,14.22,0.00,1.00,48.00,43.20,0
+43.20,43.20,14.06,0.00,1.00,52.80,43.20,0
+48.00,43.20,13.90,0.00,1.00,57.60,48.00,0
+57.60,48.00,13.74,0.00,1.00,62.40,48.00,0
+62.40,48.00,13.58,0.00,1.00,67.20,52.80,0
+67.20,48.00,13.41,0.00,1.00,72.00,52.80,0
+76.80,52.80,13.25,0.00,1.00,81.60,52.80,0
+86.40,52.80,13.09,0.00,1.00,86.40,52.80,0
+91.20,52.80,12.93,0.00,1.00,91.20,52.80,0
+100.80,52.80,12.77,0.00,1.00,96.00,52.80,0
+105.60,48.00,12.61,0.00,1.00,105.60,48.00,0
+115.20,48.00,12.44,0.00,1.00,110.40,48.00,0
+120.00,48.00,12.28,0.00,1.00,115.20,48.00,0
+124.80,43.20,12.12,0.00,1.00,120.00,43.20,0
+134.40,43.20,11.96,0.00,1.00,124.80,43.20,0
+139.20,38.40,11.80,0.00,1.00,129.60,38.40,0
+144.00,38.40,11.64,0.00,1.00,134.40,33.60,0
+148.80,33.60,11.47,0.00,1.00,139.20,33.60,0
+153.60,28.80,11.31,0.00,1.00,144.00,28.80,0
+153.60,28.80,11.15,0.00,1.00,148.80,24.00,0
+158.40,24.00,10.99,0.00,1.00,153.60,19.20,0
+163.20,19.20,10.83,0.00,1.00,158.40,19.20,0
+168.00,14.40,10.67,0.00,1.00,163.20,14.40,0
+168.00,14.40,10.51,0.00,1.00,168.00,9.60,0
+172.80,9.60,10.34,0.00,1.00,172.80,4.80,0
+177.60,4.80,10.18,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,9.86,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,9.70,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,9.54,0.00,1.00,-172.80,-14.40,0
+-168.00,-14.40,9.37,0.00,1.00,-168.00,-19.20,0
+-168.00,-14.40,9.21,0.00,1.00,-163.20,-19.20,0
+-163.20,-19.20,9.05,0.00,1.00,-158.40,-24.00,0
+-158.40,-24.00,8.89,0.00,1.00,-153.60,-28.80,0
+-153.60,-28.80,8.73,0.00,1.00,-148.80,-33.60,0
+-153.60,-28.80,8.57,0.00,1.00,-144.00,-33.60,0
+-148.80,-33.60,8.40,0.00,1.00,-139.20,-38.40,0
+-144.00,-38.40,8.24,0.00,1.00,-134.40,-43.20,0
+-139.20,-38.40,8.08,0.00,1.00,-129.60,-43.20,0
+-134.40,-43.20,7.92,0.00,1.00,-124.80,-48.00,0
+-124.80,-43.20,7.76,0.00,1.00,-120.00,-48.00,0
+-120.00,-48.00,7.60,0.00,1.00,-115.20,-48.00,0
+-115.20,-48.00,7.43,0.00,1.00,-110.40,-52.80,0
+-105.60,-48.00,7.27,0.00,1.00,-105.60,-52.80,0
+-100.80,-52.80,7.11,0.00,1.00,-96.00,-52.80,0
+-91.20,-52.80,6.95,0.00,1.00,-91.20,-52.80,0
+-86.40,-52.80,6.79,0.00,1.00,-86.40,-52.80,0
+-76.80,-52.80,6.63,0.00,1.00,-81.60,-52.80,0
+-67.20,-48.00,6.46,0.00,1.00,-72.00,-48.00,0
+-62.40,-48.00,6.30,0.00,1.00,-67.20,-48.00,0
+-57.60,-48.00,6.14,0.00,1.00,-62.40,-43.20,0
+-48.00,-43.20,5.98,0.00,1.00,-57.60,-43.20,0
+-43.20,-43.20,5.82,0.00,1.00,-52.80,-38.40,0
+-38.40,-38.40,5.66,0.00,1.00,-48.00,-38.40,0
+-33.60,-33.60,5.49,0.00,1.00,-43.20,-33.60,0
+-28.80,-33.60,5.33,0.00,1.00,-38.40,-28.80,0
+-24.00,-28.80,5.17,0.00,1.00,-33.60,-24.00,0
+-24.00,-24.00,5.01,0.00,1.00,-28.80,-24.00,0
+-19.20,-24.00,4.85,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,4.69,0.00,1.00,-19.20,-14.40,0
+-14.40,-14.40,4.53,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,4.36,0.00,1.00,-9.60,-9.60,0
+-4.80,-9.60,4.20,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,4.04,0.00,1.00,-4.80,0.00,0
+0.00,0.00,3.88,0.00,1.00,0.00,4.80,0
+4.80,4.80,3.72,0.00,1.00,4.80,4.80,0
+4.80,4.80,3.56,0.00,1.00,4.80,9.60,0
+9.60,9.60,3.39,0.00,1.00,9.60,14.40,0
+14.40,14.40,3.23,0.00,1.00,14.40,19.20,0
+19.20,19.20,3.07,0.00,1.00,19.20,19.20,0
+19.20,19.20,2.91,0.00,1.00,24.00,24.00,0
+24.00,24.00,2.75,0.00,1.00,24.00,28.80,0
+28.80,28.80,2.59,0.00,1.00,28.80,28.80,0
+33.60,28.80,2.42,0.00,1.00,33.60,33.60,0
+38.40,33.60,2.26,0.00,1.00,38.40,38.40,0
+43.20,33.60,2.10,0.00,1.00,43.20,38.40,0
+48.00,38.40,1.94,0.00,1.00,48.00,43.20,0
+52.80,38.40,1.78,0.00,1.00,52.80,43.20,0
+57.60,43.20,1.62,0.00,1.00,62.40,43.20,0
+62.40,43.20,1.45,0.00,1.00,67.20,48.00,0
+72.00,43.20,1.29,0.00,1.00,72.00,48.00,0
+76.80,48.00,1.13,0.00,1.00,76.80,48.00,0
+86.40,48.00,0.97,0.00,1.00,86.40,48.00,0
+91.20,48.00,0.81,0.00,1.00,91.20,48.00,0
+100.80,48.00,0.65,0.00,1.00,96.00,48.00,0
+105.60,48.00,0.48,0.00,1.00,105.60,48.00,0
+110.40,43.20,0.32,0.00,1.00,110.40,43.20,0
+120.00,43.20,0.16,0.00,1.00,115.20,43.20,0
+124.80,43.20,0.00,0.00,1.00,124.80,38.40,0
+129.60,38.40,0.00,0.00,1.00,129.60,38.40,0
+134.40,38.40,0.04,0.00,1.00,134.40,33.60,0
+139.20,33.60,0.08,0.00,1.00,139.20,33.60,0
+144.00,33.60,0.12,0.00,1.00,144.00,28.80,0
+148.80,28.80,0.16,0.00,1.00,148.80,24.00,0
+153.60,24.00,0.20,0.00,1.00,153.60,24.00,0
+158.40,24.00,0.24,0.00,1.00,158.40,19.20,0
+163.20,19.20,0.28,0.00,1.00,158.40,14.40,0
+163.20,14.40,0.32,0.00,1.00,163.20,14.40,0
+168.00,14.40,0.36,0.00,1.00,168.00,9.60,0
+172.80,9.60,0.40,0.00,1.00,172.80,4.80,0
+172.80,4.80,0.44,0.00,1.00,172.80,0.00,0
+177.60,0.00,0.48,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,0.52,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,0.56,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,0.60,0.00,1.00,-172.80,-14.40,0
+-168.00,-14.40,0.64,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,0.68,0.00,1.00,-163.20,-19.20,0
+-163.20,-19.20,0.72,0.00,1.00,-158.40,-24.00,0
+-158.40,-24.00,0.76,0.00,1.00,-158.40,-24.00,0
+-153.60,-24.00,0.80,0.00,1.00,-153.60,-28.80,0
+-148.80,-28.80,0.84,0.00,1.00,-148.80,-33.60,0
+-144.00,-33.60,0.88,0.00,1.00,-144.00,-33.60,0
+-139.20,-33.60,0.92,0.00,1.00,-139.20,-38.40,0
+-134.40,-38.40,0.96,0.00,1.00,-134.40,-38.40,0
+-129.60,-38.40,1.00,0.00,1.00,-129.60,-43.20,0
+-124.80,-43.20,1.04,0.00,1.00,-124.80,-43.20,0
+-120.00,-43.20,1.08,0.00,1.00,-115.20,-48.00,0
+-110.40,-43.20,1.12,0.00,1.00,-110.40,-48.00,0
+-105.60,-48.00,1.16,0.00,1.00,-105.60,-48.00,0
+-100.80,-48.00,1.20,0.00,1.00,-96.00,-48.00,0
+-91.20,-48.00,1.24,0.00,1.00,-91.20,-48.00,0
+-86.40,-48.00,1.28,0.00,1.00,-86.40,-48.00,0
+-76.80,-48.00,1.32,0.00,1.00,-76.80,-48.00,0
+-72.00,-43.20,1.36,0.00,1.00,-72.00,-43.20,0
+-62.40,-43.20,1.40,0.00,1.00,-67.20,-43.20,0
+-57.60,-43.20,1.44,0.00,1.00,-62.40,-43.20,0
+-52.80,-38.40,1.48,0.00,1.00,-52.80,-38.40,0
+-48.00,-38.40,1.52,0.00,1.00,-48.00,-38.40,0
+-43.20,-33.60,1.56,0.00,1.00,-43.20,-33.60,0
+-38.40,-33.60,1.60,0.00,1.00,-38.40,-28.80,0
+-33.60,-28.80,1.64,0.00,1.00,-33.60,-28.80,0
+-28.80,-28.80,1.68,0.00,1.00,-28.80,-24.00,0
+-24.00,-24.00,1.72,0.00,1.00,-24.00,-19.20,0
+-19.20,-19.20,1.76,0.00,1.00,-24.00,-19.20,0
+-19.20,-19.20,1.80,0.00,1.00,-19.20,-14.40,0
+-14.40,-14.40,1.84,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,1.88,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,1.92,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,1.96,0.00,1.00,-4.80,0.00,0
+0.00,0.00,2.01,0.00,1.00,0.00,4.80,0
+4.80,4.80,2.05,0.00,1.00,4.80,4.80,0
+4.80,4.80,2.09,0.00,1.00,4.80,9.60,0
+9.60,9.60,2.13,0.00,1.00,9.60,14.40,0
+14.40,14.40,2.17,0.00,1.00,14.40,14.40,0
+19.20,14.40,2.21,0.00,1.00,14.40,19.20,0
+24.00,19.20,2.25,0.00,1.00,19.20,24.00,0
+24.00,24.00,2.29,0.00,1.00,24.00,24.00,0
+28.80,24.00,2.33,0.00,1.00,28.80,28.80,0
+33.60,28.80,2.37,0.00,1.00,33.60,28.80,0
+38.40,28.80,2.41,0.00,1.00,38.40,33.60,0
+43.20,33.60,2.45,0.00,1.00,43.20,33.60,0
+48.00,33.60,2.49,0.00,1.00,48.00,38.40,0
+52.80,38.40,2.53,0.00,1.00,52.80,38.40,0
+62.40,38.40,2.57,0.00,1.00,57.60,38.40,0
+67.20,38.40,2.61,0.00,1.00,62.40,43.20,0
+72.00,38.40,2.65,0.00,1.00,72.00,43.20,0
+76.80,43.20,2.69,0.00,1.00,76.80,43.20,0
+86.40,43.20,2.73,0.00,1.00,86.40,43.20,0
+91.20,43.20,2.77,0.00,1.00,91.20,43.20,0
+96.00,43.20,2.81,0.00,1.00,100.80,43.20,0
+105.60,43.20,2.85,0.00,1.00,105.60,43.20,0
+110.40,38.40,2.89,0.00,1.00,110.40,38.40,0
+115.20,38.40,2.93,0.00,1.00,120.00,38.40,0
+120.00,38.40,2.97,0.00,1.00,124.80,38.40,0
+129.60,33.60,3.01,0.00,1.00,129.60,33.60,0
+134.40,33.60,3.05,0.00,1.00,134.40,33.60,0
+139.20,28.80,3.09,0.00,1.00,139.20,28.80,0
+144.00,28.80,3.13,0.00,1.00,144.00,28.80,0
+148.80,24.00,3.17,0.00,1.00,148.80,24.00,0
+153.60,24.00,3.21,0.00,1.00,153.60,19.20,0
+153.60,19.20,3.25,0.00,1.00,158.40,19.20,0
+158.40,19.20,3.29,0.00,1.00,163.20,14.40,0
+163.20,14.40,3.33,0.00,1.00,163.20,9.60,0
+168.00,9.60,3.37,0.00,1.00,168.00,9.60,0
+172.80,9.60,3.41,0.00,1.00,172.80,4.80,0
+172.80,4.80,3.45,0.00,1.00,172.80,0.00,0
+177.60,0.00,3.49,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.53,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,3.57,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,3.61,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,3.65,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,3.69,0.00,1.00,-163.20,-19.20,0
+-158.40,-19.20,3.73,0.00,1.00,-163.20,-19.20,0
+-153.60,-19.20,3.77,0.00,1.00,-158.40,-24.00,0
+-153.60,-24.00,3.81,0.00,1.00,-153.60,-28.80,0
+-148.80,-24.00,3.85,0.00,1.00,-148.80,-28.80,0
+-144.00,-28.80,3.89,0.00,1.00,-144.00,-33.60,0
+-139.20,-28.80,3.93,0.00,1.00,-139.20,-33.60,0
+-134.40,-33.60,3.97,0.00,1.00,-134.40,-38.40,0
+-129.60,-33.60,4.01,0.00,1.00,-129.60,-38.40,0
+-120.00,-38.40,4.05,0.00,1.00,-124.80,-38.40,0
+-115.20,-38.40,4.09,0.00,1.00,-120.00,-43.20,0
+-110.40,-38.40,4.13,0.00,1.00,-110.40,-43.20,0
+-105.60,-43.20,4.17,0.00,1.00,-105.60,-43.20,0
+-96.00,-43.20,4.21,0.00,1.00,-100.80,-43.20,0
+-91.20,-43.20,4.25,0.00,1.00,-91.20,-43.20,0
+-86.40,-43.20,4.29,0.00,1.00,-86.40,-43.20,0
+-76.80,-43.20,4.33,0.00,1.00,-76.80,-43.20,0
+-72.00,-38.40,4.37,0.00,1.00,-72.00,-38.40,0
+-67.20,-38.40,4.41,0.00,1.00,-62.40,-38.40,0
+-62.40,-38.40,4.45,0.00,1.00,-57.60,-38.40,0
+-52.80,-38.40,4.49,0.00,1.00,-52.80,-33.60,0
+-48.00,-33.60,4.53,0.00,1.00,-48.00,-33.60,0
+-43.20,-33.60,4.57,0.00,1.00,-43.20,-28.80,0
+-38.40,-28.80,4.61,0.00,1.00,-38.40,-28.80,0
+-33.60,-28.80,4.65,0.00,1.00,-33.60,-24.00,0
+-28.80,-24.00,4.69,0.00,1.00,-28.80,-24.00,0
+-24.00,-24.00,4.73,0.00,1.00,-24.00,-19.20,0
+-24.00,-19.20,4.77,0.00,1.00,-19.20,-14.40,0
+-19.20,-14.40,4.81,0.00,1.00,-14.40,-14.40,0
+-14.40,-14.40,4.85,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,4.89,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,4.93,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,4.97,0.00,1.00,-4.80,0.00,0
+0.00,0.00,5.01,0.00,1.00,0.00,4.80,0
+4.80,4.80,5.05,0.00,1.00,4.80,4.80,0
+9.60,4.80,5.09,0.00,1.00,4.80,9.60,0
+9.60,9.60,5.13,0.00,1.00,9.60,9.60,0
+14.40,9.60,5.17,0.00,1.00,9.60,14.40,0
+19.20,14.40,5.21,0.00,1.00,14.40,19.20,0
+24.00,19.20,5.25,0.00,1.00,19.20,19.20,0
+28.80,19.20,5.29,0.00,1.00,24.00,24.00,0
+33.60,24.00,5.33,0.00,1.00,24.00,24.00,0
+38.40,24.00,5.37,0.00,1.00,28.80,28.80,0
+43.20,28.80,5.41,0.00,1.00,33.60,28.80,0
+48.00,28.80,5.45,0.00,1.00,38.40,33.60,0
+52.80,28.80,5.49,0.00,1.00,43.20,33.60,0
+57.60,33.60,5.53,0.00,1.00,48.00,33.60,0
+62.40,33.60,5.57,0.00,1.00,52.80,38.40,0
+67.20,33.60,5.61,0.00,1.00,62.40,38.40,0
+72.00,38.40,5.65,0.00,1.00,67.20,38.40,0
+81.60,38.40,5.69,0.00,1.00,76.80,38.40,0
+86.40,38.40,5.73,0.00,1.00,86.40,38.40,0
+91.20,38.40,5.77,0.00,1.00,91.20,38.40,0
+96.00,38.40,5.81,0.00,1.00,100.80,38.40,0
+105.60,38.40,5.85,0.00,1.00,105.60,38.40,0
+110.40,33.60,5.89,0.00,1.00,115.20,33.60,0
+115.20,33.60,5.93,0.00,1.00,120.00,33.60,0
+120.00,33.60,5.97,0.00,1.00,129.60,33.60,0
+124.80,33.60,6.02,0.00,1.00,134.40,28.80,0
+129.60,28.80,6.06,0.00,1.00,139.20,28.80,0
+134.40,28.80,6.10,0.00,1.00,144.00,24.00,0
+139.20,24.00,6.14,0.00,1.00,148.80,24.00,0
+144.00,24.00,6.18,0.00,1.00,153.60,19.20,0
+148.80,19.20,6.22,0.00,1.00,158.40,19.20,0
+153.60,19.20,6.26,0.00,1.00,158.40,14.40,0
+158.40,14.40,6.30,0.00,1.00,163.20,14.40,0
+163.20,14.40,6.34,0.00,1.00,168.00,9.60,0
+168.00,9.60,6.38,0.00,1.00,168.00,9.60,0
+168.00,9.60,6.42,0.00,1.00,172.80,4.80,0
+172.80,4.80,6.46,0.00,1.00,177.60,0.00,0
+177.60,0.00,6.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.54,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,6.58,0.00,1.00,-177.60,-9.60,0
+-168.00,-9.60,6.62,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,6.66,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,6.70,0.00,1.00,-168.00,-14.40,0
+-158.40,-14.40,6.74,0.00,1.00,-163.20,-19.20,0
+-153.60,-19.20,6.78,0.00,1.00,-158.40,-19.20,0
+-148.80,-19.20,6.82,0.00,1.00,-158.40,-24.00,0
+-144.00,-24.00,6.86,0.00,1.00,-153.60,-24.00,0
+-139.20,-24.00,6.90,0.00,1.00,-148.80,-28.80,0
+-134.40,-28.80,6.94,0.00,1.00,-144.00,-28.80,0
+-129.60,-28.80,6.98,0.00,1.00,-139.20,-33.60,0
+-124.80,-33.60,7.02,0.00,1.00,-134.40,-33.60,0
+-120.00,-33.60,7.06,0.00,1.00,-129.60,-33.60,0
+-115.20,-33.60,7.10,0.00,1.00,-120.00,-38.40,0
+-110.40,-33.60,7.14,0.00,1.00,-115.20,-38.40,0
+-105.60,-38.40,7.18,0.00,1.00,-105.60,-38.40,0
+-96.00,-38.40,7.22,0.00,1.00,-100.80,-38.40,0
+-91.20,-38.40,7.26,0.00,1.00,-91.20,-38.40,0
+-86.40,-38.40,7.30,0.00,1.00,-86.40,-38.40,0
+-81.60,-38.40,7.34,0.00,1.00,-76.80,-38.40,0
+-72.00,-38.40,7.38,0.00,1.00,-67.20,-38.40,0
+-67.20,-33.60,7.42,0.00,1.00,-62.40,-33.60,0
+-62.40,-33.60,7.46,0.00,1.00,-52.80,-33.60,0
+-57.60,-33.60,7.50,0.00,1.00,-48.00,-33.60,0
+-52.80,-28.80,7.54,0.00,1.00,-43.20,-28.80,0
+-48.00,-28.80,7.58,0.00,1.00,-38.40,-28.80,0
+-43.20,-28.80,7.62,0.00,1.00,-33.60,-24.00,0
+-38.40,-24.00,7.66,0.00,1.00,-28.80,-24.00,0
+-33.60,-24.00,7.70,0.00,1.00,-24.00,-19.20,0
+-28.80,-19.20,7.74,0.00,1.00,-24.00,-19.20,0
+-24.00,-19.20,7.78,0.00,1.00,-19.20,-14.40,0
+-19.20,-14.40,7.82,0.00,1.00,-14.40,-9.60,0
+-14.40,-9.60,7.86,0.00,1.00,-9.60,-9.60,0
+-9.60,-9.60,7.90,0.00,1.00,-9.60,-4.80,0
+-9.60,-4.80,7.94,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,7.98,0.00,1.00,-4.80,0.00,0
+0.00,0.00,8.02,0.00,1.00,0.00,4.80,0
+4.80,4.80,8.06,0.00,1.00,4.80,4.80,0
+9.60,4.80,8.10,0.00,1.00,4.80,9.60,0
+14.40,9.60,8.14,0.00,1.00,9.60,9.60,0
+14.40,9.60,8.18,0.00,1.00,9.60,14.40,0
+19.20,14.40,8.22,0.00,1.00,14.40,14.40,0
+24.00,14.40,8.26,0.00,1.00,14.40,19.20,0
+28.80,19.20,8.30,0.00,1.00,19.20,19.20,0
+33.60,19.20,8.34,0.00,1.00,24.00,24.00,0
+38.40,19.20,8.38,0.00,1.00,28.80,24.00,0
+43.20,24.00,8.42,0.00,1.00,28.80,24.00,0
+48.00,24.00,8.46,0.00,1.00,33.60,28.80,0
+52.80,28.80,8.50,0.00,1.00,38.40,28.80,0
+57.60,28.80,8.54,0.00,1.00,48.00,28.80,0
+62.40,28.80,8.58,0.00,1.00,52.80,33.60,0
+67.20,28.80,8.62,0.00,1.00,57.60,33.60,0
+76.80,33.60,8.66,0.00,1.00,67.20,33.60,0
+81.60,33.60,8.70,0.00,1.00,76.80,33.60,0
+86.40,33.60,8.74,0.00,1.00,81.60,33.60,0
+91.20,33.60,8.78,0.00,1.00,91.20,33.60,0
+96.00,33.60,8.82,0.00,1.00,100.80,33.60,0
+100.80,33.60,8.86,0.00,1.00,110.40,33.60,0
+110.40,28.80,8.90,0.00,1.00,115.20,33.60,0
+115.20,28.80,8.94,0.00,1.00,124.80,28.80,0
+120.00,28.80,8.98,0.00,1.00,129.60,28.80,0
+124.80,28.80,9.02,0.00,1.00,139.20,28.80,0
+129.60,24.00,9.06,0.00,1.00,144.00,24.00,0
+134.40,24.00,9.10,0.00,1.00,148.80,24.00,0
+139.20,24.00,9.14,0.00,1.00,153.60,19.20,0
+144.00,19.20,9.18,0.00,1.00,153.60,19.20,0
+148.80,19.20,9.22,0.00,1.00,158.40,14.40,0
+153.60,14.40,9.26,0.00,1.00,163.20,14.40,0
+158.40,14.40,9.30,0.00,1.00,163.20,9.60,0
+163.20,9.60,9.34,0.00,1.00,168.00,9.60,0
+168.00,9.60,9.38,0.00,1.00,172.80,4.80,0
+168.00,4.80,9.42,0.00,1.00,172.80,4.80,0
+172.80,4.80,9.46,0.00,1.00,177.60,0.00,0
+177.60,0.00,9.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,9.54,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,9.58,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,9.62,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,9.66,0.00,1.00,-172.80,-9.60,0
+-163.20,-9.60,9.70,0.00,1.00,-168.00,-14.40,0
+-158.40,-14.40,9.74,0.00,1.00,-163.20,-14.40,0
+-153.60,-14.40,9.78,0.00,1.00,-163.20,-19.20,0
+-148.80,-19.20,9.82,0.00,1.00,-158.40,-19.20,0
+-144.00,-19.20,9.86,0.00,1.00,-153.60,-24.00,0
+-139.20,-24.00,9.90,0.00,1.00,-153.60,-24.00,0
+-134.40,-24.00,9.94,0.00,1.00,-148.80,-28.80,0
+-129.60,-24.00,9.98,0.00,1.00,-144.00,-28.80,0
+-124.80,-28.80,10.03,0.00,1.00,-139.20,-28.80,0
+-120.00,-28.80,10.07,0.00,1.00,-129.60,-33.60,0
+-115.20,-28.80,10.11,0.00,1.00,-124.80,-33.60,0
+-110.40,-28.80,10.15,0.00,1.00,-115.20,-33.60,0
+-100.80,-33.60,10.19,0.00,1.00,-110.40,-33.60,0
+-96.00,-33.60,10.23,0.00,1.00,-100.80,-33.60,0
+-91.20,-33.60,10.27,0.00,1.00,-91.20,-33.60,0
+-86.40,-33.60,10.31,0.00,1.00,-81.60,-33.60,0
+-81.60,-33.60,10.35,0.00,1.00,-76.80,-33.60,0
+-76.80,-33.60,10.39,0.00,1.00,-67.20,-33.60,0
+-67.20,-28.80,10.43,0.00,1.00,-57.60,-28.80,0
+-62.40,-28.80,10.47,0.00,1.00,-52.80,-28.80,0
+-57.60,-28.80,10.51,0.00,1.00,-48.00,-28.80,0
+-52.80,-28.80,10.55,0.00,1.00,-38.40,-24.00,0
+-48.00,-24.00,10.59,0.00,1.00,-33.60,-24.00,0
+-43.20,-24.00,10.63,0.00,1.00,-28.80,-24.00,0
+-38.40,-19.20,10.67,0.00,1.00,-28.80,-19.20,0
+-33.60,-19.20,10.71,0.00,1.00,-24.00,-19.20,0
+-28.80,-19.20,10.75,0.00,1.00,-19.20,-14.40,0
+-24.00,-14.40,10.79,0.00,1.00,-14.40,-14.40,0
+-19.20,-14.40,10.83,0.00,1.00,-14.40,-9.60,0
+-14.40,-9.60,10.87,0.00,1.00,-9.60,-9.60,0
+-14.40,-9.60,10.91,0.00,1.00,-9.60,-4.80,0
+-9.60,-4.80,10.95,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,10.99,0.00,1.00,-4.80,0.00,0
+0.00,0.00,11.03,0.00,1.00,0.00,0.00,0
+4.80,0.00,11.07,0.00,1.00,0.00,4.80,0
+9.60,4.80,11.11,0.00,1.00,4.80,4.80,0
+14.40,4.80,11.15,0.00,1.00,4.80,9.60,0
+19.20,9.60,11.19,0.00,1.00,9.60,9.60,0
+19.20,9.60,11.23,0.00,1.00,9.60,14.40,0
+24.00,14.40,11.27,0.00,1.00,14.40,14.40,0
+28.80,14.40,11.31,0.00,1.00,19.20,19.20,0
+33.60,14.40,11.35,0.00,1.00,19.20,19.20,0
+38.40,19.20,11.39,0.00,1.00,24.00,19.20,0
+43.20,19.20,11.43,0.00,1.00,28.80,24.00,0
+48.00,24.00,11.47,0.00,1.00,33.60,24.00,0
+52.80,24.00,11.51,0.00,1.00,38.40,24.00,0
+57.60,24.00,11.55,0.00,1.00,43.20,24.00,0
+62.40,24.00,11.59,0.00,1.00,48.00,28.80,0
+72.00,24.00,11.63,0.00,1.00,52.80,28.80,0
+76.80,28.80,11.67,0.00,1.00,62.40,28.80,0
+81.60,28.80,11.71,0.00,1.00,72.00,28.80,0
+86.40,28.80,11.75,0.00,1.00,81.60,28.80,0
+91.20,28.80,11.79,0.00,1.00,91.20,28.80,0
+96.00,28.80,11.83,0.00,1.00,100.80,28.80,0
+100.80,28.80,11.87,0.00,1.00,110.40,28.80,0
+105.60,28.80,11.91,0.00,1.00,120.00,28.80,0
+110.40,24.00,11.95,0.00,1.00,129.60,24.00,0
+120.00,24.00,11.99,0.00,1.00,134.40,24.00,0
+124.80,24.00,12.03,0.00,1.00,139.20,24.00,0
+129.60,24.00,12.07,0.00,1.00,144.00,24.00,0
+134.40,19.20,12.11,0.00,1.00,148.80,19.20,0
+139.20,19.20,12.15,0.00,1.00,153.60,19.20,0
+144.00,19.20,12.19,0.00,1.00,158.40,14.40,0
+148.80,14.40,12.23,0.00,1.00,163.20,14.40,0
+153.60,14.40,12.27,0.00,1.00,163.20,14.40,0
+158.40,9.60,12.31,0.00,1.00,168.00,9.60,0
+158.40,9.60,12.35,0.00,1.00,168.00,9.60,0
+163.20,9.60,12.39,0.00,1.00,172.80,4.80,0
+168.00,4.80,12.43,0.00,1.00,172.80,4.80,0
+172.80,4.80,12.47,0.00,1.00,177.60,0.00,0
+177.60,0.00,12.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,12.55,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,12.59,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,12.63,0.00,1.00,-172.80,-9.60,0
+-163.20,-9.60,12.67,0.00,1.00,-172.80,-9.60,0
+-158.40,-9.60,12.71,0.00,1.00,-168.00,-14.40,0
+-158.40,-9.60,12.75,0.00,1.00,-168.00,-14.40,0
+-153.60,-14.40,12.79,0.00,1.00,-163.20,-14.40,0
+-148.80,-14.40,12.83,0.00,1.00,-163.20,-19.20,0
+-144.00,-19.20,12.87,0.00,1.00,-158.40,-19.20,0
+-139.20,-19.20,12.91,0.00,1.00,-153.60,-24.00,0
+-134.40,-19.20,12.95,0.00,1.00,-148.80,-24.00,0
+-129.60,-24.00,12.99,0.00,1.00,-144.00,-24.00,0
+-124.80,-24.00,13.03,0.00,1.00,-139.20,-24.00,0
+-120.00,-24.00,13.07,0.00,1.00,-134.40,-28.80,0
+-110.40,-24.00,13.11,0.00,1.00,-129.60,-28.80,0
+-105.60,-28.80,13.15,0.00,1.00,-120.00,-28.80,0
+-100.80,-28.80,13.19,0.00,1.00,-110.40,-28.80,0
+-96.00,-28.80,13.23,0.00,1.00,-100.80,-28.80,0
+-91.20,-28.80,13.27,0.00,1.00,-91.20,-28.80,0
+-86.40,-28.80,13.31,0.00,1.00,-81.60,-28.80,0
+-81.60,-28.80,13.35,0.00,1.00,-72.00,-28.80,0
+-76.80,-28.80,13.39,0.00,1.00,-62.40,-28.80,0
+-72.00,-24.00,13.43,0.00,1.00,-52.80,-24.00,0
+-62.40,-24.00,13.47,0.00,1.00,-48.00,-24.00,0
+-57.60,-24.00,13.51,0.00,1.00,-43.20,-24.00,0
+-52.80,-24.00,13.55,0.00,1.00,-38.40,-24.00,0
+-48.00,-24.00,13.59,0.00,1.00,-33.60,-19.20,0
+-43.20,-19.20,13.63,0.00,1.00,-28.80,-19.20,0
+-38.40,-19.20,13.67,0.00,1.00,-24.00,-19.20,0
+-33.60,-14.40,13.71,0.00,1.00,-19.20,-14.40,0
+-28.80,-14.40,13.75,0.00,1.00,-19.20,-14.40,0
+-24.00,-14.40,13.79,0.00,1.00,-14.40,-9.60,0
+-19.20,-9.60,13.83,0.00,1.00,-9.60,-9.60,0
+-19.20,-9.60,13.87,0.00,1.00,-9.60,-4.80,0
+-14.40,-4.80,13.91,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,13.95,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,13.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,14.04,0.00,1.00,0.00,0.00,0
+4.80,0.00,14.08,0.00,1.00,0.00,4.80,0
+9.60,4.80,14.12,0.00,1.00,4.80,4.80,0
+14.40,4.80,14.16,0.00,1.00,4.80,9.60,0
+19.20,9.60,14.20,0.00,1.00,9.60,9.60,0
+24.00,9.60,14.24,0.00,1.00,9.60,9.60,0
+28.80,9.60,14.28,0.00,1.00,14.40,14.40,0
+33.60,14.40,14.32,0.00,1.00,14.40,14.40,0
+38.40,14.40,14.36,0.00,1.00,19.20,14.40,0
+43.20,14.40,14.40,0.00,1.00,19.20,19.20,0
+48.00,14.40,14.44,0.00,1.00,24.00,19.20,0
+52.80,19.20,14.48,0.00,1.00,28.80,19.20,0
+57.60,19.20,14.52,0.00,1.00,33.60,19.20,0
+62.40,19.20,14.56,0.00,1.00,38.40,24.00,0
+67.20,19.20,14.60,0.00,1.00,43.20,24.00,0
+72.00,24.00,14.64,0.00,1.00,48.00,24.00,0
+76.80,24.00,14.68,0.00,1.00,57.60,24.00,0
+81.60,24.00,14.72,0.00,1.00,67.20,24.00,0
+86.40,24.00,14.76,0.00,1.00,81.60,24.00,0
+91.20,24.00,14.80,0.00,1.00,91.20,24.00,0
+96.00,24.00,14.84,0.00,1.00,105.60,24.00,0
+100.80,24.00,14.88,0.00,1.00,115.20,24.00,0
+105.60,24.00,14.92,0.00,1.00,124.80,24.00,0
+110.40,19.20,14.96,0.00,1.00,134.40,19.20,0
+115.20,19.20,15.00,0.00,1.00,139.20,19.20,0
+120.00,19.20,15.04,0.00,1.00,144.00,19.20,0
+124.80,19.20,15.08,0.00,1.00,148.80,19.20,0
+129.60,19.20,15.12,0.00,1.00,153.60,19.20,0
+134.40,14.40,15.16,0.00,1.00,158.40,14.40,0
+139.20,14.40,15.20,0.00,1.00,163.20,14.40,0
+144.00,14.40,15.24,0.00,1.00,163.20,14.40,0
+148.80,9.60,15.28,0.00,1.00,168.00,9.60,0
+153.60,9.60,15.32,0.00,1.00,168.00,9.60,0
+158.40,9.60,15.36,0.00,1.00,172.80,4.80,0
+163.20,4.80,15.40,0.00,1.00,172.80,4.80,0
+168.00,4.80,15.44,0.00,1.00,177.60,4.80,0
+172.80,4.80,15.48,0.00,1.00,177.60,0.00,0
+177.60,0.00,15.52,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,15.56,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,15.60,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,15.64,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,15.68,0.00,1.00,-172.80,-9.60,0
+-158.40,-9.60,15.72,0.00,1.00,-172.80,-9.60,0
+-153.60,-9.60,15.76,0.00,1.00,-168.00,-14.40,0
+-148.80,-9.60,15.80,0.00,1.00,-168.00,-14.40,0
+-144.00,-14.40,15.84,0.00,1.00,-163.20,-14.40,0
+-139.20,-14.40,15.88,0.00,1.00,-163.20,-19.20,0
+-134.40,-14.40,15.92,0.00,1.00,-158.40,-19.20,0
+-129.60,-19.20,15.96,0.00,1.00,-153.60,-19.20,0
+-124.80,-19.20,16.00,0.00,1.00,-148.80,-19.20,0
+-120.00,-19.20,16.00,0.00,1.00,-144.00,-19.20,0
+-115.20,-19.20,15.96,0.00,1.00,-139.20,-24.00,0
+-110.40,-19.20,15.92,0.00,1.00,-134.40,-24.00,0
+-105.60,-24.00,15.88,0.00,1.00,-124.80,-24.00,0
+-100.80,-24.00,15.84,0.00,1.00,-115.20,-24.00,0
+-96.00,-24.00,15.80,0.00,1.00,-105.60,-24.00,0
+-91.20,-24.00,15.76,0.00,1.00,-91.20,-24.00,0
+-86.40,-24.00,15.72,0.00,1.00,-81.60,-24.00,0
+-81.60,-24.00,15.68,0.00,1.00,-67.20,-24.00,0
+-76.80,-24.00,15.64,0.00,1.00,-57.60,-24.00,0
+-72.00,-24.00,15.60,0.00,1.00,-48.00,-24.00,0
+-67.20,-19.20,15.56,0.00,1.00,-43.20,-19.20,0
+-62.40,-19.20,15.52,0.00,1.00,-38.40,-19.20,0
+-57.60,-19.20,15.48,0.00,1.00,-33.60,-19.20,0
+-52.80,-19.20,15.44,0.00,1.00,-28.80,-19.20,0
+-48.00,-14.40,15.40,0.00,1.00,-24.00,-14.40,0
+-43.20,-14.40,15.36,0.00,1.00,-19.20,-14.40,0
+-38.40,-14.40,15.32,0.00,1.00,-19.20,-14.40,0
+-33.60,-14.40,15.28,0.00,1.00,-14.40,-9.60,0
+-28.80,-9.60,15.24,0.00,1.00,-14.40,-9.60,0
+-24.00,-9.60,15.20,0.00,1.00,-9.60,-9.60,0
+-19.20,-9.60,15.16,0.00,1.00,-9.60,-4.80,0
+-14.40,-4.80,15.12,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,15.08,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,15.04,0.00,1.00,-0.00,0.00,0
+0.00,0.00,15.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,14.96,0.00,1.00,0.00,4.80,0
+9.60,4.80,14.92,0.00,1.00,4.80,4.80,0
+14.40,4.80,14.88,0.00,1.00,4.80,4.80,0
+19.20,4.80,14.84,0.00,1.00,4.80,9.60,0
+24.00,9.60,14.80,0.00,1.00,9.60,9.60,0
+28.80,9.60,14.76,0.00,1.00,9.60,9.60,0
+33.60,9.60,14.72,0.00,1.00,9.60,9.60,0
+38.40,9.60,14.68,0.00,1.00,14.40,14.40,0
+43.20,14.40,14.64,0.00,1.00,14.40,14.40,0
+48.00,14.40,14.60,0.00,1.00,19.20,14.40,0
+52.80,14.40,14.56,0.00,1.00,24.00,14.40,0
+57.60,14.40,14.52,0.00,1.00,24.00,19.20,0
+62.40,14.40,14.48,0.00,1.00,28.80,19.20,0
+67.20,14.40,14.44,0.00,1.00,38.40,19.20,0
+72.00,19.20,14.40,0.00,1.00,43.20,19.20,0
+76.80,19.20,14.36,0.00,1.00,52.80,19.20,0
+81.60,19.20,14.32,0.00,1.00,62.40,19.20,0
+86.40,19.20,14.28,0.00,1.00,76.80,19.20,0
+91.20,19.20,14.24,0.00,1.00,96.00,19.20,0
+96.00,19.20,14.20,0.00,1.00,110.40,19.20,0
+100.80,19.20,14.16,0.00,1.00,120.00,19.20,0
+105.60,19.20,14.12,0.00,1.00,134.40,19.20,0
+110.40,19.20,14.08,0.00,1.00,139.20,19.20,0
+115.20,14.40,14.04,0.00,1.00,148.80,14.40,0
+120.00,14.40,13.99,0.00,1.00,153.60,14.40,0
+124.80,14.40,13.95,0.00,1.00,158.40,14.40,0
+129.60,14.40,13.91,0.00,1.00,158.40,14.40,0
+134.40,14.40,13.87,0.00,1.00,163.20,14.40,0
+139.20,9.60,13.83,0.00,1.00,163.20,9.60,0
+144.00,9.60,13.79,0.00,1.00,168.00,9.60,0
+148.80,9.60,13.75,0.00,1.00,168.00,9.60,0
+153.60,9.60,13.71,0.00,1.00,172.80,4.80,0
+158.40,4.80,13.67,0.00,1.00,172.80,4.80,0
+163.20,4.80,13.63,0.00,1.00,172.80,4.80,0
+168.00,4.80,13.59,0.00,1.00,177.60,0.00,0
+172.80,0.00,13.55,0.00,1.00,177.60,0.00,0
+177.60,0.00,13.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.47,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,13.43,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,13.39,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,13.35,0.00,1.00,-172.80,-4.80,0
+-158.40,-4.80,13.31,0.00,1.00,-172.80,-9.60,0
+-153.60,-9.60,13.27,0.00,1.00,-172.80,-9.60,0
+-148.80,-9.60,13.23,0.00,1.00,-168.00,-9.60,0
+-144.00,-9.60,13.19,0.00,1.00,-168.00,-14.40,0
+-139.20,-9.60,13.15,0.00,1.00,-163.20,-14.40,0
+-134.40,-14.40,13.11,0.00,1.00,-163.20,-14.40,0
+-129.60,-14.40,13.07,0.00,1.00,-158.40,-14.40,0
+-124.80,-14.40,13.03,0.00,1.00,-158.40,-14.40,0
+-120.00,-14.40,12.99,0.00,1.00,-153.60,-19.20,0
+-115.20,-14.40,12.95,0.00,1.00,-148.80,-19.20,0
+-110.40,-19.20,12.91,0.00,1.00,-139.20,-19.20,0
+-105.60,-19.20,12.87,0.00,1.00,-134.40,-19.20,0
+-100.80,-19.20,12.83,0.00,1.00,-120.00,-19.20,0
+-96.00,-19.20,12.79,0.00,1.00,-110.40,-19.20,0
+-91.20,-19.20,12.75,0.00,1.00,-96.00,-19.20,0
+-86.40,-19.20,12.71,0.00,1.00,-76.80,-19.20,0
+-81.60,-19.20,12.67,0.00,1.00,-62.40,-19.20,0
+-76.80,-19.20,12.63,0.00,1.00,-52.80,-19.20,0
+-72.00,-19.20,12.59,0.00,1.00,-43.20,-19.20,0
+-67.20,-14.40,12.55,0.00,1.00,-38.40,-19.20,0
+-62.40,-14.40,12.51,0.00,1.00,-28.80,-14.40,0
+-57.60,-14.40,12.47,0.00,1.00,-24.00,-14.40,0
+-52.80,-14.40,12.43,0.00,1.00,-24.00,-14.40,0
+-48.00,-14.40,12.39,0.00,1.00,-19.20,-14.40,0
+-43.20,-14.40,12.35,0.00,1.00,-14.40,-9.60,0
+-38.40,-9.60,12.31,0.00,1.00,-14.40,-9.60,0
+-33.60,-9.60,12.27,0.00,1.00,-9.60,-9.60,0
+-28.80,-9.60,12.23,0.00,1.00,-9.60,-9.60,0
+-24.00,-9.60,12.19,0.00,1.00,-9.60,-4.80,0
+-19.20,-4.80,12.15,0.00,1.00,-4.80,-4.80,0
+-14.40,-4.80,12.11,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,12.07,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,12.03,0.00,1.00,-0.00,0.00,0
+0.00,0.00,11.99,0.00,1.00,0.00,0.00,0
+4.80,0.00,11.95,0.00,1.00,0.00,0.00,0
+9.60,0.00,11.91,0.00,1.00,0.00,4.80,0
+14.40,4.80,11.87,0.00,1.00,4.80,4.80,0
+19.20,4.80,11.83,0.00,1.00,4.80,4.80,0
+24.00,4.80,11.79,0.00,1.00,4.80,4.80,0
+28.80,4.80,11.75,0.00,1.00,4.80,9.60,0
+33.60,9.60,11.71,0.00,1.00,9.60,9.60,0
+38.40,9.60,11.67,0.00,1.00,9.60,9.60,0
+43.20,9.60,11.63,0.00,1.00,14.40,9.60,0
+48.00,9.60,11.59,0.00,1.00,14.40,9.60,0
+52.80,9.60,11.55,0.00,1.00,14.40,14.40,0
+57.60,9.60,11.51,0.00,1.00,19.20,14.40,0
+62.40,9.60,11.47,0.00,1.00,24.00,14.40,0
+67.20,14.40,11.43,0.00,1.00,28.80,14.40,0
+72.00,14.40,11.39,0.00,1.00,33.60,14.40,0
+76.80,14.40,11.35,0.00,1.00,43.20,14.40,0
+81.60,14.40,11.31,0.00,1.00,57.60,14.40,0
+86.40,14.40,11.27,0.00,1.00,76.80,14.40,0
+91.20,14.40,11.23,0.00,1.00,96.00,14.40,0
+96.00,14.40,11.19,0.00,1.00,115.20,14.40,0
+100.80,14.40,11.15,0.00,1.00,129.60,14.40,0
+105.60,14.40,11.11,0.00,1.00,139.20,14.40,0
+110.40,14.40,11.07,0.00,1.00,148.80,14.40,0
+115.20,9.60,11.03,0.00,1.00,153.60,14.40,0
+120.00,9.60,10.99,0.00,1.00,158.40,9.60,0
+124.80,9.60,10.95,0.00,1.00,163.20,9.60,0
+129.60,9.60,10.91,0.00,1.00,163.20,9.60,0
+134.40,9.60,10.87,0.00,1.00,168.00,9.60,0
+139.20,9.60,10.83,0.00,1.00,168.00,9.60,0
+144.00,9.60,10.79,0.00,1.00,172.80,9.60,0
+148.80,4.80,10.75,0.00,1.00,172.80,4.80,0
+153.60,4.80,10.71,0.00,1.00,172.80,4.80,0
+158.40,4.80,10.67,0.00,1.00,172.80,4.80,0
+163.20,4.80,10.63,0.00,1.00,177.60,4.80,0
+168.00,4.80,10.59,0.00,1.00,177.60,0.00,0
+172.80,0.00,10.55,0.00,1.00,177.60,0.00,0
+177.60,0.00,10.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.47,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,10.43,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,10.39,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,10.35,0.00,1.00,-177.60,-4.80,0
+-158.40,-4.80,10.31,0.00,1.00,-172.80,-4.80,0
+-153.60,-4.80,10.27,0.00,1.00,-172.80,-9.60,0
+-148.80,-4.80,10.23,0.00,1.00,-172.80,-9.60,0
+-144.00,-9.60,10.19,0.00,1.00,-172.80,-9.60,0
+-139.20,-9.60,10.15,0.00,1.00,-168.00,-9.60,0
+-134.40,-9.60,10.11,0.00,1.00,-168.00,-9.60,0
+-129.60,-9.60,10.07,0.00,1.00,-163.20,-9.60,0
+-124.80,-9.60,10.03,0.00,1.00,-163.20,-14.40,0
+-120.00,-9.60,9.98,0.00,1.00,-158.40,-14.40,0
+-115.20,-9.60,9.94,0.00,1.00,-153.60,-14.40,0
+-110.40,-14.40,9.90,0.00,1.00,-148.80,-14.40,0
+-105.60,-14.40,9.86,0.00,1.00,-139.20,-14.40,0
+-100.80,-14.40,9.82,0.00,1.00,-129.60,-14.40,0
+-96.00,-14.40,9.78,0.00,1.00,-115.20,-14.40,0
+-91.20,-14.40,9.74,0.00,1.00,-96.00,-14.40,0
+-86.40,-14.40,9.70,0.00,1.00,-76.80,-14.40,0
+-81.60,-14.40,9.66,0.00,1.00,-57.60,-14.40,0
+-76.80,-14.40,9.62,0.00,1.00,-43.20,-14.40,0
+-72.00,-14.40,9.58,0.00,1.00,-33.60,-14.40,0
+-67.20,-14.40,9.54,0.00,1.00,-28.80,-14.40,0
+-62.40,-9.60,9.50,0.00,1.00,-24.00,-14.40,0
+-57.60,-9.60,9.46,0.00,1.00,-19.20,-9.60,0
+-52.80,-9.60,9.42,0.00,1.00,-14.40,-9.60,0
+-48.00,-9.60,9.38,0.00,1.00,-14.40,-9.60,0
+-43.20,-9.60,9.34,0.00,1.00,-14.40,-9.60,0
+-38.40,-9.60,9.30,0.00,1.00,-9.60,-9.60,0
+-33.60,-9.60,9.26,0.00,1.00,-9.60,-4.80,0
+-28.80,-4.80,9.22,0.00,1.00,-4.80,-4.80,0
+-24.00,-4.80,9.18,0.00,1.00,-4.80,-4.80,0
+-19.20,-4.80,9.14,0.00,1.00,-4.80,-4.80,0
+-14.40,-4.80,9.10,0.00,1.00,-4.80,-0.00,0
+-9.60,-0.00,9.06,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,9.02,0.00,1.00,-0.00,0.00,0
+0.00,0.00,8.98,0.00,1.00,0.00,0.00,0
+4.80,0.00,8.94,0.00,1.00,0.00,0.00,0
+9.60,0.00,8.90,0.00,1.00,0.00,0.00,0
+14.40,0.00,8.86,0.00,1.00,0.00,4.80,0
+19.20,4.80,8.82,0.00,1.00,4.80,4.80,0
+24.00,4.80,8.78,0.00,1.00,4.80,4.80,0
+28.80,4.80,8.74,0.00,1.00,4.80,4.80,0
+33.60,4.80,8.70,0.00,1.00,4.80,4.80,0
+38.40,4.80,8.66,0.00,1.00,4.80,4.80,0
+43.20,4.80,8.62,0.00,1.00,9.60,4.80,0
+48.00,4.80,8.58,0.00,1.00,9.60,9.60,0
+52.80,4.80,8.54,0.00,1.00,9.60,9.60,0
+57.60,4.80,8.50,0.00,1.00,14.40,9.60,0
+62.40,9.60,8.46,0.00,1.00,14.40,9.60,0
+67.20,9.60,8.42,0.00,1.00,19.20,9.60,0
+72.00,9.60,8.38,0.00,1.00,24.00,9.60,0
+76.80,9.60,8.34,0.00,1.00,33.60,9.60,0
+81.60,9.60,8.30,0.00,1.00,43.20,9.60,0
+86.40,9.60,8.26,0.00,1.00,67.20,9.60,0
+91.20,9.60,8.22,0.00,1.00,96.00,9.60,0
+96.00,9.60,8.18,0.00,1.00,124.80,9.60,0
+100.80,9.60,8.14,0.00,1.00,144.00,9.60,0
+105.60,9.60,8.10,0.00,1.00,153.60,9.60,0
+110.40,9.60,8.06,0.00,1.00,158.40,9.60,0
+115.20,9.60,8.02,0.00,1.00,163.20,9.60,0
+120.00,9.60,7.98,0.00,1.00,168.00,9.60,0
+124.80,4.80,7.94,0.00,1.00,168.00,9.60,0
+129.60,4.80,7.90,0.00,1.00,168.00,4.80,0
+134.40,4.80,7.86,0.00,1.00,172.80,4.80,0
+139.20,4.80,7.82,0.00,1.00,172.80,4.80,0
+144.00,4.80,7.78,0.00,1.00,172.80,4.80,0
+148.80,4.80,7.74,0.00,1.00,172.80,4.80,0
+153.60,4.80,7.70,0.00,1.00,177.60,4.80,0
+158.40,4.80,7.66,0.00,1.00,177.60,4.80,0
+163.20,4.80,7.62,0.00,1.00,177.60,0.00,0
+168.00,0.00,7.58,0.00,1.00,177.60,0.00,0
+172.80,0.00,7.54,0.00,1.00,177.60,0.00,0
+177.60,0.00,7.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,7.46,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,7.42,0.00,1.00,-177.60,-0.00,0
+-168.00,-0.00,7.38,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,7.34,0.00,1.00,-177.60,-4.80,0
+-158.40,-4.80,7.30,0.00,1.00,-177.60,-4.80,0
+-153.60,-4.80,7.26,0.00,1.00,-177.60,-4.80,0
+-148.80,-4.80,7.22,0.00,1.00,-172.80,-4.80,0
+-144.00,-4.80,7.18,0.00,1.00,-172.80,-4.80,0
+-139.20,-4.80,7.14,0.00,1.00,-172.80,-4.80,0
+-134.40,-4.80,7.10,0.00,1.00,-172.80,-9.60,0
+-129.60,-4.80,7.06,0.00,1.00,-168.00,-9.60,0
+-124.80,-4.80,7.02,0.00,1.00,-168.00,-9.60,0
+-120.00,-9.60,6.98,0.00,1.00,-168.00,-9.60,0
+-115.20,-9.60,6.94,0.00,1.00,-163.20,-9.60,0
+-110.40,-9.60,6.90,0.00,1.00,-158.40,-9.60,0
+-105.60,-9.60,6.86,0.00,1.00,-153.60,-9.60,0
+-100.80,-9.60,6.82,0.00,1.00,-144.00,-9.60,0
+-96.00,-9.60,6.78,0.00,1.00,-124.80,-9.60,0
+-91.20,-9.60,6.74,0.00,1.00,-96.00,-9.60,0
+-86.40,-9.60,6.70,0.00,1.00,-67.20,-9.60,0
+-81.60,-9.60,6.66,0.00,1.00,-43.20,-9.60,0
+-76.80,-9.60,6.62,0.00,1.00,-33.60,-9.60,0
+-72.00,-9.60,6.58,0.00,1.00,-24.00,-9.60,0
+-67.20,-9.60,6.54,0.00,1.00,-19.20,-9.60,0
+-62.40,-9.60,6.50,0.00,1.00,-14.40,-9.60,0
+-57.60,-4.80,6.46,0.00,1.00,-14.40,-9.60,0
+-52.80,-4.80,6.42,0.00,1.00,-9.60,-4.80,0
+-48.00,-4.80,6.38,0.00,1.00,-9.60,-4.80,0
+-43.20,-4.80,6.34,0.00,1.00,-9.60,-4.80,0
+-38.40,-4.80,6.30,0.00,1.00,-4.80,-4.80,0
+-33.60,-4.80,6.26,0.00,1.00,-4.80,-4.80,0
+-28.80,-4.80,6.22,0.00,1.00,-4.80,-4.80,0
+-24.00,-4.80,6.18,0.00,1.00,-4.80,-4.80,0
+-19.20,-4.80,6.14,0.00,1.00,-4.80,-0.00,0
+-14.40,-0.00,6.10,0.00,1.00,-0.00,-0.00,0
+-9.60,-0.00,6.06,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,6.02,0.00,1.00,-0.00,0.00,0
+0.00,0.00,5.97,0.00,1.00,0.00,0.00,0
+4.80,0.00,5.93,0.00,1.00,0.00,0.00,0
+9.60,0.00,5.89,0.00,1.00,0.00,0.00,0
+14.40,0.00,5.85,0.00,1.00,0.00,0.00,0
+19.20,0.00,5.81,0.00,1.00,0.00,0.00,0
+24.00,0.00,5.77,0.00,1.00,0.00,0.00,0
+28.80,0.00,5.73,0.00,1.00,0.00,4.80,0
+33.60,0.00,5.69,0.00,1.00,0.00,4.80,0
+38.40,0.00,5.65,0.00,1.00,4.80,4.80,0
+43.20,4.80,5.61,0.00,1.00,4.80,4.80,0
+48.00,4.80,5.57,0.00,1.00,4.80,4.80,0
+52.80,4.80,5.53,0.00,1.00,4.80,4.80,0
+57.60,4.80,5.49,0.00,1.00,4.80,4.80,0
+62.40,4.80,5.45,0.00,1.00,4.80,4.80,0
+67.20,4.80,5.41,0.00,1.00,9.60,4.80,0
+72.00,4.80,5.37,0.00,1.00,9.60,4.80,0
+76.80,4.80,5.33,0.00,1.00,14.40,4.80,0
+81.60,4.80,5.29,0.00,1.00,24.00,4.80,0
+86.40,4.80,5.25,0.00,1.00,43.20,4.80,0
+91.20,4.80,5.21,0.00,1.00,110.40,4.80,0
+96.00,4.80,5.17,0.00,1.00,148.80,4.80,0
+100.80,4.80,5.13,0.00,1.00,163.20,4.80,0
+105.60,4.80,5.09,0.00,1.00,168.00,4.80,0
+110.40,4.80,5.05,0.00,1.00,172.80,4.80,0
+115.20,4.80,5.01,0.00,1.00,172.80,4.80,0
+120.00,4.80,4.97,0.00,1.00,172.80,4.80,0
+124.80,4.80,4.93,0.00,1.00,172.80,4.80,0
+129.60,4.80,4.89,0.00,1.00,177.60,4.80,0
+134.40,4.80,4.85,0.00,1.00,177.60,4.80,0
+139.20,0.00,4.81,0.00,1.00,177.60,4.80,0
+144.00,0.00,4.77,0.00,1.00,177.60,4.80,0
+148.80,0.00,4.73,0.00,1.00,177.60,0.00,0
+153.60,0.00,4.69,0.00,1.00,177.60,0.00,0
+158.40,0.00,4.65,0.00,1.00,177.60,0.00,0
+163.20,0.00,4.61,0.00,1.00,177.60,0.00,0
+168.00,0.00,4.57,0.00,1.00,177.60,0.00,0
+172.80,0.00,4.53,0.00,1.00,177.60,0.00,0
+177.60,0.00,4.49,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,4.45,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,4.41,0.00,1.00,-177.60,-0.00,0
+-168.00,-0.00,4.37,0.00,1.00,-177.60,-0.00,0
+-163.20,-0.00,4.33,0.00,1.00,-177.60,-0.00,0
+-158.40,-0.00,4.29,0.00,1.00,-177.60,-0.00,0
+-153.60,-0.00,4.25,0.00,1.00,-177.60,-4.80,0
+-148.80,-0.00,4.21,0.00,1.00,-177.60,-4.80,0
+-144.00,-0.00,4.17,0.00,1.00,-177.60,-4.80,0
+-139.20,-0.00,4.13,0.00,1.00,-177.60,-4.80,0
+-134.40,-4.80,4.09,0.00,1.00,-177.60,-4.80,0
+-129.60,-4.80,4.05,0.00,1.00,-177.60,-4.80,0
+-124.80,-4.80,4.01,0.00,1.00,-172.80,-4.80,0
+-120.00,-4.80,3.97,0.00,1.00,-172.80,-4.80,0
+-115.20,-4.80,3.93,0.00,1.00,-172.80,-4.80,0
+-110.40,-4.80,3.89,0.00,1.00,-172.80,-4.80,0
+-105.60,-4.80,3.85,0.00,1.00,-168.00,-4.80,0
+-100.80,-4.80,3.81,0.00,1.00,-163.20,-4.80,0
+-96.00,-4.80,3.77,0.00,1.00,-148.80,-4.80,0
+-91.20,-4.80,3.73,0.00,1.00,-110.40,-4.80,0
+-86.40,-4.80,3.69,0.00,1.00,-43.20,-4.80,0
+-81.60,-4.80,3.65,0.00,1.00,-24.00,-4.80,0
+-76.80,-4.80,3.61,0.00,1.00,-14.40,-4.80,0
+-72.00,-4.80,3.57,0.00,1.00,-9.60,-4.80,0
+-67.20,-4.80,3.53,0.00,1.00,-9.60,-4.80,0
+-62.40,-4.80,3.49,0.00,1.00,-4.80,-4.80,0
+-57.60,-4.80,3.45,0.00,1.00,-4.80,-4.80,0
+-52.80,-4.80,3.41,0.00,1.00,-4.80,-4.80,0
+-48.00,-4.80,3.37,0.00,1.00,-4.80,-4.80,0
+-43.20,-4.80,3.33,0.00,1.00,-4.80,-4.80,0
+-38.40,-0.00,3.29,0.00,1.00,-4.80,-4.80,0
+-33.60,-0.00,3.25,0.00,1.00,-0.00,-0.00,0
+-28.80,-0.00,3.21,0.00,1.00,-0.00,-0.00,0
+-24.00,-0.00,3.17,0.00,1.00,-0.00,-0.00,0
+-19.20,-0.00,3.13,0.00,1.00,-0.00,-0.00,0
+-14.40,-0.00,3.09,0.00,1.00,-0.00,-0.00,0
+-9.60,-0.00,3.05,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,3.01,0.00,1.00,-0.00,0.00,0
+0.00,0.00,2.97,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,2.93,0.00,1.00,-0.00,0.00,0
+9.60,-0.00,2.89,0.00,1.00,-0.00,0.00,0
+14.40,-0.00,2.85,0.00,1.00,-0.00,0.00,0
+19.20,-0.00,2.81,0.00,1.00,-0.00,0.00,0
+24.00,-0.00,2.77,0.00,1.00,-0.00,0.00,0
+28.80,-0.00,2.73,0.00,1.00,-0.00,0.00,0
+33.60,-0.00,2.69,0.00,1.00,-0.00,0.00,0
+38.40,-0.00,2.65,0.00,1.00,-0.00,0.00,0
+43.20,-0.00,2.61,0.00,1.00,-0.00,0.00,0
+48.00,-0.00,2.57,0.00,1.00,-0.00,0.00,0
+52.80,-0.00,2.53,0.00,1.00,-0.00,0.00,0
+57.60,-0.00,2.49,0.00,1.00,-0.00,0.00,0
+62.40,-0.00,2.45,0.00,1.00,-0.00,0.00,0
+67.20,-0.00,2.41,0.00,1.00,-4.80,0.00,0
+72.00,-0.00,2.37,0.00,1.00,-4.80,0.00,0
+76.80,-0.00,2.33,0.00,1.00,-4.80,0.00,0
+81.60,-0.00,2.29,0.00,1.00,-9.60,0.00,0
+86.40,-0.00,2.25,0.00,1.00,-19.20,0.00,0
+91.20,-0.00,2.21,0.00,1.00,-134.40,0.00,0
+96.00,-0.00,2.17,0.00,1.00,-168.00,0.00,0
+100.80,-0.00,2.13,0.00,1.00,-172.80,0.00,0
+105.60,-0.00,2.09,0.00,1.00,-177.60,0.00,0
+110.40,-0.00,2.05,0.00,1.00,-177.60,0.00,0
+115.20,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+120.00,-0.00,1.96,0.00,1.00,-177.60,0.00,0
+124.80,-0.00,1.92,0.00,1.00,-177.60,0.00,0
+129.60,-0.00,1.88,0.00,1.00,-177.60,0.00,0
+134.40,-0.00,1.84,0.00,1.00,-177.60,0.00,0
+139.20,-0.00,1.80,0.00,1.00,-177.60,0.00,0
+144.00,-0.00,1.76,0.00,1.00,-177.60,0.00,0
+148.80,-0.00,1.72,0.00,1.00,-177.60,0.00,0
+153.60,-0.00,1.68,0.00,1.00,-177.60,0.00,0
+158.40,-0.00,1.64,0.00,1.00,-177.60,0.00,0
+163.20,-0.00,1.60,0.00,1.00,-177.60,0.00,0
+168.00,-0.00,1.56,0.00,1.00,-177.60,0.00,0
+172.80,-0.00,1.52,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,1.48,0.00,1.00,-177.60,0.00,0
+-177.60,0.00,1.44,0.00,1.00,177.60,0.00,0
+-172.80,0.00,1.40,0.00,1.00,177.60,0.00,0
+-168.00,0.00,1.36,0.00,1.00,177.60,0.00,0
+-163.20,0.00,1.32,0.00,1.00,177.60,0.00,0
+-158.40,0.00,1.28,0.00,1.00,177.60,0.00,0
+-153.60,0.00,1.24,0.00,1.00,177.60,0.00,0
+-148.80,0.00,1.20,0.00,1.00,177.60,0.00,0
+-144.00,0.00,1.16,0.00,1.00,177.60,0.00,0
+-139.20,0.00,1.12,0.00,1.00,177.60,0.00,0
+-134.40,0.00,1.08,0.00,1.00,177.60,0.00,0
+-129.60,0.00,1.04,0.00,1.00,177.60,0.00,0
+-124.80,0.00,1.00,0.00,1.00,177.60,0.00,0
+-120.00,0.00,0.96,0.00,1.00,177.60,0.00,0
+-115.20,0.00,0.92,0.00,1.00,177.60,0.00,0
+-110.40,0.00,0.88,0.00,1.00,177.60,0.00,0
+-105.60,0.00,0.84,0.00,1.00,177.60,0.00,0
+-100.80,0.00,0.80,0.00,1.00,172.80,0.00,0
+-96.00,0.00,0.76,0.00,1.00,168.00,0.00,0
+-91.20,0.00,0.72,0.00,1.00,134.40,0.00,0
+-86.40,0.00,0.68,0.00,1.00,19.20,0.00,0
+-81.60,0.00,0.64,0.00,1.00,9.60,0.00,0
+-76.80,0.00,0.60,0.00,1.00,4.80,0.00,0
+-72.00,0.00,0.56,0.00,1.00,4.80,0.00,0
+-67.20,0.00,0.52,0.00,1.00,4.80,0.00,0
+-62.40,0.00,0.48,0.00,1.00,0.00,0.00,0
+-57.60,0.00,0.44,0.00,1.00,0.00,0.00,0
+-52.80,0.00,0.40,0.00,1.00,0.00,0.00,0
+-48.00,0.00,0.36,0.00,1.00,0.00,0.00,0
+-43.20,0.00,0.32,0.00,1.00,0.00,0.00,0
+-38.40,0.00,0.28,0.00,1.00,0.00,0.00,0
+-33.60,0.00,0.24,0.00,1.00,0.00,0.00,0
+-28.80,0.00,0.20,0.00,1.00,0.00,0.00,0
+-24.00,0.00,0.16,0.00,1.00,0.00,0.00,0
+-19.20,0.00,0.12,0.00,1.00,0.00,0.00,0
+-14.40,0.00,0.08,0.00,1.00,0.00,0.00,0
+-9.60,0.00,0.04,0.00,1.00,0.00,0.00,0
+-4.80,0.00,0.00,0.00,1.00,0.00,0.00,0
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA1TC16c.met b/scripts/testv/stvOMASA_4ISM_2MASA1TC16c.met
new file mode 100644
index 0000000000000000000000000000000000000000..64688774087538a671ebfda830ff11b4f836f438
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA1TC16c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d125a4c4e3989ac55f9c2617f464431feae4ede9b2e15d087d3271c0a4a56303
+size 319800
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA1TC16c.wav b/scripts/testv/stvOMASA_4ISM_2MASA1TC16c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..9520d5e5a92c86799578f69410460d3616d2898b
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA1TC16c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1b378e677deb8d7cdec4c36d1608c2f39094df74a777313c2ba17d781f5908ee
+size 960080
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA1TC16c_ISM1.csv b/scripts/testv/stvOMASA_4ISM_2MASA1TC16c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA1TC16c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA1TC16c_ISM2.csv b/scripts/testv/stvOMASA_4ISM_2MASA1TC16c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA1TC16c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA1TC16c_ISM3.csv b/scripts/testv/stvOMASA_4ISM_2MASA1TC16c_ISM3.csv
new file mode 100644
index 0000000000000000000000000000000000000000..14eee9b693b536fa2fd22d2813d7f588b8930b06
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA1TC16c_ISM3.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0
+-177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0
+4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0
+-168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0
+14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0
+-163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0
+19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0
+-153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0
+28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0
+-148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0
+38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0
+-139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0
+48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0
+-124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0
+57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0
+-115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0
+72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0
+-100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0
+86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0
+-86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0
+100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0
+-76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0
+110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0
+-62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0
+124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0
+-52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0
+134.40,33.60,0.28,0.00,1.00,177.60,0.00,0
+-38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0
+144.00,28.80,0.30,0.00,1.00,177.60,0.00,0
+-33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0
+153.60,24.00,0.32,0.00,1.00,177.60,0.00,0
+-24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0
+158.40,19.20,0.34,0.00,1.00,177.60,0.00,0
+-14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0
+168.00,9.60,0.36,0.00,1.00,177.60,0.00,0
+-9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0
+172.80,4.80,0.38,0.00,1.00,177.60,0.00,0
+-0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0
+-177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0
+4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0
+14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0
+19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0
+-158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0
+28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0
+-148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0
+33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0
+-139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0
+43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0
+-129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0
+57.60,38.40,15.47,0.00,1.00,177.60,0.00,0
+-120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0
+67.20,43.20,15.44,0.00,1.00,177.60,0.00,0
+-105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0
+81.60,43.20,15.42,0.00,1.00,177.60,0.00,0
+-91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0
+96.00,43.20,15.40,0.00,1.00,0.00,0.00,0
+-76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0
+110.40,43.20,15.38,0.00,1.00,0.00,0.00,0
+-67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0
+120.00,38.40,15.36,0.00,1.00,0.00,0.00,0
+-52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0
+129.60,38.40,15.34,0.00,1.00,0.00,0.00,0
+-43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0
+144.00,33.60,15.32,0.00,1.00,0.00,0.00,0
+-33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0
+148.80,24.00,15.30,0.00,1.00,0.00,0.00,0
+-24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0
+158.40,19.20,15.27,0.00,1.00,0.00,0.00,0
+-19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0
+168.00,14.40,15.25,0.00,1.00,0.00,0.00,0
+-9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0
+172.80,4.80,15.23,0.00,1.00,0.00,0.00,0
+-4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0
+0.00,0.00,15.21,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0
+9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0
+14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0
+-163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0
+24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0
+-153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0
+28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0
+-144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0
+38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0
+-134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0
+48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0
+-124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0
+62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0
+-115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0
+72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0
+-100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0
+86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0
+-86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0
+96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0
+-76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0
+110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0
+-62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0
+120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0
+-52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0
+134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0
+-43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0
+144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0
+-33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0
+148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0
+-24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0
+158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0
+-19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0
+168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0
+-9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0
+172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0
+4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0
+14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0
+19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0
+-153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0
+28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0
+-148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0
+38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0
+-139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0
+48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0
+-124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0
+57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0
+-115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0
+72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0
+-105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0
+81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0
+-91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0
+96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0
+-76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0
+105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0
+-67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0
+120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0
+-57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0
+129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0
+-43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0
+139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0
+-33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0
+148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0
+-28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0
+158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0
+-19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0
+163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0
+-9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0
+172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0
+0.00,0.00,1.60,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0
+9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0
+14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0
+-158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0
+24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0
+-153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0
+33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0
+-144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0
+43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0
+-134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0
+52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0
+-124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0
+62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0
+-110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0
+72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0
+-100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0
+86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0
+-86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0
+96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0
+-76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0
+110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0
+-67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0
+120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0
+-52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0
+129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0
+-43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0
+139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0
+-33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0
+148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0
+-24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0
+158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0
+-19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0
+168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0
+172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0
+14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0
+-163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0
+24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0
+-153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0
+28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0
+-144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0
+38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0
+-134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0
+48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0
+-124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0
+62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0
+-115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0
+72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0
+-100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0
+81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0
+-91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0
+96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0
+-81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0
+105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0
+-67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0
+115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0
+-57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0
+129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0
+-48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0
+139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0
+-38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0
+148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0
+-28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0
+153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0
+-19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0
+163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0
+-9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0
+172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0
+0.00,0.00,13.61,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0
+9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0
+-168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0
+24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0
+-148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0
+33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0
+-139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0
+43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0
+-129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0
+52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0
+-120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0
+62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0
+-110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0
+76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0
+-100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0
+86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0
+-86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0
+96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0
+-76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0
+105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0
+-67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0
+120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0
+-57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0
+129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0
+-48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0
+139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0
+-38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0
+148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0
+158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0
+-19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0
+163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0
+172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0
+4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0
+14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0
+-163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0
+24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0
+-153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0
+33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0
+-144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0
+43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0
+-134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0
+52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0
+-124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0
+62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0
+-115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0
+72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0
+-100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0
+81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0
+-91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0
+96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0
+-81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0
+105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0
+-67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0
+115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0
+-57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0
+124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0
+-48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0
+134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0
+-38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0
+144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0
+-28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0
+153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0
+-19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0
+163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0
+-14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0
+172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0
+-4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0
+0.00,0.00,3.20,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0
+9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0
+19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0
+24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0
+-148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0
+33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0
+-139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0
+43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0
+-129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0
+52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0
+-120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0
+67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0
+-110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0
+76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0
+-100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0
+86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0
+-86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0
+96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0
+-76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0
+105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0
+-67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0
+115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0
+-57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0
+129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0
+-48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0
+139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0
+-38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0
+148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0
+153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0
+-19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0
+163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0
+172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0
+4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0
+14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0
+24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0
+-153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0
+33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0
+-144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0
+43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0
+-134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0
+52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0
+-124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0
+62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0
+-110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0
+72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0
+-100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0
+81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0
+-91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0
+96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0
+-81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0
+105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0
+-72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0
+115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0
+-57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0
+124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0
+-48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0
+134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0
+-38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0
+144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0
+-28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0
+153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0
+-24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0
+163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0
+-14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0
+172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,12.01,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0
+9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0
+-158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0
+28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0
+-148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0
+38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0
+-139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0
+48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0
+-129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0
+57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0
+-120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0
+67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0
+-110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0
+76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0
+-100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0
+86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0
+-86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0
+96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0
+-76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0
+105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0
+-67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0
+115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0
+-57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0
+124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0
+-48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0
+134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0
+-38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0
+144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0
+-28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0
+153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0
+-19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0
+163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0
+172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0
+4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0
+14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0
+24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0
+-148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0
+33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0
+-139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0
+43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0
+-129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0
+52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0
+-120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0
+62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0
+-110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0
+72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0
+-100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0
+81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0
+-91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0
+96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0
+-81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0
+105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0
+-72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0
+115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0
+-62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0
+124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0
+-52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0
+134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0
+-43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0
+144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0
+-33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0
+153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0
+-24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0
+163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0
+172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0
+0.00,0.00,4.81,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0
+9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0
+19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0
+28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0
+-148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0
+38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0
+-139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0
+48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0
+-129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0
+57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0
+-120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0
+67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0
+-110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0
+76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0
+-100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0
+86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0
+-86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0
+96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0
+-76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0
+105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0
+-67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0
+115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0
+-57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0
+124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0
+-48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0
+134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0
+-38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0
+144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0
+-28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0
+153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0
+-19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0
+163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0
+-9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0
+172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0
+4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0
+14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0
+24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0
+-148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0
+33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0
+-139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0
+43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0
+-129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0
+52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0
+-120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0
+62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0
+-110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0
+72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0
+-100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0
+81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0
+-91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0
+96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0
+-81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0
+105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0
+-72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0
+115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0
+-62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0
+124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0
+-52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0
+134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0
+-43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0
+144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0
+-33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0
+153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0
+-24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0
+163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0
+172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+0.00,0.00,10.40,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0
+9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0
+19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0
+28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0
+-148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0
+38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0
+-139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0
+48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0
+-129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0
+57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0
+-120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0
+67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0
+-110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0
+76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0
+-100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0
+86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0
+-86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0
+96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0
+-76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0
+105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0
+-67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0
+115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0
+-57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0
+124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0
+-48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0
+134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0
+-38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0
+144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0
+-28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0
+153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0
+163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0
+-9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0
+172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0
+4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0
+14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0
+24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0
+33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0
+-139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0
+43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0
+-129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0
+52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0
+-120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0
+62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0
+-110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0
+72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0
+-100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0
+81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0
+-91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0
+96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0
+-81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0
+105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0
+-72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0
+115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0
+-62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0
+124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0
+-52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0
+134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0
+-43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0
+144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0
+-33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0
+153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0
+-24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0
+163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0
+172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,6.41,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0
+9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0
+19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0
+-158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0
+28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0
+-148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0
+38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0
+-139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0
+48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0
+-129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0
+57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0
+-120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0
+67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0
+-110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0
+76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0
+-100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0
+86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0
+-86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0
+96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0
+-76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0
+105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0
+-67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0
+115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0
+-57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0
+124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0
+-48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0
+134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0
+-38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0
+144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0
+-28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0
+153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0
+163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0
+172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0
+4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0
+14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0
+-158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0
+24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0
+33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0
+-139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0
+43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0
+-129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0
+52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0
+-120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0
+62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0
+-110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0
+72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0
+-100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0
+81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0
+-91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0
+96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0
+-81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0
+105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0
+-72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0
+115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0
+-62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0
+124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0
+-52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0
+134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0
+-43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0
+144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0
+-33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0
+153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0
+-24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0
+163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0
+-14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0
+172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.80,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0
+9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0
+19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0
+-158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0
+28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0
+-148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0
+38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0
+-139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0
+48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0
+-129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0
+57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0
+-120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0
+67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0
+-110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0
+76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0
+-100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0
+86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0
+-86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0
+96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0
+-76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0
+105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0
+-67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0
+115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0
+-57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0
+124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0
+-48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0
+134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0
+-38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0
+144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0
+-28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0
+153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0
+-19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0
+163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0
+172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0
+-0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0
+4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0
+-168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0
+14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0
+-158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0
+24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0
+-148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0
+33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0
+-139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0
+43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0
+-129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0
+52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0
+-120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0
+62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0
+-110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0
+72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0
+-100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0
+81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0
+-91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0
+96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0
+-81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0
+105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0
+-72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0
+115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0
+-62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0
+124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0
+-52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0
+134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0
+-43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0
+144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0
+-33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0
+153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0
+-24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0
+163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0
+-14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0
+172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.01,0.00,1.00,0.00,0.00,0
+-177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0
+-168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0
+19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0
+-158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0
+28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0
+-148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0
+38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0
+-139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0
+48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0
+-129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0
+57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0
+-120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0
+67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0
+-110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0
+76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0
+-100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0
+86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0
+-86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0
+96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0
+-76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0
+105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0
+-67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0
+115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0
+-57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0
+124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0
+-48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0
+134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0
+-38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0
+144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0
+-28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0
+153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0
+-19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0
+163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0
+172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0
+14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0
+-158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0
+24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0
+-148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0
+33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0
+-139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0
+43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0
+-129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0
+52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0
+-120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0
+62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0
+-110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0
+72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0
+-100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0
+81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0
+-91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0
+96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0
+-81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0
+105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0
+-72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0
+115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0
+-62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0
+124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0
+-52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0
+134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0
+-43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0
+144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0
+-33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0
+153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0
+-24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0
+163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0
+-4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0
+0.00,0.00,7.20,0.00,1.00,0.00,0.00,0
+-177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0
+-168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0
+19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0
+38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0
+-139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0
+48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0
+-129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0
+57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0
+-120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0
+67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0
+-110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0
+76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0
+-100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0
+86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0
+-86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0
+96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0
+-76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0
+105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0
+-67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0
+115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0
+-57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0
+124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0
+-48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0
+134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0
+-38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0
+144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0
+-19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0
+163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0
+14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0
+-148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0
+33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0
+-139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0
+43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0
+-129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0
+52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0
+-120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0
+62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0
+72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0
+-100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0
+81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0
+-91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0
+96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0
+-81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0
+105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0
+-72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0
+115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0
+-62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0
+124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0
+-52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0
+134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0
+-43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0
+144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0
+-33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0
+153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0
+0.00,0.00,9.61,0.00,1.00,0.00,0.00,0
+-177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0
+48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0
+-129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0
+57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0
+-120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0
+67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0
+-110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0
+76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0
+-100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0
+86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0
+-86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0
+96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0
+-76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0
+105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0
+-67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0
+115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0
+-57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0
+124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0
+-48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0
+134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0
+163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0
+-9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0
+-148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0
+33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0
+-139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0
+43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0
+-129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0
+52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0
+-120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0
+62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0
+72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0
+-100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0
+81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0
+-91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0
+96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0
+-81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0
+105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0
+-72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0
+115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0
+-62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0
+124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0
+-52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0
+134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0
+-43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0
+144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0
+-33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0
+153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0
+-14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0
+172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0
+0.00,0.00,5.60,0.00,1.00,0.00,0.00,0
+-177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0
+-158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0
+28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0
+-148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0
+48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0
+-129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0
+57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0
+-120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0
+67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0
+-110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0
+76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0
+-100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0
+86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0
+-86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0
+96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0
+-76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0
+105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0
+-67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0
+115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0
+-57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0
+124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0
+-48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0
+134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0
+-28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0
+153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0
+-158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0
+-148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0
+33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0
+-139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0
+43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0
+-129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0
+52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0
+-120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0
+62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0
+-110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0
+72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0
+-100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0
+81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0
+-91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0
+96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0
+-81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0
+105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0
+-72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0
+115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0
+-62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0
+124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0
+-52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0
+134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0
+-43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0
+144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0
+-33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0
+153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0
+0.00,0.00,11.21,0.00,1.00,0.00,0.00,0
+-177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0
+28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0
+-148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0
+38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0
+-139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0
+48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0
+57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0
+-120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0
+67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0
+-110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0
+76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0
+-100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0
+86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0
+-86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0
+96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0
+-76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0
+105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0
+-67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0
+115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0
+-57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0
+124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0
+-48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0
+134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0
+-38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0
+144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0
+-28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0
+153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0
+-148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0
+-139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0
+43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0
+-129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0
+52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0
+-120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0
+62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0
+-110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0
+72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0
+-100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0
+81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0
+-91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0
+96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0
+-81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0
+105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0
+-72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0
+115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0
+-62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0
+124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0
+-52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0
+134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0
+-43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0
+-33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0
+153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0
+-24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0
+163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,3.99,0.00,1.00,0.00,0.00,0
+-177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0
+19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0
+-148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0
+33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0
+43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0
+52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0
+-120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0
+62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0
+-110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0
+76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0
+-100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0
+86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0
+-86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0
+96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0
+-76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0
+105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0
+-67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0
+120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0
+-57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0
+-48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0
+139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0
+148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0
+158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0
+163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0
+43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0
+-134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0
+-124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0
+62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0
+-110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0
+72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0
+-100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0
+81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0
+-91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0
+96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0
+-81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0
+105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0
+-72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0
+115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0
+-57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0
+124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0
+-48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0
+134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0
+-38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0
+-28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0
+-24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,12.82,0.00,1.00,0.00,0.00,0
+-177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0
+-148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0
+33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0
+-129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0
+-120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0
+62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0
+-110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0
+76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0
+-100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0
+86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0
+-86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0
+96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0
+-76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0
+110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0
+-67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0
+120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0
+-57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0
+-48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0
+-163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0
+33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0
+43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0
+-134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0
+62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0
+-115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0
+72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0
+-100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0
+81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0
+-91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0
+96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0
+-81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0
+105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0
+-67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0
+115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0
+-57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0
+124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0
+-48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0
+134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0
+-38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0
+144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0
+-14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,2.39,0.00,1.00,0.00,0.00,0
+-177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0
+33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0
+-144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0
+-134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0
+62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0
+-110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0
+72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0
+-100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0
+86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0
+-86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0
+96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0
+-76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0
+110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0
+-67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0
+120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0
+-52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0
+129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0
+-19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0
+28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0
+-144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0
+38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0
+-134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0
+48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0
+57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0
+-115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0
+72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0
+-105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0
+81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0
+-91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0
+96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0
+-81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0
+105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0
+-67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0
+120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0
+-57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0
+129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0
+-48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0
+139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0
+-38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0
+158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0
+0.00,0.00,14.42,0.00,1.00,0.00,0.00,0
+-177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0
+-163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0
+24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0
+28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0
+-144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0
+38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0
+-134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0
+48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0
+62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0
+-115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0
+72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0
+86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0
+-86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0
+96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0
+-76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0
+110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0
+-62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0
+120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0
+-52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0
+134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0
+158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0
+-148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0
+38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0
+-139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0
+48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0
+-129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0
+-115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0
+67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0
+-105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0
+81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0
+-91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0
+96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0
+105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0
+-67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0
+120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0
+-52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0
+129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0
+139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0
+163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0
+0.00,0.00,0.79,0.00,1.00,0.00,0.00,0
+-177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0
+4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0
+-163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0
+19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0
+-153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0
+28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0
+-148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0
+38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0
+-139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0
+48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0
+-124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0
+57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0
+-115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0
+72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0
+86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0
+-86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0
+100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0
+-76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0
+110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0
+-62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0
+124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0
+-48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0
+134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0
+-38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0
+-28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0
+-24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0
+163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0
+168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0
+9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0
+-158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0
+-148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0
+33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0
+-139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0
+43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0
+-129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0
+-120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0
+67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0
+-105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0
+81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0
+-91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0
+96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0
+110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0
+-67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0
+120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0
+-52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0
+134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0
+144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0
+153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0
+-24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0
+-19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0
+168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA1TC16c_ISM4.csv b/scripts/testv/stvOMASA_4ISM_2MASA1TC16c_ISM4.csv
new file mode 100644
index 0000000000000000000000000000000000000000..8a14c3413ddd2dd47415bf6de3e19631f65f8f6c
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA1TC16c_ISM4.csv
@@ -0,0 +1,1500 @@
+-0.00,0.00,0.00,0.00,1.00,0.00,4.80,0
+-0.00,4.80,0.06,0.00,1.00,4.80,9.60,0
+-0.00,9.60,0.13,0.00,1.00,9.60,14.40,0
+-0.00,14.40,0.19,0.00,1.00,14.40,19.20,0
+-0.00,19.20,0.26,0.00,1.00,19.20,24.00,0
+-0.00,24.00,0.32,0.00,1.00,24.00,28.80,0
+-0.00,28.80,0.39,0.00,1.00,28.80,33.60,0
+-0.00,33.60,0.45,0.00,1.00,33.60,38.40,0
+-0.00,38.40,0.51,0.00,1.00,38.40,43.20,0
+-0.00,43.20,0.58,0.00,1.00,43.20,48.00,0
+-0.00,48.00,0.64,0.00,1.00,48.00,52.80,0
+-0.00,52.80,0.71,0.00,1.00,52.80,57.60,0
+-0.00,57.60,0.77,0.00,1.00,57.60,62.40,0
+-0.00,62.40,0.84,0.00,1.00,62.40,67.20,0
+-0.00,67.20,0.90,0.00,1.00,67.20,72.00,0
+-0.00,72.00,0.96,0.00,1.00,72.00,76.80,0
+-0.00,76.80,1.03,0.00,1.00,76.80,81.60,0
+-0.00,81.60,1.09,0.00,1.00,81.60,86.40,0
+-0.00,86.40,1.16,0.00,1.00,86.40,86.40,0
+-177.60,89.20,1.22,0.00,1.00,91.20,81.60,0
+-177.60,86.40,1.29,0.00,1.00,96.00,76.80,0
+-177.60,81.60,1.35,0.00,1.00,100.80,72.00,0
+-177.60,76.80,1.41,0.00,1.00,105.60,67.20,0
+-177.60,72.00,1.48,0.00,1.00,110.40,62.40,0
+-177.60,67.20,1.54,0.00,1.00,115.20,57.60,0
+177.60,62.40,1.61,0.00,1.00,120.00,52.80,0
+177.60,57.60,1.67,0.00,1.00,124.80,48.00,0
+177.60,52.80,1.73,0.00,1.00,129.60,43.20,0
+177.60,48.00,1.80,0.00,1.00,134.40,38.40,0
+177.60,43.20,1.86,0.00,1.00,139.20,33.60,0
+177.60,38.40,1.93,0.00,1.00,144.00,28.80,0
+177.60,33.60,1.99,0.00,1.00,148.80,24.00,0
+177.60,28.80,2.06,0.00,1.00,153.60,19.20,0
+177.60,24.00,2.12,0.00,1.00,158.40,14.40,0
+177.60,19.20,2.18,0.00,1.00,163.20,9.60,0
+177.60,14.40,2.25,0.00,1.00,168.00,4.80,0
+177.60,9.60,2.31,0.00,1.00,172.80,0.00,0
+177.60,4.80,2.38,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.44,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,2.51,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,2.57,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,2.63,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,2.70,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,2.76,0.00,1.00,-153.60,-28.80,0
+-177.60,-28.80,2.83,0.00,1.00,-148.80,-33.60,0
+-177.60,-33.60,2.89,0.00,1.00,-144.00,-38.40,0
+-177.60,-38.40,2.96,0.00,1.00,-139.20,-43.20,0
+-177.60,-48.00,3.02,0.00,1.00,-134.40,-48.00,0
+-177.60,-48.00,3.08,0.00,1.00,-129.60,-52.80,0
+-177.60,-52.80,3.15,0.00,1.00,-124.80,-57.60,0
+-177.60,-57.60,3.21,0.00,1.00,-120.00,-62.40,0
+177.60,-62.40,3.28,0.00,1.00,-115.20,-67.20,0
+177.60,-67.20,3.34,0.00,1.00,-110.40,-72.00,0
+177.60,-76.80,3.41,0.00,1.00,-105.60,-76.80,0
+177.60,-76.80,3.47,0.00,1.00,-100.80,-81.60,0
+177.60,-86.40,3.53,0.00,1.00,-96.00,-86.40,0
+177.60,-89.20,3.60,0.00,1.00,-91.20,-86.40,0
+0.00,-86.40,3.66,0.00,1.00,-86.40,-81.60,0
+0.00,-81.60,3.73,0.00,1.00,-81.60,-76.80,0
+0.00,-76.80,3.79,0.00,1.00,-76.80,-72.00,0
+0.00,-72.00,3.86,0.00,1.00,-72.00,-67.20,0
+0.00,-67.20,3.92,0.00,1.00,-67.20,-62.40,0
+0.00,-62.40,3.98,0.00,1.00,-62.40,-57.60,0
+0.00,-57.60,4.05,0.00,1.00,-57.60,-52.80,0
+0.00,-52.80,4.11,0.00,1.00,-52.80,-48.00,0
+0.00,-48.00,4.18,0.00,1.00,-48.00,-43.20,0
+0.00,-43.20,4.24,0.00,1.00,-43.20,-38.40,0
+0.00,-38.40,4.31,0.00,1.00,-38.40,-33.60,0
+0.00,-33.60,4.37,0.00,1.00,-33.60,-28.80,0
+0.00,-28.80,4.43,0.00,1.00,-28.80,-24.00,0
+0.00,-24.00,4.50,0.00,1.00,-24.00,-19.20,0
+0.00,-19.20,4.56,0.00,1.00,-19.20,-14.40,0
+0.00,-14.40,4.63,0.00,1.00,-14.40,-9.60,0
+0.00,-9.60,4.69,0.00,1.00,-9.60,-4.80,0
+0.00,-4.80,4.76,0.00,1.00,-4.80,0.00,0
+0.00,0.00,4.82,0.00,1.00,0.00,4.80,0
+0.00,4.80,4.88,0.00,1.00,4.80,9.60,0
+0.00,9.60,4.95,0.00,1.00,9.60,14.40,0
+0.00,14.40,5.01,0.00,1.00,14.40,19.20,0
+0.00,19.20,5.08,0.00,1.00,19.20,24.00,0
+0.00,24.00,5.14,0.00,1.00,24.00,28.80,0
+4.80,28.80,5.20,0.00,1.00,28.80,33.60,0
+4.80,33.60,5.27,0.00,1.00,33.60,38.40,0
+4.80,38.40,5.33,0.00,1.00,38.40,43.20,0
+4.80,43.20,5.40,0.00,1.00,43.20,48.00,0
+4.80,48.00,5.46,0.00,1.00,48.00,52.80,0
+4.80,52.80,5.53,0.00,1.00,52.80,57.60,0
+9.60,57.60,5.59,0.00,1.00,57.60,62.40,0
+9.60,62.40,5.65,0.00,1.00,62.40,67.20,0
+9.60,67.20,5.72,0.00,1.00,67.20,72.00,0
+14.40,72.00,5.78,0.00,1.00,72.00,76.80,0
+19.20,76.80,5.85,0.00,1.00,76.80,81.60,0
+28.80,81.60,5.91,0.00,1.00,81.60,86.40,0
+52.80,86.40,5.98,0.00,1.00,86.40,86.40,0
+105.60,86.40,6.04,0.00,1.00,91.20,81.60,0
+139.20,81.60,6.10,0.00,1.00,96.00,76.80,0
+158.40,76.80,6.17,0.00,1.00,100.80,72.00,0
+163.20,72.00,6.23,0.00,1.00,105.60,67.20,0
+168.00,67.20,6.30,0.00,1.00,110.40,62.40,0
+168.00,62.40,6.36,0.00,1.00,115.20,57.60,0
+172.80,57.60,6.43,0.00,1.00,120.00,52.80,0
+172.80,52.80,6.49,0.00,1.00,124.80,48.00,0
+172.80,48.00,6.55,0.00,1.00,129.60,43.20,0
+172.80,43.20,6.62,0.00,1.00,134.40,38.40,0
+177.60,38.40,6.68,0.00,1.00,139.20,33.60,0
+177.60,33.60,6.75,0.00,1.00,144.00,28.80,0
+177.60,28.80,6.81,0.00,1.00,148.80,24.00,0
+177.60,24.00,6.88,0.00,1.00,153.60,19.20,0
+177.60,19.20,6.94,0.00,1.00,158.40,14.40,0
+177.60,14.40,7.00,0.00,1.00,163.20,9.60,0
+177.60,9.60,7.07,0.00,1.00,168.00,4.80,0
+177.60,4.80,7.13,0.00,1.00,172.80,0.00,0
+177.60,0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,7.26,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,7.33,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,7.39,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,7.45,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,7.52,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,7.58,0.00,1.00,-153.60,-28.80,0
+-177.60,-28.80,7.65,0.00,1.00,-148.80,-33.60,0
+-177.60,-33.60,7.71,0.00,1.00,-144.00,-38.40,0
+-177.60,-38.40,7.78,0.00,1.00,-139.20,-43.20,0
+-172.80,-43.20,7.84,0.00,1.00,-134.40,-48.00,0
+-172.80,-48.00,7.90,0.00,1.00,-129.60,-52.80,0
+-172.80,-52.80,7.97,0.00,1.00,-124.80,-57.60,0
+-172.80,-57.60,8.03,0.00,1.00,-120.00,-62.40,0
+-168.00,-62.40,8.10,0.00,1.00,-115.20,-67.20,0
+-168.00,-67.20,8.16,0.00,1.00,-110.40,-72.00,0
+-163.20,-72.00,8.22,0.00,1.00,-105.60,-76.80,0
+-158.40,-76.80,8.29,0.00,1.00,-100.80,-81.60,0
+-139.20,-81.60,8.35,0.00,1.00,-96.00,-86.40,0
+-105.60,-86.40,8.42,0.00,1.00,-91.20,-86.40,0
+-52.80,-86.40,8.48,0.00,1.00,-86.40,-81.60,0
+-28.80,-81.60,8.55,0.00,1.00,-81.60,-76.80,0
+-19.20,-76.80,8.61,0.00,1.00,-76.80,-72.00,0
+-14.40,-72.00,8.67,0.00,1.00,-72.00,-67.20,0
+-9.60,-67.20,8.74,0.00,1.00,-67.20,-62.40,0
+-9.60,-62.40,8.80,0.00,1.00,-62.40,-57.60,0
+-9.60,-57.60,8.87,0.00,1.00,-57.60,-52.80,0
+-4.80,-52.80,8.93,0.00,1.00,-52.80,-48.00,0
+-4.80,-48.00,9.00,0.00,1.00,-48.00,-43.20,0
+-4.80,-43.20,9.06,0.00,1.00,-43.20,-38.40,0
+-4.80,-38.40,9.12,0.00,1.00,-38.40,-33.60,0
+-4.80,-33.60,9.19,0.00,1.00,-33.60,-28.80,0
+-4.80,-28.80,9.25,0.00,1.00,-28.80,-24.00,0
+-0.00,-24.00,9.32,0.00,1.00,-24.00,-19.20,0
+-0.00,-19.20,9.38,0.00,1.00,-19.20,-14.40,0
+-0.00,-14.40,9.45,0.00,1.00,-14.40,-9.60,0
+-0.00,-9.60,9.51,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,9.57,0.00,1.00,-4.80,0.00,0
+0.00,0.00,9.64,0.00,1.00,0.00,4.80,0
+0.00,4.80,9.70,0.00,1.00,4.80,9.60,0
+0.00,9.60,9.77,0.00,1.00,9.60,14.40,0
+4.80,14.40,9.83,0.00,1.00,14.40,19.20,0
+4.80,19.20,9.90,0.00,1.00,19.20,24.00,0
+4.80,24.00,9.96,0.00,1.00,24.00,28.80,0
+4.80,28.80,10.02,0.00,1.00,28.80,33.60,0
+4.80,33.60,10.09,0.00,1.00,33.60,38.40,0
+9.60,38.40,10.15,0.00,1.00,38.40,43.20,0
+9.60,43.20,10.22,0.00,1.00,43.20,48.00,0
+9.60,48.00,10.28,0.00,1.00,48.00,52.80,0
+14.40,52.80,10.35,0.00,1.00,52.80,57.60,0
+14.40,57.60,10.41,0.00,1.00,57.60,62.40,0
+19.20,62.40,10.47,0.00,1.00,62.40,67.20,0
+24.00,67.20,10.54,0.00,1.00,67.20,72.00,0
+28.80,72.00,10.60,0.00,1.00,72.00,72.00,0
+33.60,72.00,10.67,0.00,1.00,76.80,76.80,0
+48.00,76.80,10.73,0.00,1.00,81.60,81.60,0
+67.20,81.60,10.80,0.00,1.00,86.40,81.60,0
+96.00,81.60,10.86,0.00,1.00,91.20,81.60,0
+120.00,76.80,10.92,0.00,1.00,96.00,76.80,0
+139.20,76.80,10.99,0.00,1.00,100.80,72.00,0
+148.80,72.00,11.05,0.00,1.00,105.60,67.20,0
+153.60,67.20,11.12,0.00,1.00,110.40,62.40,0
+158.40,62.40,11.18,0.00,1.00,115.20,57.60,0
+163.20,57.60,11.24,0.00,1.00,120.00,52.80,0
+168.00,52.80,11.31,0.00,1.00,124.80,48.00,0
+168.00,48.00,11.37,0.00,1.00,129.60,43.20,0
+168.00,43.20,11.44,0.00,1.00,134.40,38.40,0
+172.80,38.40,11.50,0.00,1.00,139.20,33.60,0
+172.80,33.60,11.57,0.00,1.00,144.00,28.80,0
+172.80,28.80,11.63,0.00,1.00,148.80,24.00,0
+177.60,24.00,11.69,0.00,1.00,153.60,19.20,0
+177.60,19.20,11.76,0.00,1.00,158.40,14.40,0
+177.60,14.40,11.82,0.00,1.00,163.20,9.60,0
+177.60,9.60,11.89,0.00,1.00,168.00,4.80,0
+177.60,4.80,11.95,0.00,1.00,172.80,0.00,0
+177.60,0.00,12.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,12.08,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,12.14,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,12.21,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,12.27,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,12.34,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,12.40,0.00,1.00,-153.60,-28.80,0
+-172.80,-28.80,12.47,0.00,1.00,-148.80,-33.60,0
+-172.80,-33.60,12.53,0.00,1.00,-144.00,-38.40,0
+-172.80,-38.40,12.59,0.00,1.00,-139.20,-43.20,0
+-168.00,-43.20,12.66,0.00,1.00,-134.40,-48.00,0
+-168.00,-48.00,12.72,0.00,1.00,-129.60,-52.80,0
+-168.00,-52.80,12.79,0.00,1.00,-124.80,-57.60,0
+-163.20,-57.60,12.85,0.00,1.00,-120.00,-62.40,0
+-158.40,-62.40,12.92,0.00,1.00,-115.20,-67.20,0
+-153.60,-67.20,12.98,0.00,1.00,-110.40,-72.00,0
+-148.80,-72.00,13.04,0.00,1.00,-105.60,-76.80,0
+-139.20,-76.80,13.11,0.00,1.00,-100.80,-81.60,0
+-120.00,-76.80,13.17,0.00,1.00,-96.00,-81.60,0
+-96.00,-81.60,13.24,0.00,1.00,-91.20,-81.60,0
+-67.20,-81.60,13.30,0.00,1.00,-86.40,-76.80,0
+-48.00,-76.80,13.37,0.00,1.00,-81.60,-72.00,0
+-33.60,-72.00,13.43,0.00,1.00,-76.80,-72.00,0
+-28.80,-72.00,13.49,0.00,1.00,-72.00,-67.20,0
+-24.00,-67.20,13.56,0.00,1.00,-67.20,-62.40,0
+-19.20,-62.40,13.62,0.00,1.00,-62.40,-57.60,0
+-14.40,-57.60,13.69,0.00,1.00,-57.60,-52.80,0
+-14.40,-52.80,13.75,0.00,1.00,-52.80,-48.00,0
+-9.60,-48.00,13.82,0.00,1.00,-48.00,-43.20,0
+-9.60,-43.20,13.88,0.00,1.00,-43.20,-38.40,0
+-9.60,-38.40,13.94,0.00,1.00,-38.40,-33.60,0
+-4.80,-33.60,14.01,0.00,1.00,-33.60,-28.80,0
+-4.80,-28.80,14.07,0.00,1.00,-28.80,-24.00,0
+-4.80,-24.00,14.14,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,14.20,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,14.27,0.00,1.00,-14.40,-9.60,0
+-0.00,-9.60,14.33,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,14.39,0.00,1.00,-4.80,0.00,0
+0.00,0.00,14.46,0.00,1.00,0.00,4.80,0
+0.00,4.80,14.52,0.00,1.00,4.80,9.60,0
+4.80,9.60,14.59,0.00,1.00,9.60,14.40,0
+4.80,14.40,14.65,0.00,1.00,14.40,19.20,0
+4.80,19.20,14.71,0.00,1.00,19.20,24.00,0
+4.80,24.00,14.78,0.00,1.00,24.00,28.80,0
+9.60,28.80,14.84,0.00,1.00,28.80,33.60,0
+9.60,33.60,14.91,0.00,1.00,33.60,38.40,0
+9.60,38.40,14.97,0.00,1.00,38.40,43.20,0
+14.40,43.20,15.04,0.00,1.00,43.20,48.00,0
+14.40,48.00,15.10,0.00,1.00,48.00,52.80,0
+19.20,52.80,15.16,0.00,1.00,52.80,57.60,0
+19.20,52.80,15.23,0.00,1.00,57.60,57.60,0
+24.00,57.60,15.29,0.00,1.00,62.40,62.40,0
+28.80,62.40,15.36,0.00,1.00,67.20,67.20,0
+38.40,67.20,15.42,0.00,1.00,72.00,72.00,0
+48.00,72.00,15.49,0.00,1.00,76.80,72.00,0
+57.60,72.00,15.55,0.00,1.00,81.60,76.80,0
+76.80,76.80,15.61,0.00,1.00,86.40,76.80,0
+96.00,76.80,15.68,0.00,1.00,91.20,76.80,0
+115.20,76.80,15.74,0.00,1.00,96.00,72.00,0
+129.60,72.00,15.81,0.00,1.00,100.80,72.00,0
+139.20,67.20,15.87,0.00,1.00,105.60,67.20,0
+144.00,67.20,15.94,0.00,1.00,110.40,62.40,0
+153.60,62.40,16.00,0.00,1.00,115.20,57.60,0
+158.40,57.60,16.00,0.00,1.00,120.00,52.80,0
+158.40,52.80,15.94,0.00,1.00,124.80,48.00,0
+163.20,48.00,15.87,0.00,1.00,129.60,43.20,0
+168.00,43.20,15.81,0.00,1.00,134.40,38.40,0
+168.00,38.40,15.74,0.00,1.00,139.20,33.60,0
+168.00,33.60,15.68,0.00,1.00,144.00,28.80,0
+172.80,28.80,15.61,0.00,1.00,148.80,24.00,0
+172.80,24.00,15.55,0.00,1.00,153.60,19.20,0
+172.80,19.20,15.49,0.00,1.00,158.40,14.40,0
+177.60,14.40,15.42,0.00,1.00,163.20,9.60,0
+177.60,9.60,15.36,0.00,1.00,168.00,4.80,0
+177.60,4.80,15.29,0.00,1.00,172.80,0.00,0
+177.60,0.00,15.23,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,15.16,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,15.10,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,15.04,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,14.97,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,14.91,0.00,1.00,-158.40,-24.00,0
+-172.80,-24.00,14.84,0.00,1.00,-153.60,-28.80,0
+-172.80,-28.80,14.78,0.00,1.00,-148.80,-33.60,0
+-168.00,-33.60,14.71,0.00,1.00,-144.00,-38.40,0
+-168.00,-38.40,14.65,0.00,1.00,-139.20,-43.20,0
+-168.00,-43.20,14.59,0.00,1.00,-134.40,-48.00,0
+-163.20,-48.00,14.52,0.00,1.00,-129.60,-52.80,0
+-158.40,-52.80,14.46,0.00,1.00,-124.80,-57.60,0
+-158.40,-57.60,14.39,0.00,1.00,-120.00,-62.40,0
+-153.60,-62.40,14.33,0.00,1.00,-115.20,-67.20,0
+-144.00,-67.20,14.27,0.00,1.00,-110.40,-72.00,0
+-139.20,-67.20,14.20,0.00,1.00,-105.60,-72.00,0
+-129.60,-72.00,14.14,0.00,1.00,-100.80,-76.80,0
+-115.20,-76.80,14.07,0.00,1.00,-96.00,-76.80,0
+-96.00,-76.80,14.01,0.00,1.00,-91.20,-76.80,0
+-76.80,-76.80,13.94,0.00,1.00,-86.40,-72.00,0
+-57.60,-72.00,13.88,0.00,1.00,-81.60,-72.00,0
+-48.00,-72.00,13.82,0.00,1.00,-76.80,-67.20,0
+-38.40,-67.20,13.75,0.00,1.00,-72.00,-62.40,0
+-28.80,-62.40,13.69,0.00,1.00,-67.20,-57.60,0
+-24.00,-57.60,13.62,0.00,1.00,-62.40,-57.60,0
+-19.20,-52.80,13.56,0.00,1.00,-57.60,-52.80,0
+-19.20,-52.80,13.49,0.00,1.00,-52.80,-48.00,0
+-14.40,-48.00,13.43,0.00,1.00,-48.00,-43.20,0
+-14.40,-43.20,13.37,0.00,1.00,-43.20,-38.40,0
+-9.60,-38.40,13.30,0.00,1.00,-38.40,-33.60,0
+-9.60,-33.60,13.24,0.00,1.00,-33.60,-28.80,0
+-9.60,-28.80,13.17,0.00,1.00,-28.80,-24.00,0
+-4.80,-24.00,13.11,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,13.04,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,12.98,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,12.92,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,12.85,0.00,1.00,-4.80,0.00,0
+0.00,0.00,12.79,0.00,1.00,0.00,4.80,0
+0.00,4.80,12.72,0.00,1.00,4.80,9.60,0
+4.80,9.60,12.66,0.00,1.00,9.60,14.40,0
+4.80,14.40,12.59,0.00,1.00,14.40,19.20,0
+4.80,19.20,12.53,0.00,1.00,19.20,24.00,0
+9.60,24.00,12.47,0.00,1.00,24.00,28.80,0
+9.60,28.80,12.40,0.00,1.00,28.80,33.60,0
+14.40,33.60,12.34,0.00,1.00,33.60,38.40,0
+14.40,33.60,12.27,0.00,1.00,38.40,38.40,0
+19.20,38.40,12.21,0.00,1.00,43.20,43.20,0
+19.20,43.20,12.14,0.00,1.00,48.00,48.00,0
+24.00,48.00,12.08,0.00,1.00,52.80,52.80,0
+28.80,52.80,12.02,0.00,1.00,57.60,57.60,0
+33.60,57.60,11.95,0.00,1.00,62.40,62.40,0
+38.40,62.40,11.89,0.00,1.00,67.20,62.40,0
+43.20,62.40,11.82,0.00,1.00,72.00,67.20,0
+52.80,67.20,11.76,0.00,1.00,76.80,72.00,0
+67.20,67.20,11.69,0.00,1.00,81.60,72.00,0
+76.80,72.00,11.63,0.00,1.00,86.40,72.00,0
+96.00,72.00,11.57,0.00,1.00,91.20,72.00,0
+105.60,72.00,11.50,0.00,1.00,96.00,67.20,0
+120.00,67.20,11.44,0.00,1.00,100.80,67.20,0
+129.60,67.20,11.37,0.00,1.00,105.60,62.40,0
+139.20,62.40,11.31,0.00,1.00,110.40,57.60,0
+144.00,57.60,11.24,0.00,1.00,115.20,57.60,0
+148.80,52.80,11.18,0.00,1.00,120.00,52.80,0
+153.60,52.80,11.12,0.00,1.00,124.80,48.00,0
+158.40,48.00,11.05,0.00,1.00,129.60,43.20,0
+163.20,43.20,10.99,0.00,1.00,134.40,38.40,0
+163.20,38.40,10.92,0.00,1.00,139.20,33.60,0
+168.00,33.60,10.86,0.00,1.00,144.00,28.80,0
+168.00,28.80,10.80,0.00,1.00,148.80,24.00,0
+172.80,24.00,10.73,0.00,1.00,153.60,19.20,0
+172.80,19.20,10.67,0.00,1.00,158.40,14.40,0
+172.80,14.40,10.60,0.00,1.00,163.20,9.60,0
+177.60,9.60,10.54,0.00,1.00,168.00,4.80,0
+177.60,4.80,10.47,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.35,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,10.28,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,10.22,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,10.15,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,10.09,0.00,1.00,-158.40,-24.00,0
+-172.80,-24.00,10.02,0.00,1.00,-153.60,-28.80,0
+-168.00,-28.80,9.96,0.00,1.00,-148.80,-33.60,0
+-168.00,-33.60,9.90,0.00,1.00,-144.00,-38.40,0
+-163.20,-38.40,9.83,0.00,1.00,-139.20,-43.20,0
+-163.20,-43.20,9.77,0.00,1.00,-134.40,-48.00,0
+-158.40,-48.00,9.70,0.00,1.00,-129.60,-52.80,0
+-153.60,-52.80,9.64,0.00,1.00,-124.80,-57.60,0
+-148.80,-52.80,9.57,0.00,1.00,-120.00,-57.60,0
+-144.00,-57.60,9.51,0.00,1.00,-115.20,-62.40,0
+-139.20,-62.40,9.45,0.00,1.00,-110.40,-67.20,0
+-129.60,-67.20,9.38,0.00,1.00,-105.60,-67.20,0
+-120.00,-67.20,9.32,0.00,1.00,-100.80,-72.00,0
+-105.60,-72.00,9.25,0.00,1.00,-96.00,-72.00,0
+-96.00,-72.00,9.19,0.00,1.00,-91.20,-72.00,0
+-76.80,-72.00,9.12,0.00,1.00,-86.40,-72.00,0
+-67.20,-67.20,9.06,0.00,1.00,-81.60,-67.20,0
+-52.80,-67.20,9.00,0.00,1.00,-76.80,-62.40,0
+-43.20,-62.40,8.93,0.00,1.00,-72.00,-62.40,0
+-38.40,-62.40,8.87,0.00,1.00,-67.20,-57.60,0
+-33.60,-57.60,8.80,0.00,1.00,-62.40,-52.80,0
+-28.80,-52.80,8.74,0.00,1.00,-57.60,-48.00,0
+-24.00,-48.00,8.67,0.00,1.00,-52.80,-43.20,0
+-19.20,-43.20,8.61,0.00,1.00,-48.00,-38.40,0
+-19.20,-38.40,8.55,0.00,1.00,-43.20,-38.40,0
+-14.40,-33.60,8.48,0.00,1.00,-38.40,-33.60,0
+-14.40,-33.60,8.42,0.00,1.00,-33.60,-28.80,0
+-9.60,-28.80,8.35,0.00,1.00,-28.80,-24.00,0
+-9.60,-24.00,8.29,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,8.22,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,8.16,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,8.10,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,8.03,0.00,1.00,-4.80,0.00,0
+0.00,0.00,7.97,0.00,1.00,0.00,4.80,0
+0.00,4.80,7.90,0.00,1.00,4.80,9.60,0
+4.80,9.60,7.84,0.00,1.00,9.60,14.40,0
+4.80,14.40,7.78,0.00,1.00,14.40,19.20,0
+9.60,19.20,7.71,0.00,1.00,19.20,24.00,0
+9.60,24.00,7.65,0.00,1.00,24.00,24.00,0
+14.40,24.00,7.58,0.00,1.00,28.80,28.80,0
+14.40,28.80,7.52,0.00,1.00,33.60,33.60,0
+19.20,33.60,7.45,0.00,1.00,33.60,38.40,0
+19.20,38.40,7.39,0.00,1.00,38.40,43.20,0
+24.00,43.20,7.33,0.00,1.00,43.20,48.00,0
+28.80,48.00,7.26,0.00,1.00,48.00,52.80,0
+33.60,52.80,7.20,0.00,1.00,57.60,52.80,0
+38.40,52.80,7.13,0.00,1.00,62.40,57.60,0
+43.20,57.60,7.07,0.00,1.00,67.20,62.40,0
+52.80,62.40,7.00,0.00,1.00,72.00,62.40,0
+62.40,62.40,6.94,0.00,1.00,76.80,67.20,0
+72.00,62.40,6.88,0.00,1.00,81.60,67.20,0
+81.60,67.20,6.81,0.00,1.00,86.40,67.20,0
+91.20,67.20,6.75,0.00,1.00,91.20,67.20,0
+105.60,67.20,6.68,0.00,1.00,96.00,67.20,0
+115.20,62.40,6.62,0.00,1.00,100.80,62.40,0
+124.80,62.40,6.55,0.00,1.00,105.60,57.60,0
+134.40,57.60,6.49,0.00,1.00,110.40,57.60,0
+139.20,57.60,6.43,0.00,1.00,115.20,52.80,0
+144.00,52.80,6.36,0.00,1.00,120.00,48.00,0
+148.80,48.00,6.30,0.00,1.00,129.60,43.20,0
+153.60,43.20,6.23,0.00,1.00,134.40,43.20,0
+158.40,38.40,6.17,0.00,1.00,139.20,38.40,0
+158.40,38.40,6.10,0.00,1.00,144.00,33.60,0
+163.20,33.60,6.04,0.00,1.00,148.80,28.80,0
+168.00,28.80,5.98,0.00,1.00,148.80,24.00,0
+168.00,24.00,5.91,0.00,1.00,153.60,19.20,0
+172.80,19.20,5.85,0.00,1.00,158.40,14.40,0
+172.80,14.40,5.78,0.00,1.00,163.20,9.60,0
+172.80,9.60,5.72,0.00,1.00,168.00,4.80,0
+177.60,4.80,5.65,0.00,1.00,172.80,0.00,0
+177.60,0.00,5.59,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.53,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,5.46,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,5.40,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,5.33,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,5.27,0.00,1.00,-158.40,-24.00,0
+-168.00,-24.00,5.20,0.00,1.00,-153.60,-28.80,0
+-168.00,-28.80,5.14,0.00,1.00,-148.80,-33.60,0
+-163.20,-33.60,5.08,0.00,1.00,-148.80,-38.40,0
+-158.40,-38.40,5.01,0.00,1.00,-144.00,-43.20,0
+-158.40,-38.40,4.95,0.00,1.00,-139.20,-43.20,0
+-153.60,-43.20,4.88,0.00,1.00,-134.40,-48.00,0
+-148.80,-48.00,4.82,0.00,1.00,-129.60,-52.80,0
+-144.00,-52.80,4.76,0.00,1.00,-120.00,-57.60,0
+-139.20,-57.60,4.69,0.00,1.00,-115.20,-57.60,0
+-134.40,-57.60,4.63,0.00,1.00,-110.40,-62.40,0
+-124.80,-62.40,4.56,0.00,1.00,-105.60,-67.20,0
+-115.20,-62.40,4.50,0.00,1.00,-100.80,-67.20,0
+-105.60,-67.20,4.43,0.00,1.00,-96.00,-67.20,0
+-91.20,-67.20,4.37,0.00,1.00,-91.20,-67.20,0
+-81.60,-67.20,4.31,0.00,1.00,-86.40,-67.20,0
+-72.00,-62.40,4.24,0.00,1.00,-81.60,-62.40,0
+-62.40,-62.40,4.18,0.00,1.00,-76.80,-62.40,0
+-52.80,-62.40,4.11,0.00,1.00,-72.00,-57.60,0
+-43.20,-57.60,4.05,0.00,1.00,-67.20,-52.80,0
+-38.40,-52.80,3.98,0.00,1.00,-62.40,-52.80,0
+-33.60,-52.80,3.92,0.00,1.00,-57.60,-48.00,0
+-28.80,-48.00,3.86,0.00,1.00,-48.00,-43.20,0
+-24.00,-43.20,3.79,0.00,1.00,-43.20,-38.40,0
+-19.20,-38.40,3.73,0.00,1.00,-38.40,-33.60,0
+-19.20,-33.60,3.66,0.00,1.00,-33.60,-28.80,0
+-14.40,-28.80,3.60,0.00,1.00,-33.60,-24.00,0
+-14.40,-24.00,3.53,0.00,1.00,-28.80,-24.00,0
+-9.60,-24.00,3.47,0.00,1.00,-24.00,-19.20,0
+-9.60,-19.20,3.41,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,3.34,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,3.28,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,3.21,0.00,1.00,-4.80,0.00,0
+0.00,0.00,3.15,0.00,1.00,0.00,4.80,0
+0.00,4.80,3.08,0.00,1.00,4.80,9.60,0
+4.80,9.60,3.02,0.00,1.00,9.60,14.40,0
+4.80,14.40,2.96,0.00,1.00,14.40,19.20,0
+9.60,14.40,2.89,0.00,1.00,19.20,19.20,0
+14.40,19.20,2.83,0.00,1.00,19.20,24.00,0
+14.40,24.00,2.76,0.00,1.00,24.00,28.80,0
+19.20,28.80,2.70,0.00,1.00,28.80,33.60,0
+19.20,33.60,2.63,0.00,1.00,33.60,38.40,0
+24.00,38.40,2.57,0.00,1.00,38.40,43.20,0
+28.80,38.40,2.51,0.00,1.00,43.20,43.20,0
+33.60,43.20,2.44,0.00,1.00,48.00,48.00,0
+38.40,48.00,2.38,0.00,1.00,52.80,52.80,0
+43.20,52.80,2.31,0.00,1.00,57.60,52.80,0
+48.00,52.80,2.25,0.00,1.00,62.40,57.60,0
+57.60,57.60,2.18,0.00,1.00,72.00,57.60,0
+62.40,57.60,2.12,0.00,1.00,76.80,62.40,0
+72.00,62.40,2.06,0.00,1.00,81.60,62.40,0
+81.60,62.40,1.99,0.00,1.00,86.40,62.40,0
+91.20,62.40,1.93,0.00,1.00,91.20,62.40,0
+100.80,62.40,1.86,0.00,1.00,96.00,62.40,0
+110.40,57.60,1.80,0.00,1.00,100.80,57.60,0
+120.00,57.60,1.73,0.00,1.00,105.60,57.60,0
+129.60,57.60,1.67,0.00,1.00,115.20,52.80,0
+134.40,52.80,1.61,0.00,1.00,120.00,48.00,0
+139.20,48.00,1.54,0.00,1.00,124.80,48.00,0
+144.00,48.00,1.48,0.00,1.00,129.60,43.20,0
+148.80,43.20,1.41,0.00,1.00,134.40,38.40,0
+153.60,38.40,1.35,0.00,1.00,139.20,33.60,0
+158.40,33.60,1.29,0.00,1.00,144.00,33.60,0
+158.40,28.80,1.22,0.00,1.00,148.80,28.80,0
+163.20,28.80,1.16,0.00,1.00,153.60,24.00,0
+168.00,24.00,1.09,0.00,1.00,158.40,19.20,0
+168.00,19.20,1.03,0.00,1.00,163.20,14.40,0
+172.80,14.40,0.96,0.00,1.00,163.20,9.60,0
+172.80,9.60,0.90,0.00,1.00,168.00,4.80,0
+177.60,4.80,0.84,0.00,1.00,172.80,0.00,0
+177.60,0.00,0.77,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,0.71,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,0.64,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,0.58,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,0.51,0.00,1.00,-163.20,-19.20,0
+-168.00,-19.20,0.45,0.00,1.00,-163.20,-24.00,0
+-168.00,-24.00,0.39,0.00,1.00,-158.40,-28.80,0
+-163.20,-28.80,0.32,0.00,1.00,-153.60,-33.60,0
+-158.40,-28.80,0.26,0.00,1.00,-148.80,-33.60,0
+-158.40,-33.60,0.19,0.00,1.00,-144.00,-38.40,0
+-153.60,-38.40,0.13,0.00,1.00,-139.20,-43.20,0
+-148.80,-43.20,0.06,0.00,1.00,-134.40,-48.00,0
+-144.00,-48.00,0.00,0.00,1.00,-129.60,-48.00,0
+-139.20,-48.00,0.00,0.00,1.00,-124.80,-52.80,0
+-134.40,-52.80,0.16,0.00,1.00,-120.00,-57.60,0
+-129.60,-57.60,0.32,0.00,1.00,-115.20,-57.60,0
+-120.00,-57.60,0.48,0.00,1.00,-105.60,-62.40,0
+-110.40,-57.60,0.65,0.00,1.00,-100.80,-62.40,0
+-100.80,-62.40,0.81,0.00,1.00,-96.00,-62.40,0
+-91.20,-62.40,0.97,0.00,1.00,-91.20,-62.40,0
+-81.60,-62.40,1.13,0.00,1.00,-86.40,-62.40,0
+-72.00,-62.40,1.29,0.00,1.00,-81.60,-57.60,0
+-62.40,-57.60,1.45,0.00,1.00,-76.80,-57.60,0
+-57.60,-57.60,1.62,0.00,1.00,-72.00,-52.80,0
+-48.00,-52.80,1.78,0.00,1.00,-62.40,-52.80,0
+-43.20,-52.80,1.94,0.00,1.00,-57.60,-48.00,0
+-38.40,-48.00,2.10,0.00,1.00,-52.80,-43.20,0
+-33.60,-43.20,2.26,0.00,1.00,-48.00,-43.20,0
+-28.80,-38.40,2.42,0.00,1.00,-43.20,-38.40,0
+-24.00,-38.40,2.59,0.00,1.00,-38.40,-33.60,0
+-19.20,-33.60,2.75,0.00,1.00,-33.60,-28.80,0
+-19.20,-28.80,2.91,0.00,1.00,-28.80,-24.00,0
+-14.40,-24.00,3.07,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,3.23,0.00,1.00,-19.20,-19.20,0
+-9.60,-14.40,3.39,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,3.56,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,3.72,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,3.88,0.00,1.00,-4.80,0.00,0
+0.00,0.00,4.04,0.00,1.00,0.00,4.80,0
+4.80,4.80,4.20,0.00,1.00,4.80,9.60,0
+4.80,9.60,4.36,0.00,1.00,9.60,14.40,0
+9.60,9.60,4.53,0.00,1.00,14.40,14.40,0
+9.60,14.40,4.69,0.00,1.00,14.40,19.20,0
+14.40,19.20,4.85,0.00,1.00,19.20,24.00,0
+19.20,24.00,5.01,0.00,1.00,24.00,28.80,0
+19.20,28.80,5.17,0.00,1.00,28.80,33.60,0
+24.00,28.80,5.33,0.00,1.00,33.60,33.60,0
+28.80,33.60,5.49,0.00,1.00,38.40,38.40,0
+33.60,38.40,5.66,0.00,1.00,43.20,43.20,0
+38.40,43.20,5.82,0.00,1.00,48.00,43.20,0
+43.20,43.20,5.98,0.00,1.00,52.80,48.00,0
+48.00,48.00,6.14,0.00,1.00,57.60,52.80,0
+52.80,48.00,6.30,0.00,1.00,62.40,52.80,0
+57.60,52.80,6.46,0.00,1.00,67.20,57.60,0
+67.20,52.80,6.63,0.00,1.00,72.00,57.60,0
+76.80,57.60,6.79,0.00,1.00,81.60,57.60,0
+81.60,57.60,6.95,0.00,1.00,86.40,57.60,0
+91.20,57.60,7.11,0.00,1.00,91.20,57.60,0
+100.80,57.60,7.27,0.00,1.00,96.00,57.60,0
+110.40,52.80,7.43,0.00,1.00,100.80,52.80,0
+115.20,52.80,7.60,0.00,1.00,110.40,52.80,0
+124.80,52.80,7.76,0.00,1.00,115.20,48.00,0
+129.60,48.00,7.92,0.00,1.00,120.00,48.00,0
+134.40,48.00,8.08,0.00,1.00,124.80,43.20,0
+139.20,43.20,8.24,0.00,1.00,129.60,38.40,0
+144.00,38.40,8.40,0.00,1.00,134.40,38.40,0
+148.80,38.40,8.57,0.00,1.00,139.20,33.60,0
+153.60,33.60,8.73,0.00,1.00,144.00,28.80,0
+158.40,28.80,8.89,0.00,1.00,148.80,24.00,0
+163.20,24.00,9.05,0.00,1.00,153.60,24.00,0
+163.20,24.00,9.21,0.00,1.00,158.40,19.20,0
+168.00,19.20,9.37,0.00,1.00,163.20,14.40,0
+172.80,14.40,9.54,0.00,1.00,168.00,9.60,0
+172.80,9.60,9.70,0.00,1.00,168.00,4.80,0
+177.60,4.80,9.86,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.18,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,10.34,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,10.51,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,10.67,0.00,1.00,-168.00,-19.20,0
+-168.00,-19.20,10.83,0.00,1.00,-163.20,-24.00,0
+-163.20,-24.00,10.99,0.00,1.00,-158.40,-24.00,0
+-163.20,-24.00,11.15,0.00,1.00,-153.60,-28.80,0
+-158.40,-28.80,11.31,0.00,1.00,-148.80,-33.60,0
+-153.60,-33.60,11.47,0.00,1.00,-144.00,-38.40,0
+-148.80,-38.40,11.64,0.00,1.00,-139.20,-38.40,0
+-144.00,-38.40,11.80,0.00,1.00,-134.40,-43.20,0
+-139.20,-43.20,11.96,0.00,1.00,-129.60,-48.00,0
+-134.40,-48.00,12.12,0.00,1.00,-124.80,-48.00,0
+-129.60,-48.00,12.28,0.00,1.00,-120.00,-52.80,0
+-124.80,-52.80,12.44,0.00,1.00,-115.20,-52.80,0
+-115.20,-52.80,12.61,0.00,1.00,-110.40,-57.60,0
+-110.40,-52.80,12.77,0.00,1.00,-100.80,-57.60,0
+-100.80,-57.60,12.93,0.00,1.00,-96.00,-57.60,0
+-91.20,-57.60,13.09,0.00,1.00,-91.20,-57.60,0
+-81.60,-57.60,13.25,0.00,1.00,-86.40,-57.60,0
+-76.80,-57.60,13.41,0.00,1.00,-81.60,-57.60,0
+-67.20,-52.80,13.58,0.00,1.00,-72.00,-52.80,0
+-57.60,-52.80,13.74,0.00,1.00,-67.20,-52.80,0
+-52.80,-48.00,13.90,0.00,1.00,-62.40,-48.00,0
+-48.00,-48.00,14.06,0.00,1.00,-57.60,-43.20,0
+-43.20,-43.20,14.22,0.00,1.00,-52.80,-43.20,0
+-38.40,-43.20,14.38,0.00,1.00,-48.00,-38.40,0
+-33.60,-38.40,14.55,0.00,1.00,-43.20,-33.60,0
+-28.80,-33.60,14.71,0.00,1.00,-38.40,-33.60,0
+-24.00,-28.80,14.87,0.00,1.00,-33.60,-28.80,0
+-19.20,-28.80,15.03,0.00,1.00,-28.80,-24.00,0
+-19.20,-24.00,15.19,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,15.35,0.00,1.00,-19.20,-14.40,0
+-9.60,-14.40,15.52,0.00,1.00,-14.40,-14.40,0
+-9.60,-9.60,15.68,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,15.84,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,16.00,0.00,1.00,-4.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,0.00,4.80,0
+4.80,4.80,15.84,0.00,1.00,4.80,9.60,0
+4.80,9.60,15.68,0.00,1.00,9.60,9.60,0
+9.60,9.60,15.52,0.00,1.00,9.60,14.40,0
+14.40,14.40,15.35,0.00,1.00,14.40,19.20,0
+14.40,19.20,15.19,0.00,1.00,19.20,24.00,0
+19.20,24.00,15.03,0.00,1.00,24.00,24.00,0
+24.00,24.00,14.87,0.00,1.00,28.80,28.80,0
+24.00,28.80,14.71,0.00,1.00,33.60,33.60,0
+28.80,33.60,14.55,0.00,1.00,38.40,38.40,0
+33.60,33.60,14.38,0.00,1.00,43.20,38.40,0
+38.40,38.40,14.22,0.00,1.00,48.00,43.20,0
+43.20,43.20,14.06,0.00,1.00,52.80,43.20,0
+48.00,43.20,13.90,0.00,1.00,57.60,48.00,0
+57.60,48.00,13.74,0.00,1.00,62.40,48.00,0
+62.40,48.00,13.58,0.00,1.00,67.20,52.80,0
+67.20,48.00,13.41,0.00,1.00,72.00,52.80,0
+76.80,52.80,13.25,0.00,1.00,81.60,52.80,0
+86.40,52.80,13.09,0.00,1.00,86.40,52.80,0
+91.20,52.80,12.93,0.00,1.00,91.20,52.80,0
+100.80,52.80,12.77,0.00,1.00,96.00,52.80,0
+105.60,48.00,12.61,0.00,1.00,105.60,48.00,0
+115.20,48.00,12.44,0.00,1.00,110.40,48.00,0
+120.00,48.00,12.28,0.00,1.00,115.20,48.00,0
+124.80,43.20,12.12,0.00,1.00,120.00,43.20,0
+134.40,43.20,11.96,0.00,1.00,124.80,43.20,0
+139.20,38.40,11.80,0.00,1.00,129.60,38.40,0
+144.00,38.40,11.64,0.00,1.00,134.40,33.60,0
+148.80,33.60,11.47,0.00,1.00,139.20,33.60,0
+153.60,28.80,11.31,0.00,1.00,144.00,28.80,0
+153.60,28.80,11.15,0.00,1.00,148.80,24.00,0
+158.40,24.00,10.99,0.00,1.00,153.60,19.20,0
+163.20,19.20,10.83,0.00,1.00,158.40,19.20,0
+168.00,14.40,10.67,0.00,1.00,163.20,14.40,0
+168.00,14.40,10.51,0.00,1.00,168.00,9.60,0
+172.80,9.60,10.34,0.00,1.00,172.80,4.80,0
+177.60,4.80,10.18,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,9.86,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,9.70,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,9.54,0.00,1.00,-172.80,-14.40,0
+-168.00,-14.40,9.37,0.00,1.00,-168.00,-19.20,0
+-168.00,-14.40,9.21,0.00,1.00,-163.20,-19.20,0
+-163.20,-19.20,9.05,0.00,1.00,-158.40,-24.00,0
+-158.40,-24.00,8.89,0.00,1.00,-153.60,-28.80,0
+-153.60,-28.80,8.73,0.00,1.00,-148.80,-33.60,0
+-153.60,-28.80,8.57,0.00,1.00,-144.00,-33.60,0
+-148.80,-33.60,8.40,0.00,1.00,-139.20,-38.40,0
+-144.00,-38.40,8.24,0.00,1.00,-134.40,-43.20,0
+-139.20,-38.40,8.08,0.00,1.00,-129.60,-43.20,0
+-134.40,-43.20,7.92,0.00,1.00,-124.80,-48.00,0
+-124.80,-43.20,7.76,0.00,1.00,-120.00,-48.00,0
+-120.00,-48.00,7.60,0.00,1.00,-115.20,-48.00,0
+-115.20,-48.00,7.43,0.00,1.00,-110.40,-52.80,0
+-105.60,-48.00,7.27,0.00,1.00,-105.60,-52.80,0
+-100.80,-52.80,7.11,0.00,1.00,-96.00,-52.80,0
+-91.20,-52.80,6.95,0.00,1.00,-91.20,-52.80,0
+-86.40,-52.80,6.79,0.00,1.00,-86.40,-52.80,0
+-76.80,-52.80,6.63,0.00,1.00,-81.60,-52.80,0
+-67.20,-48.00,6.46,0.00,1.00,-72.00,-48.00,0
+-62.40,-48.00,6.30,0.00,1.00,-67.20,-48.00,0
+-57.60,-48.00,6.14,0.00,1.00,-62.40,-43.20,0
+-48.00,-43.20,5.98,0.00,1.00,-57.60,-43.20,0
+-43.20,-43.20,5.82,0.00,1.00,-52.80,-38.40,0
+-38.40,-38.40,5.66,0.00,1.00,-48.00,-38.40,0
+-33.60,-33.60,5.49,0.00,1.00,-43.20,-33.60,0
+-28.80,-33.60,5.33,0.00,1.00,-38.40,-28.80,0
+-24.00,-28.80,5.17,0.00,1.00,-33.60,-24.00,0
+-24.00,-24.00,5.01,0.00,1.00,-28.80,-24.00,0
+-19.20,-24.00,4.85,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,4.69,0.00,1.00,-19.20,-14.40,0
+-14.40,-14.40,4.53,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,4.36,0.00,1.00,-9.60,-9.60,0
+-4.80,-9.60,4.20,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,4.04,0.00,1.00,-4.80,0.00,0
+0.00,0.00,3.88,0.00,1.00,0.00,4.80,0
+4.80,4.80,3.72,0.00,1.00,4.80,4.80,0
+4.80,4.80,3.56,0.00,1.00,4.80,9.60,0
+9.60,9.60,3.39,0.00,1.00,9.60,14.40,0
+14.40,14.40,3.23,0.00,1.00,14.40,19.20,0
+19.20,19.20,3.07,0.00,1.00,19.20,19.20,0
+19.20,19.20,2.91,0.00,1.00,24.00,24.00,0
+24.00,24.00,2.75,0.00,1.00,24.00,28.80,0
+28.80,28.80,2.59,0.00,1.00,28.80,28.80,0
+33.60,28.80,2.42,0.00,1.00,33.60,33.60,0
+38.40,33.60,2.26,0.00,1.00,38.40,38.40,0
+43.20,33.60,2.10,0.00,1.00,43.20,38.40,0
+48.00,38.40,1.94,0.00,1.00,48.00,43.20,0
+52.80,38.40,1.78,0.00,1.00,52.80,43.20,0
+57.60,43.20,1.62,0.00,1.00,62.40,43.20,0
+62.40,43.20,1.45,0.00,1.00,67.20,48.00,0
+72.00,43.20,1.29,0.00,1.00,72.00,48.00,0
+76.80,48.00,1.13,0.00,1.00,76.80,48.00,0
+86.40,48.00,0.97,0.00,1.00,86.40,48.00,0
+91.20,48.00,0.81,0.00,1.00,91.20,48.00,0
+100.80,48.00,0.65,0.00,1.00,96.00,48.00,0
+105.60,48.00,0.48,0.00,1.00,105.60,48.00,0
+110.40,43.20,0.32,0.00,1.00,110.40,43.20,0
+120.00,43.20,0.16,0.00,1.00,115.20,43.20,0
+124.80,43.20,0.00,0.00,1.00,124.80,38.40,0
+129.60,38.40,0.00,0.00,1.00,129.60,38.40,0
+134.40,38.40,0.04,0.00,1.00,134.40,33.60,0
+139.20,33.60,0.08,0.00,1.00,139.20,33.60,0
+144.00,33.60,0.12,0.00,1.00,144.00,28.80,0
+148.80,28.80,0.16,0.00,1.00,148.80,24.00,0
+153.60,24.00,0.20,0.00,1.00,153.60,24.00,0
+158.40,24.00,0.24,0.00,1.00,158.40,19.20,0
+163.20,19.20,0.28,0.00,1.00,158.40,14.40,0
+163.20,14.40,0.32,0.00,1.00,163.20,14.40,0
+168.00,14.40,0.36,0.00,1.00,168.00,9.60,0
+172.80,9.60,0.40,0.00,1.00,172.80,4.80,0
+172.80,4.80,0.44,0.00,1.00,172.80,0.00,0
+177.60,0.00,0.48,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,0.52,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,0.56,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,0.60,0.00,1.00,-172.80,-14.40,0
+-168.00,-14.40,0.64,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,0.68,0.00,1.00,-163.20,-19.20,0
+-163.20,-19.20,0.72,0.00,1.00,-158.40,-24.00,0
+-158.40,-24.00,0.76,0.00,1.00,-158.40,-24.00,0
+-153.60,-24.00,0.80,0.00,1.00,-153.60,-28.80,0
+-148.80,-28.80,0.84,0.00,1.00,-148.80,-33.60,0
+-144.00,-33.60,0.88,0.00,1.00,-144.00,-33.60,0
+-139.20,-33.60,0.92,0.00,1.00,-139.20,-38.40,0
+-134.40,-38.40,0.96,0.00,1.00,-134.40,-38.40,0
+-129.60,-38.40,1.00,0.00,1.00,-129.60,-43.20,0
+-124.80,-43.20,1.04,0.00,1.00,-124.80,-43.20,0
+-120.00,-43.20,1.08,0.00,1.00,-115.20,-48.00,0
+-110.40,-43.20,1.12,0.00,1.00,-110.40,-48.00,0
+-105.60,-48.00,1.16,0.00,1.00,-105.60,-48.00,0
+-100.80,-48.00,1.20,0.00,1.00,-96.00,-48.00,0
+-91.20,-48.00,1.24,0.00,1.00,-91.20,-48.00,0
+-86.40,-48.00,1.28,0.00,1.00,-86.40,-48.00,0
+-76.80,-48.00,1.32,0.00,1.00,-76.80,-48.00,0
+-72.00,-43.20,1.36,0.00,1.00,-72.00,-43.20,0
+-62.40,-43.20,1.40,0.00,1.00,-67.20,-43.20,0
+-57.60,-43.20,1.44,0.00,1.00,-62.40,-43.20,0
+-52.80,-38.40,1.48,0.00,1.00,-52.80,-38.40,0
+-48.00,-38.40,1.52,0.00,1.00,-48.00,-38.40,0
+-43.20,-33.60,1.56,0.00,1.00,-43.20,-33.60,0
+-38.40,-33.60,1.60,0.00,1.00,-38.40,-28.80,0
+-33.60,-28.80,1.64,0.00,1.00,-33.60,-28.80,0
+-28.80,-28.80,1.68,0.00,1.00,-28.80,-24.00,0
+-24.00,-24.00,1.72,0.00,1.00,-24.00,-19.20,0
+-19.20,-19.20,1.76,0.00,1.00,-24.00,-19.20,0
+-19.20,-19.20,1.80,0.00,1.00,-19.20,-14.40,0
+-14.40,-14.40,1.84,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,1.88,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,1.92,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,1.96,0.00,1.00,-4.80,0.00,0
+0.00,0.00,2.01,0.00,1.00,0.00,4.80,0
+4.80,4.80,2.05,0.00,1.00,4.80,4.80,0
+4.80,4.80,2.09,0.00,1.00,4.80,9.60,0
+9.60,9.60,2.13,0.00,1.00,9.60,14.40,0
+14.40,14.40,2.17,0.00,1.00,14.40,14.40,0
+19.20,14.40,2.21,0.00,1.00,14.40,19.20,0
+24.00,19.20,2.25,0.00,1.00,19.20,24.00,0
+24.00,24.00,2.29,0.00,1.00,24.00,24.00,0
+28.80,24.00,2.33,0.00,1.00,28.80,28.80,0
+33.60,28.80,2.37,0.00,1.00,33.60,28.80,0
+38.40,28.80,2.41,0.00,1.00,38.40,33.60,0
+43.20,33.60,2.45,0.00,1.00,43.20,33.60,0
+48.00,33.60,2.49,0.00,1.00,48.00,38.40,0
+52.80,38.40,2.53,0.00,1.00,52.80,38.40,0
+62.40,38.40,2.57,0.00,1.00,57.60,38.40,0
+67.20,38.40,2.61,0.00,1.00,62.40,43.20,0
+72.00,38.40,2.65,0.00,1.00,72.00,43.20,0
+76.80,43.20,2.69,0.00,1.00,76.80,43.20,0
+86.40,43.20,2.73,0.00,1.00,86.40,43.20,0
+91.20,43.20,2.77,0.00,1.00,91.20,43.20,0
+96.00,43.20,2.81,0.00,1.00,100.80,43.20,0
+105.60,43.20,2.85,0.00,1.00,105.60,43.20,0
+110.40,38.40,2.89,0.00,1.00,110.40,38.40,0
+115.20,38.40,2.93,0.00,1.00,120.00,38.40,0
+120.00,38.40,2.97,0.00,1.00,124.80,38.40,0
+129.60,33.60,3.01,0.00,1.00,129.60,33.60,0
+134.40,33.60,3.05,0.00,1.00,134.40,33.60,0
+139.20,28.80,3.09,0.00,1.00,139.20,28.80,0
+144.00,28.80,3.13,0.00,1.00,144.00,28.80,0
+148.80,24.00,3.17,0.00,1.00,148.80,24.00,0
+153.60,24.00,3.21,0.00,1.00,153.60,19.20,0
+153.60,19.20,3.25,0.00,1.00,158.40,19.20,0
+158.40,19.20,3.29,0.00,1.00,163.20,14.40,0
+163.20,14.40,3.33,0.00,1.00,163.20,9.60,0
+168.00,9.60,3.37,0.00,1.00,168.00,9.60,0
+172.80,9.60,3.41,0.00,1.00,172.80,4.80,0
+172.80,4.80,3.45,0.00,1.00,172.80,0.00,0
+177.60,0.00,3.49,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.53,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,3.57,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,3.61,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,3.65,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,3.69,0.00,1.00,-163.20,-19.20,0
+-158.40,-19.20,3.73,0.00,1.00,-163.20,-19.20,0
+-153.60,-19.20,3.77,0.00,1.00,-158.40,-24.00,0
+-153.60,-24.00,3.81,0.00,1.00,-153.60,-28.80,0
+-148.80,-24.00,3.85,0.00,1.00,-148.80,-28.80,0
+-144.00,-28.80,3.89,0.00,1.00,-144.00,-33.60,0
+-139.20,-28.80,3.93,0.00,1.00,-139.20,-33.60,0
+-134.40,-33.60,3.97,0.00,1.00,-134.40,-38.40,0
+-129.60,-33.60,4.01,0.00,1.00,-129.60,-38.40,0
+-120.00,-38.40,4.05,0.00,1.00,-124.80,-38.40,0
+-115.20,-38.40,4.09,0.00,1.00,-120.00,-43.20,0
+-110.40,-38.40,4.13,0.00,1.00,-110.40,-43.20,0
+-105.60,-43.20,4.17,0.00,1.00,-105.60,-43.20,0
+-96.00,-43.20,4.21,0.00,1.00,-100.80,-43.20,0
+-91.20,-43.20,4.25,0.00,1.00,-91.20,-43.20,0
+-86.40,-43.20,4.29,0.00,1.00,-86.40,-43.20,0
+-76.80,-43.20,4.33,0.00,1.00,-76.80,-43.20,0
+-72.00,-38.40,4.37,0.00,1.00,-72.00,-38.40,0
+-67.20,-38.40,4.41,0.00,1.00,-62.40,-38.40,0
+-62.40,-38.40,4.45,0.00,1.00,-57.60,-38.40,0
+-52.80,-38.40,4.49,0.00,1.00,-52.80,-33.60,0
+-48.00,-33.60,4.53,0.00,1.00,-48.00,-33.60,0
+-43.20,-33.60,4.57,0.00,1.00,-43.20,-28.80,0
+-38.40,-28.80,4.61,0.00,1.00,-38.40,-28.80,0
+-33.60,-28.80,4.65,0.00,1.00,-33.60,-24.00,0
+-28.80,-24.00,4.69,0.00,1.00,-28.80,-24.00,0
+-24.00,-24.00,4.73,0.00,1.00,-24.00,-19.20,0
+-24.00,-19.20,4.77,0.00,1.00,-19.20,-14.40,0
+-19.20,-14.40,4.81,0.00,1.00,-14.40,-14.40,0
+-14.40,-14.40,4.85,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,4.89,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,4.93,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,4.97,0.00,1.00,-4.80,0.00,0
+0.00,0.00,5.01,0.00,1.00,0.00,4.80,0
+4.80,4.80,5.05,0.00,1.00,4.80,4.80,0
+9.60,4.80,5.09,0.00,1.00,4.80,9.60,0
+9.60,9.60,5.13,0.00,1.00,9.60,9.60,0
+14.40,9.60,5.17,0.00,1.00,9.60,14.40,0
+19.20,14.40,5.21,0.00,1.00,14.40,19.20,0
+24.00,19.20,5.25,0.00,1.00,19.20,19.20,0
+28.80,19.20,5.29,0.00,1.00,24.00,24.00,0
+33.60,24.00,5.33,0.00,1.00,24.00,24.00,0
+38.40,24.00,5.37,0.00,1.00,28.80,28.80,0
+43.20,28.80,5.41,0.00,1.00,33.60,28.80,0
+48.00,28.80,5.45,0.00,1.00,38.40,33.60,0
+52.80,28.80,5.49,0.00,1.00,43.20,33.60,0
+57.60,33.60,5.53,0.00,1.00,48.00,33.60,0
+62.40,33.60,5.57,0.00,1.00,52.80,38.40,0
+67.20,33.60,5.61,0.00,1.00,62.40,38.40,0
+72.00,38.40,5.65,0.00,1.00,67.20,38.40,0
+81.60,38.40,5.69,0.00,1.00,76.80,38.40,0
+86.40,38.40,5.73,0.00,1.00,86.40,38.40,0
+91.20,38.40,5.77,0.00,1.00,91.20,38.40,0
+96.00,38.40,5.81,0.00,1.00,100.80,38.40,0
+105.60,38.40,5.85,0.00,1.00,105.60,38.40,0
+110.40,33.60,5.89,0.00,1.00,115.20,33.60,0
+115.20,33.60,5.93,0.00,1.00,120.00,33.60,0
+120.00,33.60,5.97,0.00,1.00,129.60,33.60,0
+124.80,33.60,6.02,0.00,1.00,134.40,28.80,0
+129.60,28.80,6.06,0.00,1.00,139.20,28.80,0
+134.40,28.80,6.10,0.00,1.00,144.00,24.00,0
+139.20,24.00,6.14,0.00,1.00,148.80,24.00,0
+144.00,24.00,6.18,0.00,1.00,153.60,19.20,0
+148.80,19.20,6.22,0.00,1.00,158.40,19.20,0
+153.60,19.20,6.26,0.00,1.00,158.40,14.40,0
+158.40,14.40,6.30,0.00,1.00,163.20,14.40,0
+163.20,14.40,6.34,0.00,1.00,168.00,9.60,0
+168.00,9.60,6.38,0.00,1.00,168.00,9.60,0
+168.00,9.60,6.42,0.00,1.00,172.80,4.80,0
+172.80,4.80,6.46,0.00,1.00,177.60,0.00,0
+177.60,0.00,6.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.54,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,6.58,0.00,1.00,-177.60,-9.60,0
+-168.00,-9.60,6.62,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,6.66,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,6.70,0.00,1.00,-168.00,-14.40,0
+-158.40,-14.40,6.74,0.00,1.00,-163.20,-19.20,0
+-153.60,-19.20,6.78,0.00,1.00,-158.40,-19.20,0
+-148.80,-19.20,6.82,0.00,1.00,-158.40,-24.00,0
+-144.00,-24.00,6.86,0.00,1.00,-153.60,-24.00,0
+-139.20,-24.00,6.90,0.00,1.00,-148.80,-28.80,0
+-134.40,-28.80,6.94,0.00,1.00,-144.00,-28.80,0
+-129.60,-28.80,6.98,0.00,1.00,-139.20,-33.60,0
+-124.80,-33.60,7.02,0.00,1.00,-134.40,-33.60,0
+-120.00,-33.60,7.06,0.00,1.00,-129.60,-33.60,0
+-115.20,-33.60,7.10,0.00,1.00,-120.00,-38.40,0
+-110.40,-33.60,7.14,0.00,1.00,-115.20,-38.40,0
+-105.60,-38.40,7.18,0.00,1.00,-105.60,-38.40,0
+-96.00,-38.40,7.22,0.00,1.00,-100.80,-38.40,0
+-91.20,-38.40,7.26,0.00,1.00,-91.20,-38.40,0
+-86.40,-38.40,7.30,0.00,1.00,-86.40,-38.40,0
+-81.60,-38.40,7.34,0.00,1.00,-76.80,-38.40,0
+-72.00,-38.40,7.38,0.00,1.00,-67.20,-38.40,0
+-67.20,-33.60,7.42,0.00,1.00,-62.40,-33.60,0
+-62.40,-33.60,7.46,0.00,1.00,-52.80,-33.60,0
+-57.60,-33.60,7.50,0.00,1.00,-48.00,-33.60,0
+-52.80,-28.80,7.54,0.00,1.00,-43.20,-28.80,0
+-48.00,-28.80,7.58,0.00,1.00,-38.40,-28.80,0
+-43.20,-28.80,7.62,0.00,1.00,-33.60,-24.00,0
+-38.40,-24.00,7.66,0.00,1.00,-28.80,-24.00,0
+-33.60,-24.00,7.70,0.00,1.00,-24.00,-19.20,0
+-28.80,-19.20,7.74,0.00,1.00,-24.00,-19.20,0
+-24.00,-19.20,7.78,0.00,1.00,-19.20,-14.40,0
+-19.20,-14.40,7.82,0.00,1.00,-14.40,-9.60,0
+-14.40,-9.60,7.86,0.00,1.00,-9.60,-9.60,0
+-9.60,-9.60,7.90,0.00,1.00,-9.60,-4.80,0
+-9.60,-4.80,7.94,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,7.98,0.00,1.00,-4.80,0.00,0
+0.00,0.00,8.02,0.00,1.00,0.00,4.80,0
+4.80,4.80,8.06,0.00,1.00,4.80,4.80,0
+9.60,4.80,8.10,0.00,1.00,4.80,9.60,0
+14.40,9.60,8.14,0.00,1.00,9.60,9.60,0
+14.40,9.60,8.18,0.00,1.00,9.60,14.40,0
+19.20,14.40,8.22,0.00,1.00,14.40,14.40,0
+24.00,14.40,8.26,0.00,1.00,14.40,19.20,0
+28.80,19.20,8.30,0.00,1.00,19.20,19.20,0
+33.60,19.20,8.34,0.00,1.00,24.00,24.00,0
+38.40,19.20,8.38,0.00,1.00,28.80,24.00,0
+43.20,24.00,8.42,0.00,1.00,28.80,24.00,0
+48.00,24.00,8.46,0.00,1.00,33.60,28.80,0
+52.80,28.80,8.50,0.00,1.00,38.40,28.80,0
+57.60,28.80,8.54,0.00,1.00,48.00,28.80,0
+62.40,28.80,8.58,0.00,1.00,52.80,33.60,0
+67.20,28.80,8.62,0.00,1.00,57.60,33.60,0
+76.80,33.60,8.66,0.00,1.00,67.20,33.60,0
+81.60,33.60,8.70,0.00,1.00,76.80,33.60,0
+86.40,33.60,8.74,0.00,1.00,81.60,33.60,0
+91.20,33.60,8.78,0.00,1.00,91.20,33.60,0
+96.00,33.60,8.82,0.00,1.00,100.80,33.60,0
+100.80,33.60,8.86,0.00,1.00,110.40,33.60,0
+110.40,28.80,8.90,0.00,1.00,115.20,33.60,0
+115.20,28.80,8.94,0.00,1.00,124.80,28.80,0
+120.00,28.80,8.98,0.00,1.00,129.60,28.80,0
+124.80,28.80,9.02,0.00,1.00,139.20,28.80,0
+129.60,24.00,9.06,0.00,1.00,144.00,24.00,0
+134.40,24.00,9.10,0.00,1.00,148.80,24.00,0
+139.20,24.00,9.14,0.00,1.00,153.60,19.20,0
+144.00,19.20,9.18,0.00,1.00,153.60,19.20,0
+148.80,19.20,9.22,0.00,1.00,158.40,14.40,0
+153.60,14.40,9.26,0.00,1.00,163.20,14.40,0
+158.40,14.40,9.30,0.00,1.00,163.20,9.60,0
+163.20,9.60,9.34,0.00,1.00,168.00,9.60,0
+168.00,9.60,9.38,0.00,1.00,172.80,4.80,0
+168.00,4.80,9.42,0.00,1.00,172.80,4.80,0
+172.80,4.80,9.46,0.00,1.00,177.60,0.00,0
+177.60,0.00,9.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,9.54,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,9.58,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,9.62,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,9.66,0.00,1.00,-172.80,-9.60,0
+-163.20,-9.60,9.70,0.00,1.00,-168.00,-14.40,0
+-158.40,-14.40,9.74,0.00,1.00,-163.20,-14.40,0
+-153.60,-14.40,9.78,0.00,1.00,-163.20,-19.20,0
+-148.80,-19.20,9.82,0.00,1.00,-158.40,-19.20,0
+-144.00,-19.20,9.86,0.00,1.00,-153.60,-24.00,0
+-139.20,-24.00,9.90,0.00,1.00,-153.60,-24.00,0
+-134.40,-24.00,9.94,0.00,1.00,-148.80,-28.80,0
+-129.60,-24.00,9.98,0.00,1.00,-144.00,-28.80,0
+-124.80,-28.80,10.03,0.00,1.00,-139.20,-28.80,0
+-120.00,-28.80,10.07,0.00,1.00,-129.60,-33.60,0
+-115.20,-28.80,10.11,0.00,1.00,-124.80,-33.60,0
+-110.40,-28.80,10.15,0.00,1.00,-115.20,-33.60,0
+-100.80,-33.60,10.19,0.00,1.00,-110.40,-33.60,0
+-96.00,-33.60,10.23,0.00,1.00,-100.80,-33.60,0
+-91.20,-33.60,10.27,0.00,1.00,-91.20,-33.60,0
+-86.40,-33.60,10.31,0.00,1.00,-81.60,-33.60,0
+-81.60,-33.60,10.35,0.00,1.00,-76.80,-33.60,0
+-76.80,-33.60,10.39,0.00,1.00,-67.20,-33.60,0
+-67.20,-28.80,10.43,0.00,1.00,-57.60,-28.80,0
+-62.40,-28.80,10.47,0.00,1.00,-52.80,-28.80,0
+-57.60,-28.80,10.51,0.00,1.00,-48.00,-28.80,0
+-52.80,-28.80,10.55,0.00,1.00,-38.40,-24.00,0
+-48.00,-24.00,10.59,0.00,1.00,-33.60,-24.00,0
+-43.20,-24.00,10.63,0.00,1.00,-28.80,-24.00,0
+-38.40,-19.20,10.67,0.00,1.00,-28.80,-19.20,0
+-33.60,-19.20,10.71,0.00,1.00,-24.00,-19.20,0
+-28.80,-19.20,10.75,0.00,1.00,-19.20,-14.40,0
+-24.00,-14.40,10.79,0.00,1.00,-14.40,-14.40,0
+-19.20,-14.40,10.83,0.00,1.00,-14.40,-9.60,0
+-14.40,-9.60,10.87,0.00,1.00,-9.60,-9.60,0
+-14.40,-9.60,10.91,0.00,1.00,-9.60,-4.80,0
+-9.60,-4.80,10.95,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,10.99,0.00,1.00,-4.80,0.00,0
+0.00,0.00,11.03,0.00,1.00,0.00,0.00,0
+4.80,0.00,11.07,0.00,1.00,0.00,4.80,0
+9.60,4.80,11.11,0.00,1.00,4.80,4.80,0
+14.40,4.80,11.15,0.00,1.00,4.80,9.60,0
+19.20,9.60,11.19,0.00,1.00,9.60,9.60,0
+19.20,9.60,11.23,0.00,1.00,9.60,14.40,0
+24.00,14.40,11.27,0.00,1.00,14.40,14.40,0
+28.80,14.40,11.31,0.00,1.00,19.20,19.20,0
+33.60,14.40,11.35,0.00,1.00,19.20,19.20,0
+38.40,19.20,11.39,0.00,1.00,24.00,19.20,0
+43.20,19.20,11.43,0.00,1.00,28.80,24.00,0
+48.00,24.00,11.47,0.00,1.00,33.60,24.00,0
+52.80,24.00,11.51,0.00,1.00,38.40,24.00,0
+57.60,24.00,11.55,0.00,1.00,43.20,24.00,0
+62.40,24.00,11.59,0.00,1.00,48.00,28.80,0
+72.00,24.00,11.63,0.00,1.00,52.80,28.80,0
+76.80,28.80,11.67,0.00,1.00,62.40,28.80,0
+81.60,28.80,11.71,0.00,1.00,72.00,28.80,0
+86.40,28.80,11.75,0.00,1.00,81.60,28.80,0
+91.20,28.80,11.79,0.00,1.00,91.20,28.80,0
+96.00,28.80,11.83,0.00,1.00,100.80,28.80,0
+100.80,28.80,11.87,0.00,1.00,110.40,28.80,0
+105.60,28.80,11.91,0.00,1.00,120.00,28.80,0
+110.40,24.00,11.95,0.00,1.00,129.60,24.00,0
+120.00,24.00,11.99,0.00,1.00,134.40,24.00,0
+124.80,24.00,12.03,0.00,1.00,139.20,24.00,0
+129.60,24.00,12.07,0.00,1.00,144.00,24.00,0
+134.40,19.20,12.11,0.00,1.00,148.80,19.20,0
+139.20,19.20,12.15,0.00,1.00,153.60,19.20,0
+144.00,19.20,12.19,0.00,1.00,158.40,14.40,0
+148.80,14.40,12.23,0.00,1.00,163.20,14.40,0
+153.60,14.40,12.27,0.00,1.00,163.20,14.40,0
+158.40,9.60,12.31,0.00,1.00,168.00,9.60,0
+158.40,9.60,12.35,0.00,1.00,168.00,9.60,0
+163.20,9.60,12.39,0.00,1.00,172.80,4.80,0
+168.00,4.80,12.43,0.00,1.00,172.80,4.80,0
+172.80,4.80,12.47,0.00,1.00,177.60,0.00,0
+177.60,0.00,12.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,12.55,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,12.59,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,12.63,0.00,1.00,-172.80,-9.60,0
+-163.20,-9.60,12.67,0.00,1.00,-172.80,-9.60,0
+-158.40,-9.60,12.71,0.00,1.00,-168.00,-14.40,0
+-158.40,-9.60,12.75,0.00,1.00,-168.00,-14.40,0
+-153.60,-14.40,12.79,0.00,1.00,-163.20,-14.40,0
+-148.80,-14.40,12.83,0.00,1.00,-163.20,-19.20,0
+-144.00,-19.20,12.87,0.00,1.00,-158.40,-19.20,0
+-139.20,-19.20,12.91,0.00,1.00,-153.60,-24.00,0
+-134.40,-19.20,12.95,0.00,1.00,-148.80,-24.00,0
+-129.60,-24.00,12.99,0.00,1.00,-144.00,-24.00,0
+-124.80,-24.00,13.03,0.00,1.00,-139.20,-24.00,0
+-120.00,-24.00,13.07,0.00,1.00,-134.40,-28.80,0
+-110.40,-24.00,13.11,0.00,1.00,-129.60,-28.80,0
+-105.60,-28.80,13.15,0.00,1.00,-120.00,-28.80,0
+-100.80,-28.80,13.19,0.00,1.00,-110.40,-28.80,0
+-96.00,-28.80,13.23,0.00,1.00,-100.80,-28.80,0
+-91.20,-28.80,13.27,0.00,1.00,-91.20,-28.80,0
+-86.40,-28.80,13.31,0.00,1.00,-81.60,-28.80,0
+-81.60,-28.80,13.35,0.00,1.00,-72.00,-28.80,0
+-76.80,-28.80,13.39,0.00,1.00,-62.40,-28.80,0
+-72.00,-24.00,13.43,0.00,1.00,-52.80,-24.00,0
+-62.40,-24.00,13.47,0.00,1.00,-48.00,-24.00,0
+-57.60,-24.00,13.51,0.00,1.00,-43.20,-24.00,0
+-52.80,-24.00,13.55,0.00,1.00,-38.40,-24.00,0
+-48.00,-24.00,13.59,0.00,1.00,-33.60,-19.20,0
+-43.20,-19.20,13.63,0.00,1.00,-28.80,-19.20,0
+-38.40,-19.20,13.67,0.00,1.00,-24.00,-19.20,0
+-33.60,-14.40,13.71,0.00,1.00,-19.20,-14.40,0
+-28.80,-14.40,13.75,0.00,1.00,-19.20,-14.40,0
+-24.00,-14.40,13.79,0.00,1.00,-14.40,-9.60,0
+-19.20,-9.60,13.83,0.00,1.00,-9.60,-9.60,0
+-19.20,-9.60,13.87,0.00,1.00,-9.60,-4.80,0
+-14.40,-4.80,13.91,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,13.95,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,13.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,14.04,0.00,1.00,0.00,0.00,0
+4.80,0.00,14.08,0.00,1.00,0.00,4.80,0
+9.60,4.80,14.12,0.00,1.00,4.80,4.80,0
+14.40,4.80,14.16,0.00,1.00,4.80,9.60,0
+19.20,9.60,14.20,0.00,1.00,9.60,9.60,0
+24.00,9.60,14.24,0.00,1.00,9.60,9.60,0
+28.80,9.60,14.28,0.00,1.00,14.40,14.40,0
+33.60,14.40,14.32,0.00,1.00,14.40,14.40,0
+38.40,14.40,14.36,0.00,1.00,19.20,14.40,0
+43.20,14.40,14.40,0.00,1.00,19.20,19.20,0
+48.00,14.40,14.44,0.00,1.00,24.00,19.20,0
+52.80,19.20,14.48,0.00,1.00,28.80,19.20,0
+57.60,19.20,14.52,0.00,1.00,33.60,19.20,0
+62.40,19.20,14.56,0.00,1.00,38.40,24.00,0
+67.20,19.20,14.60,0.00,1.00,43.20,24.00,0
+72.00,24.00,14.64,0.00,1.00,48.00,24.00,0
+76.80,24.00,14.68,0.00,1.00,57.60,24.00,0
+81.60,24.00,14.72,0.00,1.00,67.20,24.00,0
+86.40,24.00,14.76,0.00,1.00,81.60,24.00,0
+91.20,24.00,14.80,0.00,1.00,91.20,24.00,0
+96.00,24.00,14.84,0.00,1.00,105.60,24.00,0
+100.80,24.00,14.88,0.00,1.00,115.20,24.00,0
+105.60,24.00,14.92,0.00,1.00,124.80,24.00,0
+110.40,19.20,14.96,0.00,1.00,134.40,19.20,0
+115.20,19.20,15.00,0.00,1.00,139.20,19.20,0
+120.00,19.20,15.04,0.00,1.00,144.00,19.20,0
+124.80,19.20,15.08,0.00,1.00,148.80,19.20,0
+129.60,19.20,15.12,0.00,1.00,153.60,19.20,0
+134.40,14.40,15.16,0.00,1.00,158.40,14.40,0
+139.20,14.40,15.20,0.00,1.00,163.20,14.40,0
+144.00,14.40,15.24,0.00,1.00,163.20,14.40,0
+148.80,9.60,15.28,0.00,1.00,168.00,9.60,0
+153.60,9.60,15.32,0.00,1.00,168.00,9.60,0
+158.40,9.60,15.36,0.00,1.00,172.80,4.80,0
+163.20,4.80,15.40,0.00,1.00,172.80,4.80,0
+168.00,4.80,15.44,0.00,1.00,177.60,4.80,0
+172.80,4.80,15.48,0.00,1.00,177.60,0.00,0
+177.60,0.00,15.52,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,15.56,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,15.60,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,15.64,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,15.68,0.00,1.00,-172.80,-9.60,0
+-158.40,-9.60,15.72,0.00,1.00,-172.80,-9.60,0
+-153.60,-9.60,15.76,0.00,1.00,-168.00,-14.40,0
+-148.80,-9.60,15.80,0.00,1.00,-168.00,-14.40,0
+-144.00,-14.40,15.84,0.00,1.00,-163.20,-14.40,0
+-139.20,-14.40,15.88,0.00,1.00,-163.20,-19.20,0
+-134.40,-14.40,15.92,0.00,1.00,-158.40,-19.20,0
+-129.60,-19.20,15.96,0.00,1.00,-153.60,-19.20,0
+-124.80,-19.20,16.00,0.00,1.00,-148.80,-19.20,0
+-120.00,-19.20,16.00,0.00,1.00,-144.00,-19.20,0
+-115.20,-19.20,15.96,0.00,1.00,-139.20,-24.00,0
+-110.40,-19.20,15.92,0.00,1.00,-134.40,-24.00,0
+-105.60,-24.00,15.88,0.00,1.00,-124.80,-24.00,0
+-100.80,-24.00,15.84,0.00,1.00,-115.20,-24.00,0
+-96.00,-24.00,15.80,0.00,1.00,-105.60,-24.00,0
+-91.20,-24.00,15.76,0.00,1.00,-91.20,-24.00,0
+-86.40,-24.00,15.72,0.00,1.00,-81.60,-24.00,0
+-81.60,-24.00,15.68,0.00,1.00,-67.20,-24.00,0
+-76.80,-24.00,15.64,0.00,1.00,-57.60,-24.00,0
+-72.00,-24.00,15.60,0.00,1.00,-48.00,-24.00,0
+-67.20,-19.20,15.56,0.00,1.00,-43.20,-19.20,0
+-62.40,-19.20,15.52,0.00,1.00,-38.40,-19.20,0
+-57.60,-19.20,15.48,0.00,1.00,-33.60,-19.20,0
+-52.80,-19.20,15.44,0.00,1.00,-28.80,-19.20,0
+-48.00,-14.40,15.40,0.00,1.00,-24.00,-14.40,0
+-43.20,-14.40,15.36,0.00,1.00,-19.20,-14.40,0
+-38.40,-14.40,15.32,0.00,1.00,-19.20,-14.40,0
+-33.60,-14.40,15.28,0.00,1.00,-14.40,-9.60,0
+-28.80,-9.60,15.24,0.00,1.00,-14.40,-9.60,0
+-24.00,-9.60,15.20,0.00,1.00,-9.60,-9.60,0
+-19.20,-9.60,15.16,0.00,1.00,-9.60,-4.80,0
+-14.40,-4.80,15.12,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,15.08,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,15.04,0.00,1.00,-0.00,0.00,0
+0.00,0.00,15.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,14.96,0.00,1.00,0.00,4.80,0
+9.60,4.80,14.92,0.00,1.00,4.80,4.80,0
+14.40,4.80,14.88,0.00,1.00,4.80,4.80,0
+19.20,4.80,14.84,0.00,1.00,4.80,9.60,0
+24.00,9.60,14.80,0.00,1.00,9.60,9.60,0
+28.80,9.60,14.76,0.00,1.00,9.60,9.60,0
+33.60,9.60,14.72,0.00,1.00,9.60,9.60,0
+38.40,9.60,14.68,0.00,1.00,14.40,14.40,0
+43.20,14.40,14.64,0.00,1.00,14.40,14.40,0
+48.00,14.40,14.60,0.00,1.00,19.20,14.40,0
+52.80,14.40,14.56,0.00,1.00,24.00,14.40,0
+57.60,14.40,14.52,0.00,1.00,24.00,19.20,0
+62.40,14.40,14.48,0.00,1.00,28.80,19.20,0
+67.20,14.40,14.44,0.00,1.00,38.40,19.20,0
+72.00,19.20,14.40,0.00,1.00,43.20,19.20,0
+76.80,19.20,14.36,0.00,1.00,52.80,19.20,0
+81.60,19.20,14.32,0.00,1.00,62.40,19.20,0
+86.40,19.20,14.28,0.00,1.00,76.80,19.20,0
+91.20,19.20,14.24,0.00,1.00,96.00,19.20,0
+96.00,19.20,14.20,0.00,1.00,110.40,19.20,0
+100.80,19.20,14.16,0.00,1.00,120.00,19.20,0
+105.60,19.20,14.12,0.00,1.00,134.40,19.20,0
+110.40,19.20,14.08,0.00,1.00,139.20,19.20,0
+115.20,14.40,14.04,0.00,1.00,148.80,14.40,0
+120.00,14.40,13.99,0.00,1.00,153.60,14.40,0
+124.80,14.40,13.95,0.00,1.00,158.40,14.40,0
+129.60,14.40,13.91,0.00,1.00,158.40,14.40,0
+134.40,14.40,13.87,0.00,1.00,163.20,14.40,0
+139.20,9.60,13.83,0.00,1.00,163.20,9.60,0
+144.00,9.60,13.79,0.00,1.00,168.00,9.60,0
+148.80,9.60,13.75,0.00,1.00,168.00,9.60,0
+153.60,9.60,13.71,0.00,1.00,172.80,4.80,0
+158.40,4.80,13.67,0.00,1.00,172.80,4.80,0
+163.20,4.80,13.63,0.00,1.00,172.80,4.80,0
+168.00,4.80,13.59,0.00,1.00,177.60,0.00,0
+172.80,0.00,13.55,0.00,1.00,177.60,0.00,0
+177.60,0.00,13.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.47,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,13.43,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,13.39,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,13.35,0.00,1.00,-172.80,-4.80,0
+-158.40,-4.80,13.31,0.00,1.00,-172.80,-9.60,0
+-153.60,-9.60,13.27,0.00,1.00,-172.80,-9.60,0
+-148.80,-9.60,13.23,0.00,1.00,-168.00,-9.60,0
+-144.00,-9.60,13.19,0.00,1.00,-168.00,-14.40,0
+-139.20,-9.60,13.15,0.00,1.00,-163.20,-14.40,0
+-134.40,-14.40,13.11,0.00,1.00,-163.20,-14.40,0
+-129.60,-14.40,13.07,0.00,1.00,-158.40,-14.40,0
+-124.80,-14.40,13.03,0.00,1.00,-158.40,-14.40,0
+-120.00,-14.40,12.99,0.00,1.00,-153.60,-19.20,0
+-115.20,-14.40,12.95,0.00,1.00,-148.80,-19.20,0
+-110.40,-19.20,12.91,0.00,1.00,-139.20,-19.20,0
+-105.60,-19.20,12.87,0.00,1.00,-134.40,-19.20,0
+-100.80,-19.20,12.83,0.00,1.00,-120.00,-19.20,0
+-96.00,-19.20,12.79,0.00,1.00,-110.40,-19.20,0
+-91.20,-19.20,12.75,0.00,1.00,-96.00,-19.20,0
+-86.40,-19.20,12.71,0.00,1.00,-76.80,-19.20,0
+-81.60,-19.20,12.67,0.00,1.00,-62.40,-19.20,0
+-76.80,-19.20,12.63,0.00,1.00,-52.80,-19.20,0
+-72.00,-19.20,12.59,0.00,1.00,-43.20,-19.20,0
+-67.20,-14.40,12.55,0.00,1.00,-38.40,-19.20,0
+-62.40,-14.40,12.51,0.00,1.00,-28.80,-14.40,0
+-57.60,-14.40,12.47,0.00,1.00,-24.00,-14.40,0
+-52.80,-14.40,12.43,0.00,1.00,-24.00,-14.40,0
+-48.00,-14.40,12.39,0.00,1.00,-19.20,-14.40,0
+-43.20,-14.40,12.35,0.00,1.00,-14.40,-9.60,0
+-38.40,-9.60,12.31,0.00,1.00,-14.40,-9.60,0
+-33.60,-9.60,12.27,0.00,1.00,-9.60,-9.60,0
+-28.80,-9.60,12.23,0.00,1.00,-9.60,-9.60,0
+-24.00,-9.60,12.19,0.00,1.00,-9.60,-4.80,0
+-19.20,-4.80,12.15,0.00,1.00,-4.80,-4.80,0
+-14.40,-4.80,12.11,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,12.07,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,12.03,0.00,1.00,-0.00,0.00,0
+0.00,0.00,11.99,0.00,1.00,0.00,0.00,0
+4.80,0.00,11.95,0.00,1.00,0.00,0.00,0
+9.60,0.00,11.91,0.00,1.00,0.00,4.80,0
+14.40,4.80,11.87,0.00,1.00,4.80,4.80,0
+19.20,4.80,11.83,0.00,1.00,4.80,4.80,0
+24.00,4.80,11.79,0.00,1.00,4.80,4.80,0
+28.80,4.80,11.75,0.00,1.00,4.80,9.60,0
+33.60,9.60,11.71,0.00,1.00,9.60,9.60,0
+38.40,9.60,11.67,0.00,1.00,9.60,9.60,0
+43.20,9.60,11.63,0.00,1.00,14.40,9.60,0
+48.00,9.60,11.59,0.00,1.00,14.40,9.60,0
+52.80,9.60,11.55,0.00,1.00,14.40,14.40,0
+57.60,9.60,11.51,0.00,1.00,19.20,14.40,0
+62.40,9.60,11.47,0.00,1.00,24.00,14.40,0
+67.20,14.40,11.43,0.00,1.00,28.80,14.40,0
+72.00,14.40,11.39,0.00,1.00,33.60,14.40,0
+76.80,14.40,11.35,0.00,1.00,43.20,14.40,0
+81.60,14.40,11.31,0.00,1.00,57.60,14.40,0
+86.40,14.40,11.27,0.00,1.00,76.80,14.40,0
+91.20,14.40,11.23,0.00,1.00,96.00,14.40,0
+96.00,14.40,11.19,0.00,1.00,115.20,14.40,0
+100.80,14.40,11.15,0.00,1.00,129.60,14.40,0
+105.60,14.40,11.11,0.00,1.00,139.20,14.40,0
+110.40,14.40,11.07,0.00,1.00,148.80,14.40,0
+115.20,9.60,11.03,0.00,1.00,153.60,14.40,0
+120.00,9.60,10.99,0.00,1.00,158.40,9.60,0
+124.80,9.60,10.95,0.00,1.00,163.20,9.60,0
+129.60,9.60,10.91,0.00,1.00,163.20,9.60,0
+134.40,9.60,10.87,0.00,1.00,168.00,9.60,0
+139.20,9.60,10.83,0.00,1.00,168.00,9.60,0
+144.00,9.60,10.79,0.00,1.00,172.80,9.60,0
+148.80,4.80,10.75,0.00,1.00,172.80,4.80,0
+153.60,4.80,10.71,0.00,1.00,172.80,4.80,0
+158.40,4.80,10.67,0.00,1.00,172.80,4.80,0
+163.20,4.80,10.63,0.00,1.00,177.60,4.80,0
+168.00,4.80,10.59,0.00,1.00,177.60,0.00,0
+172.80,0.00,10.55,0.00,1.00,177.60,0.00,0
+177.60,0.00,10.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.47,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,10.43,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,10.39,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,10.35,0.00,1.00,-177.60,-4.80,0
+-158.40,-4.80,10.31,0.00,1.00,-172.80,-4.80,0
+-153.60,-4.80,10.27,0.00,1.00,-172.80,-9.60,0
+-148.80,-4.80,10.23,0.00,1.00,-172.80,-9.60,0
+-144.00,-9.60,10.19,0.00,1.00,-172.80,-9.60,0
+-139.20,-9.60,10.15,0.00,1.00,-168.00,-9.60,0
+-134.40,-9.60,10.11,0.00,1.00,-168.00,-9.60,0
+-129.60,-9.60,10.07,0.00,1.00,-163.20,-9.60,0
+-124.80,-9.60,10.03,0.00,1.00,-163.20,-14.40,0
+-120.00,-9.60,9.98,0.00,1.00,-158.40,-14.40,0
+-115.20,-9.60,9.94,0.00,1.00,-153.60,-14.40,0
+-110.40,-14.40,9.90,0.00,1.00,-148.80,-14.40,0
+-105.60,-14.40,9.86,0.00,1.00,-139.20,-14.40,0
+-100.80,-14.40,9.82,0.00,1.00,-129.60,-14.40,0
+-96.00,-14.40,9.78,0.00,1.00,-115.20,-14.40,0
+-91.20,-14.40,9.74,0.00,1.00,-96.00,-14.40,0
+-86.40,-14.40,9.70,0.00,1.00,-76.80,-14.40,0
+-81.60,-14.40,9.66,0.00,1.00,-57.60,-14.40,0
+-76.80,-14.40,9.62,0.00,1.00,-43.20,-14.40,0
+-72.00,-14.40,9.58,0.00,1.00,-33.60,-14.40,0
+-67.20,-14.40,9.54,0.00,1.00,-28.80,-14.40,0
+-62.40,-9.60,9.50,0.00,1.00,-24.00,-14.40,0
+-57.60,-9.60,9.46,0.00,1.00,-19.20,-9.60,0
+-52.80,-9.60,9.42,0.00,1.00,-14.40,-9.60,0
+-48.00,-9.60,9.38,0.00,1.00,-14.40,-9.60,0
+-43.20,-9.60,9.34,0.00,1.00,-14.40,-9.60,0
+-38.40,-9.60,9.30,0.00,1.00,-9.60,-9.60,0
+-33.60,-9.60,9.26,0.00,1.00,-9.60,-4.80,0
+-28.80,-4.80,9.22,0.00,1.00,-4.80,-4.80,0
+-24.00,-4.80,9.18,0.00,1.00,-4.80,-4.80,0
+-19.20,-4.80,9.14,0.00,1.00,-4.80,-4.80,0
+-14.40,-4.80,9.10,0.00,1.00,-4.80,-0.00,0
+-9.60,-0.00,9.06,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,9.02,0.00,1.00,-0.00,0.00,0
+0.00,0.00,8.98,0.00,1.00,0.00,0.00,0
+4.80,0.00,8.94,0.00,1.00,0.00,0.00,0
+9.60,0.00,8.90,0.00,1.00,0.00,0.00,0
+14.40,0.00,8.86,0.00,1.00,0.00,4.80,0
+19.20,4.80,8.82,0.00,1.00,4.80,4.80,0
+24.00,4.80,8.78,0.00,1.00,4.80,4.80,0
+28.80,4.80,8.74,0.00,1.00,4.80,4.80,0
+33.60,4.80,8.70,0.00,1.00,4.80,4.80,0
+38.40,4.80,8.66,0.00,1.00,4.80,4.80,0
+43.20,4.80,8.62,0.00,1.00,9.60,4.80,0
+48.00,4.80,8.58,0.00,1.00,9.60,9.60,0
+52.80,4.80,8.54,0.00,1.00,9.60,9.60,0
+57.60,4.80,8.50,0.00,1.00,14.40,9.60,0
+62.40,9.60,8.46,0.00,1.00,14.40,9.60,0
+67.20,9.60,8.42,0.00,1.00,19.20,9.60,0
+72.00,9.60,8.38,0.00,1.00,24.00,9.60,0
+76.80,9.60,8.34,0.00,1.00,33.60,9.60,0
+81.60,9.60,8.30,0.00,1.00,43.20,9.60,0
+86.40,9.60,8.26,0.00,1.00,67.20,9.60,0
+91.20,9.60,8.22,0.00,1.00,96.00,9.60,0
+96.00,9.60,8.18,0.00,1.00,124.80,9.60,0
+100.80,9.60,8.14,0.00,1.00,144.00,9.60,0
+105.60,9.60,8.10,0.00,1.00,153.60,9.60,0
+110.40,9.60,8.06,0.00,1.00,158.40,9.60,0
+115.20,9.60,8.02,0.00,1.00,163.20,9.60,0
+120.00,9.60,7.98,0.00,1.00,168.00,9.60,0
+124.80,4.80,7.94,0.00,1.00,168.00,9.60,0
+129.60,4.80,7.90,0.00,1.00,168.00,4.80,0
+134.40,4.80,7.86,0.00,1.00,172.80,4.80,0
+139.20,4.80,7.82,0.00,1.00,172.80,4.80,0
+144.00,4.80,7.78,0.00,1.00,172.80,4.80,0
+148.80,4.80,7.74,0.00,1.00,172.80,4.80,0
+153.60,4.80,7.70,0.00,1.00,177.60,4.80,0
+158.40,4.80,7.66,0.00,1.00,177.60,4.80,0
+163.20,4.80,7.62,0.00,1.00,177.60,0.00,0
+168.00,0.00,7.58,0.00,1.00,177.60,0.00,0
+172.80,0.00,7.54,0.00,1.00,177.60,0.00,0
+177.60,0.00,7.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,7.46,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,7.42,0.00,1.00,-177.60,-0.00,0
+-168.00,-0.00,7.38,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,7.34,0.00,1.00,-177.60,-4.80,0
+-158.40,-4.80,7.30,0.00,1.00,-177.60,-4.80,0
+-153.60,-4.80,7.26,0.00,1.00,-177.60,-4.80,0
+-148.80,-4.80,7.22,0.00,1.00,-172.80,-4.80,0
+-144.00,-4.80,7.18,0.00,1.00,-172.80,-4.80,0
+-139.20,-4.80,7.14,0.00,1.00,-172.80,-4.80,0
+-134.40,-4.80,7.10,0.00,1.00,-172.80,-9.60,0
+-129.60,-4.80,7.06,0.00,1.00,-168.00,-9.60,0
+-124.80,-4.80,7.02,0.00,1.00,-168.00,-9.60,0
+-120.00,-9.60,6.98,0.00,1.00,-168.00,-9.60,0
+-115.20,-9.60,6.94,0.00,1.00,-163.20,-9.60,0
+-110.40,-9.60,6.90,0.00,1.00,-158.40,-9.60,0
+-105.60,-9.60,6.86,0.00,1.00,-153.60,-9.60,0
+-100.80,-9.60,6.82,0.00,1.00,-144.00,-9.60,0
+-96.00,-9.60,6.78,0.00,1.00,-124.80,-9.60,0
+-91.20,-9.60,6.74,0.00,1.00,-96.00,-9.60,0
+-86.40,-9.60,6.70,0.00,1.00,-67.20,-9.60,0
+-81.60,-9.60,6.66,0.00,1.00,-43.20,-9.60,0
+-76.80,-9.60,6.62,0.00,1.00,-33.60,-9.60,0
+-72.00,-9.60,6.58,0.00,1.00,-24.00,-9.60,0
+-67.20,-9.60,6.54,0.00,1.00,-19.20,-9.60,0
+-62.40,-9.60,6.50,0.00,1.00,-14.40,-9.60,0
+-57.60,-4.80,6.46,0.00,1.00,-14.40,-9.60,0
+-52.80,-4.80,6.42,0.00,1.00,-9.60,-4.80,0
+-48.00,-4.80,6.38,0.00,1.00,-9.60,-4.80,0
+-43.20,-4.80,6.34,0.00,1.00,-9.60,-4.80,0
+-38.40,-4.80,6.30,0.00,1.00,-4.80,-4.80,0
+-33.60,-4.80,6.26,0.00,1.00,-4.80,-4.80,0
+-28.80,-4.80,6.22,0.00,1.00,-4.80,-4.80,0
+-24.00,-4.80,6.18,0.00,1.00,-4.80,-4.80,0
+-19.20,-4.80,6.14,0.00,1.00,-4.80,-0.00,0
+-14.40,-0.00,6.10,0.00,1.00,-0.00,-0.00,0
+-9.60,-0.00,6.06,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,6.02,0.00,1.00,-0.00,0.00,0
+0.00,0.00,5.97,0.00,1.00,0.00,0.00,0
+4.80,0.00,5.93,0.00,1.00,0.00,0.00,0
+9.60,0.00,5.89,0.00,1.00,0.00,0.00,0
+14.40,0.00,5.85,0.00,1.00,0.00,0.00,0
+19.20,0.00,5.81,0.00,1.00,0.00,0.00,0
+24.00,0.00,5.77,0.00,1.00,0.00,0.00,0
+28.80,0.00,5.73,0.00,1.00,0.00,4.80,0
+33.60,0.00,5.69,0.00,1.00,0.00,4.80,0
+38.40,0.00,5.65,0.00,1.00,4.80,4.80,0
+43.20,4.80,5.61,0.00,1.00,4.80,4.80,0
+48.00,4.80,5.57,0.00,1.00,4.80,4.80,0
+52.80,4.80,5.53,0.00,1.00,4.80,4.80,0
+57.60,4.80,5.49,0.00,1.00,4.80,4.80,0
+62.40,4.80,5.45,0.00,1.00,4.80,4.80,0
+67.20,4.80,5.41,0.00,1.00,9.60,4.80,0
+72.00,4.80,5.37,0.00,1.00,9.60,4.80,0
+76.80,4.80,5.33,0.00,1.00,14.40,4.80,0
+81.60,4.80,5.29,0.00,1.00,24.00,4.80,0
+86.40,4.80,5.25,0.00,1.00,43.20,4.80,0
+91.20,4.80,5.21,0.00,1.00,110.40,4.80,0
+96.00,4.80,5.17,0.00,1.00,148.80,4.80,0
+100.80,4.80,5.13,0.00,1.00,163.20,4.80,0
+105.60,4.80,5.09,0.00,1.00,168.00,4.80,0
+110.40,4.80,5.05,0.00,1.00,172.80,4.80,0
+115.20,4.80,5.01,0.00,1.00,172.80,4.80,0
+120.00,4.80,4.97,0.00,1.00,172.80,4.80,0
+124.80,4.80,4.93,0.00,1.00,172.80,4.80,0
+129.60,4.80,4.89,0.00,1.00,177.60,4.80,0
+134.40,4.80,4.85,0.00,1.00,177.60,4.80,0
+139.20,0.00,4.81,0.00,1.00,177.60,4.80,0
+144.00,0.00,4.77,0.00,1.00,177.60,4.80,0
+148.80,0.00,4.73,0.00,1.00,177.60,0.00,0
+153.60,0.00,4.69,0.00,1.00,177.60,0.00,0
+158.40,0.00,4.65,0.00,1.00,177.60,0.00,0
+163.20,0.00,4.61,0.00,1.00,177.60,0.00,0
+168.00,0.00,4.57,0.00,1.00,177.60,0.00,0
+172.80,0.00,4.53,0.00,1.00,177.60,0.00,0
+177.60,0.00,4.49,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,4.45,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,4.41,0.00,1.00,-177.60,-0.00,0
+-168.00,-0.00,4.37,0.00,1.00,-177.60,-0.00,0
+-163.20,-0.00,4.33,0.00,1.00,-177.60,-0.00,0
+-158.40,-0.00,4.29,0.00,1.00,-177.60,-0.00,0
+-153.60,-0.00,4.25,0.00,1.00,-177.60,-4.80,0
+-148.80,-0.00,4.21,0.00,1.00,-177.60,-4.80,0
+-144.00,-0.00,4.17,0.00,1.00,-177.60,-4.80,0
+-139.20,-0.00,4.13,0.00,1.00,-177.60,-4.80,0
+-134.40,-4.80,4.09,0.00,1.00,-177.60,-4.80,0
+-129.60,-4.80,4.05,0.00,1.00,-177.60,-4.80,0
+-124.80,-4.80,4.01,0.00,1.00,-172.80,-4.80,0
+-120.00,-4.80,3.97,0.00,1.00,-172.80,-4.80,0
+-115.20,-4.80,3.93,0.00,1.00,-172.80,-4.80,0
+-110.40,-4.80,3.89,0.00,1.00,-172.80,-4.80,0
+-105.60,-4.80,3.85,0.00,1.00,-168.00,-4.80,0
+-100.80,-4.80,3.81,0.00,1.00,-163.20,-4.80,0
+-96.00,-4.80,3.77,0.00,1.00,-148.80,-4.80,0
+-91.20,-4.80,3.73,0.00,1.00,-110.40,-4.80,0
+-86.40,-4.80,3.69,0.00,1.00,-43.20,-4.80,0
+-81.60,-4.80,3.65,0.00,1.00,-24.00,-4.80,0
+-76.80,-4.80,3.61,0.00,1.00,-14.40,-4.80,0
+-72.00,-4.80,3.57,0.00,1.00,-9.60,-4.80,0
+-67.20,-4.80,3.53,0.00,1.00,-9.60,-4.80,0
+-62.40,-4.80,3.49,0.00,1.00,-4.80,-4.80,0
+-57.60,-4.80,3.45,0.00,1.00,-4.80,-4.80,0
+-52.80,-4.80,3.41,0.00,1.00,-4.80,-4.80,0
+-48.00,-4.80,3.37,0.00,1.00,-4.80,-4.80,0
+-43.20,-4.80,3.33,0.00,1.00,-4.80,-4.80,0
+-38.40,-0.00,3.29,0.00,1.00,-4.80,-4.80,0
+-33.60,-0.00,3.25,0.00,1.00,-0.00,-0.00,0
+-28.80,-0.00,3.21,0.00,1.00,-0.00,-0.00,0
+-24.00,-0.00,3.17,0.00,1.00,-0.00,-0.00,0
+-19.20,-0.00,3.13,0.00,1.00,-0.00,-0.00,0
+-14.40,-0.00,3.09,0.00,1.00,-0.00,-0.00,0
+-9.60,-0.00,3.05,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,3.01,0.00,1.00,-0.00,0.00,0
+0.00,0.00,2.97,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,2.93,0.00,1.00,-0.00,0.00,0
+9.60,-0.00,2.89,0.00,1.00,-0.00,0.00,0
+14.40,-0.00,2.85,0.00,1.00,-0.00,0.00,0
+19.20,-0.00,2.81,0.00,1.00,-0.00,0.00,0
+24.00,-0.00,2.77,0.00,1.00,-0.00,0.00,0
+28.80,-0.00,2.73,0.00,1.00,-0.00,0.00,0
+33.60,-0.00,2.69,0.00,1.00,-0.00,0.00,0
+38.40,-0.00,2.65,0.00,1.00,-0.00,0.00,0
+43.20,-0.00,2.61,0.00,1.00,-0.00,0.00,0
+48.00,-0.00,2.57,0.00,1.00,-0.00,0.00,0
+52.80,-0.00,2.53,0.00,1.00,-0.00,0.00,0
+57.60,-0.00,2.49,0.00,1.00,-0.00,0.00,0
+62.40,-0.00,2.45,0.00,1.00,-0.00,0.00,0
+67.20,-0.00,2.41,0.00,1.00,-4.80,0.00,0
+72.00,-0.00,2.37,0.00,1.00,-4.80,0.00,0
+76.80,-0.00,2.33,0.00,1.00,-4.80,0.00,0
+81.60,-0.00,2.29,0.00,1.00,-9.60,0.00,0
+86.40,-0.00,2.25,0.00,1.00,-19.20,0.00,0
+91.20,-0.00,2.21,0.00,1.00,-134.40,0.00,0
+96.00,-0.00,2.17,0.00,1.00,-168.00,0.00,0
+100.80,-0.00,2.13,0.00,1.00,-172.80,0.00,0
+105.60,-0.00,2.09,0.00,1.00,-177.60,0.00,0
+110.40,-0.00,2.05,0.00,1.00,-177.60,0.00,0
+115.20,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+120.00,-0.00,1.96,0.00,1.00,-177.60,0.00,0
+124.80,-0.00,1.92,0.00,1.00,-177.60,0.00,0
+129.60,-0.00,1.88,0.00,1.00,-177.60,0.00,0
+134.40,-0.00,1.84,0.00,1.00,-177.60,0.00,0
+139.20,-0.00,1.80,0.00,1.00,-177.60,0.00,0
+144.00,-0.00,1.76,0.00,1.00,-177.60,0.00,0
+148.80,-0.00,1.72,0.00,1.00,-177.60,0.00,0
+153.60,-0.00,1.68,0.00,1.00,-177.60,0.00,0
+158.40,-0.00,1.64,0.00,1.00,-177.60,0.00,0
+163.20,-0.00,1.60,0.00,1.00,-177.60,0.00,0
+168.00,-0.00,1.56,0.00,1.00,-177.60,0.00,0
+172.80,-0.00,1.52,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,1.48,0.00,1.00,-177.60,0.00,0
+-177.60,0.00,1.44,0.00,1.00,177.60,0.00,0
+-172.80,0.00,1.40,0.00,1.00,177.60,0.00,0
+-168.00,0.00,1.36,0.00,1.00,177.60,0.00,0
+-163.20,0.00,1.32,0.00,1.00,177.60,0.00,0
+-158.40,0.00,1.28,0.00,1.00,177.60,0.00,0
+-153.60,0.00,1.24,0.00,1.00,177.60,0.00,0
+-148.80,0.00,1.20,0.00,1.00,177.60,0.00,0
+-144.00,0.00,1.16,0.00,1.00,177.60,0.00,0
+-139.20,0.00,1.12,0.00,1.00,177.60,0.00,0
+-134.40,0.00,1.08,0.00,1.00,177.60,0.00,0
+-129.60,0.00,1.04,0.00,1.00,177.60,0.00,0
+-124.80,0.00,1.00,0.00,1.00,177.60,0.00,0
+-120.00,0.00,0.96,0.00,1.00,177.60,0.00,0
+-115.20,0.00,0.92,0.00,1.00,177.60,0.00,0
+-110.40,0.00,0.88,0.00,1.00,177.60,0.00,0
+-105.60,0.00,0.84,0.00,1.00,177.60,0.00,0
+-100.80,0.00,0.80,0.00,1.00,172.80,0.00,0
+-96.00,0.00,0.76,0.00,1.00,168.00,0.00,0
+-91.20,0.00,0.72,0.00,1.00,134.40,0.00,0
+-86.40,0.00,0.68,0.00,1.00,19.20,0.00,0
+-81.60,0.00,0.64,0.00,1.00,9.60,0.00,0
+-76.80,0.00,0.60,0.00,1.00,4.80,0.00,0
+-72.00,0.00,0.56,0.00,1.00,4.80,0.00,0
+-67.20,0.00,0.52,0.00,1.00,4.80,0.00,0
+-62.40,0.00,0.48,0.00,1.00,0.00,0.00,0
+-57.60,0.00,0.44,0.00,1.00,0.00,0.00,0
+-52.80,0.00,0.40,0.00,1.00,0.00,0.00,0
+-48.00,0.00,0.36,0.00,1.00,0.00,0.00,0
+-43.20,0.00,0.32,0.00,1.00,0.00,0.00,0
+-38.40,0.00,0.28,0.00,1.00,0.00,0.00,0
+-33.60,0.00,0.24,0.00,1.00,0.00,0.00,0
+-28.80,0.00,0.20,0.00,1.00,0.00,0.00,0
+-24.00,0.00,0.16,0.00,1.00,0.00,0.00,0
+-19.20,0.00,0.12,0.00,1.00,0.00,0.00,0
+-14.40,0.00,0.08,0.00,1.00,0.00,0.00,0
+-9.60,0.00,0.04,0.00,1.00,0.00,0.00,0
+-4.80,0.00,0.00,0.00,1.00,0.00,0.00,0
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA1TC32c.met b/scripts/testv/stvOMASA_4ISM_2MASA1TC32c.met
new file mode 100644
index 0000000000000000000000000000000000000000..64688774087538a671ebfda830ff11b4f836f438
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA1TC32c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d125a4c4e3989ac55f9c2617f464431feae4ede9b2e15d087d3271c0a4a56303
+size 319800
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA1TC32c.wav b/scripts/testv/stvOMASA_4ISM_2MASA1TC32c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..8cfd3a944d569afefcca4bfdb405441011cb7cbd
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA1TC32c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:80d21b18d2c55179fe589eca09e99e7ac41a1760ba6681aa95355f105a04a18f
+size 1920080
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA1TC32c_ISM1.csv b/scripts/testv/stvOMASA_4ISM_2MASA1TC32c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA1TC32c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA1TC32c_ISM2.csv b/scripts/testv/stvOMASA_4ISM_2MASA1TC32c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA1TC32c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA1TC32c_ISM3.csv b/scripts/testv/stvOMASA_4ISM_2MASA1TC32c_ISM3.csv
new file mode 100644
index 0000000000000000000000000000000000000000..14eee9b693b536fa2fd22d2813d7f588b8930b06
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA1TC32c_ISM3.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0
+-177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0
+4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0
+-168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0
+14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0
+-163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0
+19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0
+-153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0
+28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0
+-148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0
+38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0
+-139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0
+48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0
+-124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0
+57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0
+-115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0
+72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0
+-100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0
+86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0
+-86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0
+100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0
+-76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0
+110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0
+-62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0
+124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0
+-52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0
+134.40,33.60,0.28,0.00,1.00,177.60,0.00,0
+-38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0
+144.00,28.80,0.30,0.00,1.00,177.60,0.00,0
+-33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0
+153.60,24.00,0.32,0.00,1.00,177.60,0.00,0
+-24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0
+158.40,19.20,0.34,0.00,1.00,177.60,0.00,0
+-14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0
+168.00,9.60,0.36,0.00,1.00,177.60,0.00,0
+-9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0
+172.80,4.80,0.38,0.00,1.00,177.60,0.00,0
+-0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0
+-177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0
+4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0
+14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0
+19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0
+-158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0
+28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0
+-148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0
+33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0
+-139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0
+43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0
+-129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0
+57.60,38.40,15.47,0.00,1.00,177.60,0.00,0
+-120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0
+67.20,43.20,15.44,0.00,1.00,177.60,0.00,0
+-105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0
+81.60,43.20,15.42,0.00,1.00,177.60,0.00,0
+-91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0
+96.00,43.20,15.40,0.00,1.00,0.00,0.00,0
+-76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0
+110.40,43.20,15.38,0.00,1.00,0.00,0.00,0
+-67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0
+120.00,38.40,15.36,0.00,1.00,0.00,0.00,0
+-52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0
+129.60,38.40,15.34,0.00,1.00,0.00,0.00,0
+-43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0
+144.00,33.60,15.32,0.00,1.00,0.00,0.00,0
+-33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0
+148.80,24.00,15.30,0.00,1.00,0.00,0.00,0
+-24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0
+158.40,19.20,15.27,0.00,1.00,0.00,0.00,0
+-19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0
+168.00,14.40,15.25,0.00,1.00,0.00,0.00,0
+-9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0
+172.80,4.80,15.23,0.00,1.00,0.00,0.00,0
+-4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0
+0.00,0.00,15.21,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0
+9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0
+14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0
+-163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0
+24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0
+-153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0
+28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0
+-144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0
+38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0
+-134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0
+48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0
+-124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0
+62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0
+-115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0
+72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0
+-100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0
+86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0
+-86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0
+96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0
+-76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0
+110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0
+-62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0
+120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0
+-52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0
+134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0
+-43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0
+144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0
+-33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0
+148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0
+-24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0
+158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0
+-19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0
+168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0
+-9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0
+172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0
+4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0
+14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0
+19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0
+-153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0
+28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0
+-148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0
+38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0
+-139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0
+48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0
+-124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0
+57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0
+-115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0
+72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0
+-105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0
+81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0
+-91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0
+96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0
+-76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0
+105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0
+-67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0
+120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0
+-57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0
+129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0
+-43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0
+139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0
+-33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0
+148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0
+-28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0
+158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0
+-19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0
+163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0
+-9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0
+172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0
+0.00,0.00,1.60,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0
+9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0
+14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0
+-158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0
+24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0
+-153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0
+33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0
+-144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0
+43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0
+-134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0
+52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0
+-124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0
+62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0
+-110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0
+72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0
+-100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0
+86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0
+-86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0
+96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0
+-76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0
+110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0
+-67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0
+120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0
+-52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0
+129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0
+-43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0
+139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0
+-33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0
+148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0
+-24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0
+158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0
+-19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0
+168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0
+172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0
+14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0
+-163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0
+24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0
+-153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0
+28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0
+-144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0
+38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0
+-134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0
+48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0
+-124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0
+62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0
+-115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0
+72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0
+-100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0
+81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0
+-91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0
+96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0
+-81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0
+105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0
+-67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0
+115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0
+-57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0
+129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0
+-48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0
+139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0
+-38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0
+148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0
+-28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0
+153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0
+-19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0
+163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0
+-9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0
+172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0
+0.00,0.00,13.61,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0
+9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0
+-168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0
+24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0
+-148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0
+33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0
+-139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0
+43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0
+-129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0
+52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0
+-120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0
+62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0
+-110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0
+76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0
+-100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0
+86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0
+-86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0
+96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0
+-76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0
+105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0
+-67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0
+120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0
+-57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0
+129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0
+-48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0
+139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0
+-38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0
+148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0
+158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0
+-19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0
+163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0
+172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0
+4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0
+14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0
+-163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0
+24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0
+-153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0
+33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0
+-144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0
+43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0
+-134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0
+52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0
+-124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0
+62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0
+-115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0
+72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0
+-100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0
+81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0
+-91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0
+96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0
+-81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0
+105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0
+-67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0
+115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0
+-57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0
+124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0
+-48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0
+134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0
+-38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0
+144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0
+-28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0
+153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0
+-19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0
+163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0
+-14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0
+172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0
+-4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0
+0.00,0.00,3.20,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0
+9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0
+19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0
+24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0
+-148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0
+33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0
+-139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0
+43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0
+-129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0
+52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0
+-120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0
+67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0
+-110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0
+76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0
+-100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0
+86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0
+-86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0
+96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0
+-76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0
+105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0
+-67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0
+115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0
+-57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0
+129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0
+-48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0
+139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0
+-38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0
+148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0
+153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0
+-19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0
+163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0
+172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0
+4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0
+14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0
+24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0
+-153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0
+33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0
+-144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0
+43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0
+-134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0
+52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0
+-124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0
+62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0
+-110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0
+72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0
+-100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0
+81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0
+-91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0
+96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0
+-81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0
+105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0
+-72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0
+115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0
+-57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0
+124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0
+-48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0
+134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0
+-38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0
+144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0
+-28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0
+153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0
+-24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0
+163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0
+-14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0
+172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,12.01,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0
+9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0
+-158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0
+28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0
+-148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0
+38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0
+-139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0
+48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0
+-129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0
+57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0
+-120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0
+67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0
+-110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0
+76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0
+-100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0
+86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0
+-86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0
+96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0
+-76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0
+105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0
+-67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0
+115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0
+-57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0
+124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0
+-48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0
+134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0
+-38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0
+144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0
+-28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0
+153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0
+-19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0
+163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0
+172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0
+4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0
+14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0
+24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0
+-148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0
+33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0
+-139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0
+43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0
+-129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0
+52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0
+-120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0
+62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0
+-110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0
+72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0
+-100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0
+81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0
+-91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0
+96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0
+-81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0
+105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0
+-72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0
+115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0
+-62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0
+124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0
+-52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0
+134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0
+-43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0
+144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0
+-33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0
+153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0
+-24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0
+163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0
+172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0
+0.00,0.00,4.81,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0
+9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0
+19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0
+28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0
+-148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0
+38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0
+-139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0
+48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0
+-129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0
+57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0
+-120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0
+67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0
+-110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0
+76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0
+-100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0
+86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0
+-86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0
+96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0
+-76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0
+105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0
+-67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0
+115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0
+-57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0
+124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0
+-48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0
+134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0
+-38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0
+144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0
+-28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0
+153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0
+-19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0
+163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0
+-9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0
+172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0
+4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0
+14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0
+24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0
+-148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0
+33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0
+-139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0
+43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0
+-129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0
+52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0
+-120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0
+62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0
+-110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0
+72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0
+-100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0
+81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0
+-91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0
+96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0
+-81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0
+105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0
+-72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0
+115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0
+-62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0
+124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0
+-52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0
+134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0
+-43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0
+144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0
+-33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0
+153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0
+-24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0
+163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0
+172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+0.00,0.00,10.40,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0
+9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0
+19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0
+28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0
+-148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0
+38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0
+-139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0
+48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0
+-129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0
+57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0
+-120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0
+67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0
+-110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0
+76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0
+-100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0
+86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0
+-86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0
+96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0
+-76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0
+105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0
+-67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0
+115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0
+-57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0
+124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0
+-48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0
+134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0
+-38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0
+144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0
+-28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0
+153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0
+163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0
+-9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0
+172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0
+4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0
+14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0
+24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0
+33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0
+-139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0
+43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0
+-129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0
+52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0
+-120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0
+62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0
+-110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0
+72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0
+-100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0
+81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0
+-91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0
+96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0
+-81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0
+105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0
+-72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0
+115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0
+-62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0
+124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0
+-52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0
+134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0
+-43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0
+144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0
+-33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0
+153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0
+-24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0
+163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0
+172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,6.41,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0
+9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0
+19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0
+-158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0
+28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0
+-148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0
+38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0
+-139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0
+48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0
+-129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0
+57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0
+-120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0
+67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0
+-110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0
+76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0
+-100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0
+86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0
+-86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0
+96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0
+-76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0
+105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0
+-67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0
+115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0
+-57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0
+124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0
+-48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0
+134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0
+-38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0
+144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0
+-28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0
+153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0
+163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0
+172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0
+4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0
+14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0
+-158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0
+24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0
+33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0
+-139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0
+43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0
+-129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0
+52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0
+-120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0
+62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0
+-110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0
+72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0
+-100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0
+81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0
+-91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0
+96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0
+-81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0
+105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0
+-72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0
+115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0
+-62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0
+124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0
+-52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0
+134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0
+-43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0
+144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0
+-33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0
+153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0
+-24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0
+163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0
+-14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0
+172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.80,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0
+9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0
+19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0
+-158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0
+28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0
+-148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0
+38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0
+-139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0
+48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0
+-129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0
+57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0
+-120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0
+67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0
+-110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0
+76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0
+-100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0
+86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0
+-86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0
+96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0
+-76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0
+105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0
+-67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0
+115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0
+-57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0
+124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0
+-48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0
+134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0
+-38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0
+144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0
+-28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0
+153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0
+-19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0
+163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0
+172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0
+-0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0
+4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0
+-168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0
+14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0
+-158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0
+24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0
+-148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0
+33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0
+-139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0
+43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0
+-129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0
+52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0
+-120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0
+62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0
+-110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0
+72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0
+-100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0
+81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0
+-91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0
+96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0
+-81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0
+105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0
+-72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0
+115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0
+-62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0
+124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0
+-52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0
+134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0
+-43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0
+144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0
+-33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0
+153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0
+-24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0
+163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0
+-14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0
+172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.01,0.00,1.00,0.00,0.00,0
+-177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0
+-168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0
+19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0
+-158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0
+28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0
+-148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0
+38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0
+-139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0
+48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0
+-129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0
+57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0
+-120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0
+67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0
+-110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0
+76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0
+-100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0
+86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0
+-86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0
+96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0
+-76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0
+105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0
+-67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0
+115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0
+-57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0
+124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0
+-48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0
+134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0
+-38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0
+144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0
+-28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0
+153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0
+-19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0
+163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0
+172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0
+14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0
+-158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0
+24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0
+-148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0
+33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0
+-139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0
+43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0
+-129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0
+52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0
+-120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0
+62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0
+-110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0
+72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0
+-100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0
+81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0
+-91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0
+96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0
+-81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0
+105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0
+-72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0
+115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0
+-62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0
+124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0
+-52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0
+134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0
+-43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0
+144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0
+-33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0
+153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0
+-24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0
+163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0
+-4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0
+0.00,0.00,7.20,0.00,1.00,0.00,0.00,0
+-177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0
+-168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0
+19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0
+38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0
+-139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0
+48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0
+-129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0
+57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0
+-120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0
+67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0
+-110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0
+76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0
+-100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0
+86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0
+-86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0
+96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0
+-76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0
+105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0
+-67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0
+115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0
+-57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0
+124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0
+-48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0
+134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0
+-38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0
+144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0
+-19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0
+163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0
+14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0
+-148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0
+33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0
+-139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0
+43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0
+-129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0
+52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0
+-120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0
+62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0
+72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0
+-100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0
+81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0
+-91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0
+96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0
+-81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0
+105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0
+-72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0
+115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0
+-62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0
+124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0
+-52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0
+134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0
+-43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0
+144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0
+-33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0
+153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0
+0.00,0.00,9.61,0.00,1.00,0.00,0.00,0
+-177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0
+48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0
+-129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0
+57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0
+-120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0
+67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0
+-110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0
+76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0
+-100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0
+86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0
+-86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0
+96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0
+-76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0
+105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0
+-67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0
+115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0
+-57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0
+124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0
+-48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0
+134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0
+163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0
+-9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0
+-148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0
+33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0
+-139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0
+43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0
+-129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0
+52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0
+-120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0
+62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0
+72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0
+-100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0
+81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0
+-91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0
+96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0
+-81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0
+105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0
+-72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0
+115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0
+-62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0
+124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0
+-52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0
+134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0
+-43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0
+144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0
+-33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0
+153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0
+-14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0
+172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0
+0.00,0.00,5.60,0.00,1.00,0.00,0.00,0
+-177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0
+-158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0
+28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0
+-148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0
+48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0
+-129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0
+57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0
+-120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0
+67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0
+-110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0
+76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0
+-100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0
+86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0
+-86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0
+96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0
+-76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0
+105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0
+-67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0
+115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0
+-57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0
+124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0
+-48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0
+134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0
+-28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0
+153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0
+-158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0
+-148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0
+33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0
+-139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0
+43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0
+-129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0
+52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0
+-120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0
+62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0
+-110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0
+72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0
+-100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0
+81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0
+-91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0
+96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0
+-81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0
+105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0
+-72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0
+115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0
+-62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0
+124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0
+-52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0
+134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0
+-43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0
+144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0
+-33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0
+153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0
+0.00,0.00,11.21,0.00,1.00,0.00,0.00,0
+-177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0
+28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0
+-148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0
+38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0
+-139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0
+48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0
+57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0
+-120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0
+67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0
+-110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0
+76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0
+-100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0
+86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0
+-86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0
+96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0
+-76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0
+105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0
+-67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0
+115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0
+-57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0
+124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0
+-48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0
+134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0
+-38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0
+144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0
+-28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0
+153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0
+-148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0
+-139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0
+43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0
+-129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0
+52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0
+-120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0
+62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0
+-110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0
+72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0
+-100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0
+81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0
+-91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0
+96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0
+-81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0
+105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0
+-72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0
+115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0
+-62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0
+124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0
+-52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0
+134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0
+-43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0
+-33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0
+153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0
+-24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0
+163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,3.99,0.00,1.00,0.00,0.00,0
+-177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0
+19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0
+-148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0
+33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0
+43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0
+52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0
+-120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0
+62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0
+-110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0
+76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0
+-100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0
+86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0
+-86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0
+96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0
+-76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0
+105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0
+-67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0
+120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0
+-57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0
+-48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0
+139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0
+148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0
+158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0
+163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0
+43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0
+-134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0
+-124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0
+62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0
+-110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0
+72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0
+-100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0
+81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0
+-91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0
+96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0
+-81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0
+105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0
+-72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0
+115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0
+-57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0
+124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0
+-48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0
+134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0
+-38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0
+-28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0
+-24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,12.82,0.00,1.00,0.00,0.00,0
+-177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0
+-148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0
+33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0
+-129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0
+-120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0
+62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0
+-110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0
+76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0
+-100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0
+86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0
+-86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0
+96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0
+-76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0
+110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0
+-67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0
+120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0
+-57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0
+-48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0
+-163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0
+33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0
+43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0
+-134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0
+62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0
+-115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0
+72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0
+-100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0
+81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0
+-91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0
+96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0
+-81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0
+105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0
+-67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0
+115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0
+-57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0
+124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0
+-48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0
+134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0
+-38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0
+144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0
+-14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,2.39,0.00,1.00,0.00,0.00,0
+-177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0
+33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0
+-144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0
+-134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0
+62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0
+-110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0
+72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0
+-100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0
+86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0
+-86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0
+96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0
+-76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0
+110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0
+-67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0
+120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0
+-52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0
+129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0
+-19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0
+28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0
+-144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0
+38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0
+-134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0
+48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0
+57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0
+-115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0
+72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0
+-105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0
+81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0
+-91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0
+96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0
+-81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0
+105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0
+-67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0
+120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0
+-57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0
+129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0
+-48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0
+139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0
+-38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0
+158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0
+0.00,0.00,14.42,0.00,1.00,0.00,0.00,0
+-177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0
+-163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0
+24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0
+28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0
+-144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0
+38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0
+-134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0
+48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0
+62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0
+-115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0
+72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0
+86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0
+-86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0
+96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0
+-76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0
+110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0
+-62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0
+120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0
+-52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0
+134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0
+158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0
+-148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0
+38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0
+-139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0
+48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0
+-129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0
+-115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0
+67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0
+-105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0
+81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0
+-91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0
+96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0
+105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0
+-67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0
+120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0
+-52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0
+129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0
+139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0
+163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0
+0.00,0.00,0.79,0.00,1.00,0.00,0.00,0
+-177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0
+4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0
+-163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0
+19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0
+-153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0
+28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0
+-148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0
+38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0
+-139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0
+48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0
+-124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0
+57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0
+-115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0
+72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0
+86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0
+-86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0
+100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0
+-76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0
+110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0
+-62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0
+124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0
+-48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0
+134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0
+-38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0
+-28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0
+-24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0
+163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0
+168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0
+9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0
+-158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0
+-148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0
+33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0
+-139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0
+43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0
+-129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0
+-120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0
+67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0
+-105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0
+81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0
+-91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0
+96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0
+110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0
+-67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0
+120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0
+-52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0
+134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0
+144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0
+153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0
+-24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0
+-19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0
+168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA1TC32c_ISM4.csv b/scripts/testv/stvOMASA_4ISM_2MASA1TC32c_ISM4.csv
new file mode 100644
index 0000000000000000000000000000000000000000..8a14c3413ddd2dd47415bf6de3e19631f65f8f6c
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA1TC32c_ISM4.csv
@@ -0,0 +1,1500 @@
+-0.00,0.00,0.00,0.00,1.00,0.00,4.80,0
+-0.00,4.80,0.06,0.00,1.00,4.80,9.60,0
+-0.00,9.60,0.13,0.00,1.00,9.60,14.40,0
+-0.00,14.40,0.19,0.00,1.00,14.40,19.20,0
+-0.00,19.20,0.26,0.00,1.00,19.20,24.00,0
+-0.00,24.00,0.32,0.00,1.00,24.00,28.80,0
+-0.00,28.80,0.39,0.00,1.00,28.80,33.60,0
+-0.00,33.60,0.45,0.00,1.00,33.60,38.40,0
+-0.00,38.40,0.51,0.00,1.00,38.40,43.20,0
+-0.00,43.20,0.58,0.00,1.00,43.20,48.00,0
+-0.00,48.00,0.64,0.00,1.00,48.00,52.80,0
+-0.00,52.80,0.71,0.00,1.00,52.80,57.60,0
+-0.00,57.60,0.77,0.00,1.00,57.60,62.40,0
+-0.00,62.40,0.84,0.00,1.00,62.40,67.20,0
+-0.00,67.20,0.90,0.00,1.00,67.20,72.00,0
+-0.00,72.00,0.96,0.00,1.00,72.00,76.80,0
+-0.00,76.80,1.03,0.00,1.00,76.80,81.60,0
+-0.00,81.60,1.09,0.00,1.00,81.60,86.40,0
+-0.00,86.40,1.16,0.00,1.00,86.40,86.40,0
+-177.60,89.20,1.22,0.00,1.00,91.20,81.60,0
+-177.60,86.40,1.29,0.00,1.00,96.00,76.80,0
+-177.60,81.60,1.35,0.00,1.00,100.80,72.00,0
+-177.60,76.80,1.41,0.00,1.00,105.60,67.20,0
+-177.60,72.00,1.48,0.00,1.00,110.40,62.40,0
+-177.60,67.20,1.54,0.00,1.00,115.20,57.60,0
+177.60,62.40,1.61,0.00,1.00,120.00,52.80,0
+177.60,57.60,1.67,0.00,1.00,124.80,48.00,0
+177.60,52.80,1.73,0.00,1.00,129.60,43.20,0
+177.60,48.00,1.80,0.00,1.00,134.40,38.40,0
+177.60,43.20,1.86,0.00,1.00,139.20,33.60,0
+177.60,38.40,1.93,0.00,1.00,144.00,28.80,0
+177.60,33.60,1.99,0.00,1.00,148.80,24.00,0
+177.60,28.80,2.06,0.00,1.00,153.60,19.20,0
+177.60,24.00,2.12,0.00,1.00,158.40,14.40,0
+177.60,19.20,2.18,0.00,1.00,163.20,9.60,0
+177.60,14.40,2.25,0.00,1.00,168.00,4.80,0
+177.60,9.60,2.31,0.00,1.00,172.80,0.00,0
+177.60,4.80,2.38,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.44,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,2.51,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,2.57,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,2.63,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,2.70,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,2.76,0.00,1.00,-153.60,-28.80,0
+-177.60,-28.80,2.83,0.00,1.00,-148.80,-33.60,0
+-177.60,-33.60,2.89,0.00,1.00,-144.00,-38.40,0
+-177.60,-38.40,2.96,0.00,1.00,-139.20,-43.20,0
+-177.60,-48.00,3.02,0.00,1.00,-134.40,-48.00,0
+-177.60,-48.00,3.08,0.00,1.00,-129.60,-52.80,0
+-177.60,-52.80,3.15,0.00,1.00,-124.80,-57.60,0
+-177.60,-57.60,3.21,0.00,1.00,-120.00,-62.40,0
+177.60,-62.40,3.28,0.00,1.00,-115.20,-67.20,0
+177.60,-67.20,3.34,0.00,1.00,-110.40,-72.00,0
+177.60,-76.80,3.41,0.00,1.00,-105.60,-76.80,0
+177.60,-76.80,3.47,0.00,1.00,-100.80,-81.60,0
+177.60,-86.40,3.53,0.00,1.00,-96.00,-86.40,0
+177.60,-89.20,3.60,0.00,1.00,-91.20,-86.40,0
+0.00,-86.40,3.66,0.00,1.00,-86.40,-81.60,0
+0.00,-81.60,3.73,0.00,1.00,-81.60,-76.80,0
+0.00,-76.80,3.79,0.00,1.00,-76.80,-72.00,0
+0.00,-72.00,3.86,0.00,1.00,-72.00,-67.20,0
+0.00,-67.20,3.92,0.00,1.00,-67.20,-62.40,0
+0.00,-62.40,3.98,0.00,1.00,-62.40,-57.60,0
+0.00,-57.60,4.05,0.00,1.00,-57.60,-52.80,0
+0.00,-52.80,4.11,0.00,1.00,-52.80,-48.00,0
+0.00,-48.00,4.18,0.00,1.00,-48.00,-43.20,0
+0.00,-43.20,4.24,0.00,1.00,-43.20,-38.40,0
+0.00,-38.40,4.31,0.00,1.00,-38.40,-33.60,0
+0.00,-33.60,4.37,0.00,1.00,-33.60,-28.80,0
+0.00,-28.80,4.43,0.00,1.00,-28.80,-24.00,0
+0.00,-24.00,4.50,0.00,1.00,-24.00,-19.20,0
+0.00,-19.20,4.56,0.00,1.00,-19.20,-14.40,0
+0.00,-14.40,4.63,0.00,1.00,-14.40,-9.60,0
+0.00,-9.60,4.69,0.00,1.00,-9.60,-4.80,0
+0.00,-4.80,4.76,0.00,1.00,-4.80,0.00,0
+0.00,0.00,4.82,0.00,1.00,0.00,4.80,0
+0.00,4.80,4.88,0.00,1.00,4.80,9.60,0
+0.00,9.60,4.95,0.00,1.00,9.60,14.40,0
+0.00,14.40,5.01,0.00,1.00,14.40,19.20,0
+0.00,19.20,5.08,0.00,1.00,19.20,24.00,0
+0.00,24.00,5.14,0.00,1.00,24.00,28.80,0
+4.80,28.80,5.20,0.00,1.00,28.80,33.60,0
+4.80,33.60,5.27,0.00,1.00,33.60,38.40,0
+4.80,38.40,5.33,0.00,1.00,38.40,43.20,0
+4.80,43.20,5.40,0.00,1.00,43.20,48.00,0
+4.80,48.00,5.46,0.00,1.00,48.00,52.80,0
+4.80,52.80,5.53,0.00,1.00,52.80,57.60,0
+9.60,57.60,5.59,0.00,1.00,57.60,62.40,0
+9.60,62.40,5.65,0.00,1.00,62.40,67.20,0
+9.60,67.20,5.72,0.00,1.00,67.20,72.00,0
+14.40,72.00,5.78,0.00,1.00,72.00,76.80,0
+19.20,76.80,5.85,0.00,1.00,76.80,81.60,0
+28.80,81.60,5.91,0.00,1.00,81.60,86.40,0
+52.80,86.40,5.98,0.00,1.00,86.40,86.40,0
+105.60,86.40,6.04,0.00,1.00,91.20,81.60,0
+139.20,81.60,6.10,0.00,1.00,96.00,76.80,0
+158.40,76.80,6.17,0.00,1.00,100.80,72.00,0
+163.20,72.00,6.23,0.00,1.00,105.60,67.20,0
+168.00,67.20,6.30,0.00,1.00,110.40,62.40,0
+168.00,62.40,6.36,0.00,1.00,115.20,57.60,0
+172.80,57.60,6.43,0.00,1.00,120.00,52.80,0
+172.80,52.80,6.49,0.00,1.00,124.80,48.00,0
+172.80,48.00,6.55,0.00,1.00,129.60,43.20,0
+172.80,43.20,6.62,0.00,1.00,134.40,38.40,0
+177.60,38.40,6.68,0.00,1.00,139.20,33.60,0
+177.60,33.60,6.75,0.00,1.00,144.00,28.80,0
+177.60,28.80,6.81,0.00,1.00,148.80,24.00,0
+177.60,24.00,6.88,0.00,1.00,153.60,19.20,0
+177.60,19.20,6.94,0.00,1.00,158.40,14.40,0
+177.60,14.40,7.00,0.00,1.00,163.20,9.60,0
+177.60,9.60,7.07,0.00,1.00,168.00,4.80,0
+177.60,4.80,7.13,0.00,1.00,172.80,0.00,0
+177.60,0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,7.26,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,7.33,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,7.39,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,7.45,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,7.52,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,7.58,0.00,1.00,-153.60,-28.80,0
+-177.60,-28.80,7.65,0.00,1.00,-148.80,-33.60,0
+-177.60,-33.60,7.71,0.00,1.00,-144.00,-38.40,0
+-177.60,-38.40,7.78,0.00,1.00,-139.20,-43.20,0
+-172.80,-43.20,7.84,0.00,1.00,-134.40,-48.00,0
+-172.80,-48.00,7.90,0.00,1.00,-129.60,-52.80,0
+-172.80,-52.80,7.97,0.00,1.00,-124.80,-57.60,0
+-172.80,-57.60,8.03,0.00,1.00,-120.00,-62.40,0
+-168.00,-62.40,8.10,0.00,1.00,-115.20,-67.20,0
+-168.00,-67.20,8.16,0.00,1.00,-110.40,-72.00,0
+-163.20,-72.00,8.22,0.00,1.00,-105.60,-76.80,0
+-158.40,-76.80,8.29,0.00,1.00,-100.80,-81.60,0
+-139.20,-81.60,8.35,0.00,1.00,-96.00,-86.40,0
+-105.60,-86.40,8.42,0.00,1.00,-91.20,-86.40,0
+-52.80,-86.40,8.48,0.00,1.00,-86.40,-81.60,0
+-28.80,-81.60,8.55,0.00,1.00,-81.60,-76.80,0
+-19.20,-76.80,8.61,0.00,1.00,-76.80,-72.00,0
+-14.40,-72.00,8.67,0.00,1.00,-72.00,-67.20,0
+-9.60,-67.20,8.74,0.00,1.00,-67.20,-62.40,0
+-9.60,-62.40,8.80,0.00,1.00,-62.40,-57.60,0
+-9.60,-57.60,8.87,0.00,1.00,-57.60,-52.80,0
+-4.80,-52.80,8.93,0.00,1.00,-52.80,-48.00,0
+-4.80,-48.00,9.00,0.00,1.00,-48.00,-43.20,0
+-4.80,-43.20,9.06,0.00,1.00,-43.20,-38.40,0
+-4.80,-38.40,9.12,0.00,1.00,-38.40,-33.60,0
+-4.80,-33.60,9.19,0.00,1.00,-33.60,-28.80,0
+-4.80,-28.80,9.25,0.00,1.00,-28.80,-24.00,0
+-0.00,-24.00,9.32,0.00,1.00,-24.00,-19.20,0
+-0.00,-19.20,9.38,0.00,1.00,-19.20,-14.40,0
+-0.00,-14.40,9.45,0.00,1.00,-14.40,-9.60,0
+-0.00,-9.60,9.51,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,9.57,0.00,1.00,-4.80,0.00,0
+0.00,0.00,9.64,0.00,1.00,0.00,4.80,0
+0.00,4.80,9.70,0.00,1.00,4.80,9.60,0
+0.00,9.60,9.77,0.00,1.00,9.60,14.40,0
+4.80,14.40,9.83,0.00,1.00,14.40,19.20,0
+4.80,19.20,9.90,0.00,1.00,19.20,24.00,0
+4.80,24.00,9.96,0.00,1.00,24.00,28.80,0
+4.80,28.80,10.02,0.00,1.00,28.80,33.60,0
+4.80,33.60,10.09,0.00,1.00,33.60,38.40,0
+9.60,38.40,10.15,0.00,1.00,38.40,43.20,0
+9.60,43.20,10.22,0.00,1.00,43.20,48.00,0
+9.60,48.00,10.28,0.00,1.00,48.00,52.80,0
+14.40,52.80,10.35,0.00,1.00,52.80,57.60,0
+14.40,57.60,10.41,0.00,1.00,57.60,62.40,0
+19.20,62.40,10.47,0.00,1.00,62.40,67.20,0
+24.00,67.20,10.54,0.00,1.00,67.20,72.00,0
+28.80,72.00,10.60,0.00,1.00,72.00,72.00,0
+33.60,72.00,10.67,0.00,1.00,76.80,76.80,0
+48.00,76.80,10.73,0.00,1.00,81.60,81.60,0
+67.20,81.60,10.80,0.00,1.00,86.40,81.60,0
+96.00,81.60,10.86,0.00,1.00,91.20,81.60,0
+120.00,76.80,10.92,0.00,1.00,96.00,76.80,0
+139.20,76.80,10.99,0.00,1.00,100.80,72.00,0
+148.80,72.00,11.05,0.00,1.00,105.60,67.20,0
+153.60,67.20,11.12,0.00,1.00,110.40,62.40,0
+158.40,62.40,11.18,0.00,1.00,115.20,57.60,0
+163.20,57.60,11.24,0.00,1.00,120.00,52.80,0
+168.00,52.80,11.31,0.00,1.00,124.80,48.00,0
+168.00,48.00,11.37,0.00,1.00,129.60,43.20,0
+168.00,43.20,11.44,0.00,1.00,134.40,38.40,0
+172.80,38.40,11.50,0.00,1.00,139.20,33.60,0
+172.80,33.60,11.57,0.00,1.00,144.00,28.80,0
+172.80,28.80,11.63,0.00,1.00,148.80,24.00,0
+177.60,24.00,11.69,0.00,1.00,153.60,19.20,0
+177.60,19.20,11.76,0.00,1.00,158.40,14.40,0
+177.60,14.40,11.82,0.00,1.00,163.20,9.60,0
+177.60,9.60,11.89,0.00,1.00,168.00,4.80,0
+177.60,4.80,11.95,0.00,1.00,172.80,0.00,0
+177.60,0.00,12.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,12.08,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,12.14,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,12.21,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,12.27,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,12.34,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,12.40,0.00,1.00,-153.60,-28.80,0
+-172.80,-28.80,12.47,0.00,1.00,-148.80,-33.60,0
+-172.80,-33.60,12.53,0.00,1.00,-144.00,-38.40,0
+-172.80,-38.40,12.59,0.00,1.00,-139.20,-43.20,0
+-168.00,-43.20,12.66,0.00,1.00,-134.40,-48.00,0
+-168.00,-48.00,12.72,0.00,1.00,-129.60,-52.80,0
+-168.00,-52.80,12.79,0.00,1.00,-124.80,-57.60,0
+-163.20,-57.60,12.85,0.00,1.00,-120.00,-62.40,0
+-158.40,-62.40,12.92,0.00,1.00,-115.20,-67.20,0
+-153.60,-67.20,12.98,0.00,1.00,-110.40,-72.00,0
+-148.80,-72.00,13.04,0.00,1.00,-105.60,-76.80,0
+-139.20,-76.80,13.11,0.00,1.00,-100.80,-81.60,0
+-120.00,-76.80,13.17,0.00,1.00,-96.00,-81.60,0
+-96.00,-81.60,13.24,0.00,1.00,-91.20,-81.60,0
+-67.20,-81.60,13.30,0.00,1.00,-86.40,-76.80,0
+-48.00,-76.80,13.37,0.00,1.00,-81.60,-72.00,0
+-33.60,-72.00,13.43,0.00,1.00,-76.80,-72.00,0
+-28.80,-72.00,13.49,0.00,1.00,-72.00,-67.20,0
+-24.00,-67.20,13.56,0.00,1.00,-67.20,-62.40,0
+-19.20,-62.40,13.62,0.00,1.00,-62.40,-57.60,0
+-14.40,-57.60,13.69,0.00,1.00,-57.60,-52.80,0
+-14.40,-52.80,13.75,0.00,1.00,-52.80,-48.00,0
+-9.60,-48.00,13.82,0.00,1.00,-48.00,-43.20,0
+-9.60,-43.20,13.88,0.00,1.00,-43.20,-38.40,0
+-9.60,-38.40,13.94,0.00,1.00,-38.40,-33.60,0
+-4.80,-33.60,14.01,0.00,1.00,-33.60,-28.80,0
+-4.80,-28.80,14.07,0.00,1.00,-28.80,-24.00,0
+-4.80,-24.00,14.14,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,14.20,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,14.27,0.00,1.00,-14.40,-9.60,0
+-0.00,-9.60,14.33,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,14.39,0.00,1.00,-4.80,0.00,0
+0.00,0.00,14.46,0.00,1.00,0.00,4.80,0
+0.00,4.80,14.52,0.00,1.00,4.80,9.60,0
+4.80,9.60,14.59,0.00,1.00,9.60,14.40,0
+4.80,14.40,14.65,0.00,1.00,14.40,19.20,0
+4.80,19.20,14.71,0.00,1.00,19.20,24.00,0
+4.80,24.00,14.78,0.00,1.00,24.00,28.80,0
+9.60,28.80,14.84,0.00,1.00,28.80,33.60,0
+9.60,33.60,14.91,0.00,1.00,33.60,38.40,0
+9.60,38.40,14.97,0.00,1.00,38.40,43.20,0
+14.40,43.20,15.04,0.00,1.00,43.20,48.00,0
+14.40,48.00,15.10,0.00,1.00,48.00,52.80,0
+19.20,52.80,15.16,0.00,1.00,52.80,57.60,0
+19.20,52.80,15.23,0.00,1.00,57.60,57.60,0
+24.00,57.60,15.29,0.00,1.00,62.40,62.40,0
+28.80,62.40,15.36,0.00,1.00,67.20,67.20,0
+38.40,67.20,15.42,0.00,1.00,72.00,72.00,0
+48.00,72.00,15.49,0.00,1.00,76.80,72.00,0
+57.60,72.00,15.55,0.00,1.00,81.60,76.80,0
+76.80,76.80,15.61,0.00,1.00,86.40,76.80,0
+96.00,76.80,15.68,0.00,1.00,91.20,76.80,0
+115.20,76.80,15.74,0.00,1.00,96.00,72.00,0
+129.60,72.00,15.81,0.00,1.00,100.80,72.00,0
+139.20,67.20,15.87,0.00,1.00,105.60,67.20,0
+144.00,67.20,15.94,0.00,1.00,110.40,62.40,0
+153.60,62.40,16.00,0.00,1.00,115.20,57.60,0
+158.40,57.60,16.00,0.00,1.00,120.00,52.80,0
+158.40,52.80,15.94,0.00,1.00,124.80,48.00,0
+163.20,48.00,15.87,0.00,1.00,129.60,43.20,0
+168.00,43.20,15.81,0.00,1.00,134.40,38.40,0
+168.00,38.40,15.74,0.00,1.00,139.20,33.60,0
+168.00,33.60,15.68,0.00,1.00,144.00,28.80,0
+172.80,28.80,15.61,0.00,1.00,148.80,24.00,0
+172.80,24.00,15.55,0.00,1.00,153.60,19.20,0
+172.80,19.20,15.49,0.00,1.00,158.40,14.40,0
+177.60,14.40,15.42,0.00,1.00,163.20,9.60,0
+177.60,9.60,15.36,0.00,1.00,168.00,4.80,0
+177.60,4.80,15.29,0.00,1.00,172.80,0.00,0
+177.60,0.00,15.23,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,15.16,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,15.10,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,15.04,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,14.97,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,14.91,0.00,1.00,-158.40,-24.00,0
+-172.80,-24.00,14.84,0.00,1.00,-153.60,-28.80,0
+-172.80,-28.80,14.78,0.00,1.00,-148.80,-33.60,0
+-168.00,-33.60,14.71,0.00,1.00,-144.00,-38.40,0
+-168.00,-38.40,14.65,0.00,1.00,-139.20,-43.20,0
+-168.00,-43.20,14.59,0.00,1.00,-134.40,-48.00,0
+-163.20,-48.00,14.52,0.00,1.00,-129.60,-52.80,0
+-158.40,-52.80,14.46,0.00,1.00,-124.80,-57.60,0
+-158.40,-57.60,14.39,0.00,1.00,-120.00,-62.40,0
+-153.60,-62.40,14.33,0.00,1.00,-115.20,-67.20,0
+-144.00,-67.20,14.27,0.00,1.00,-110.40,-72.00,0
+-139.20,-67.20,14.20,0.00,1.00,-105.60,-72.00,0
+-129.60,-72.00,14.14,0.00,1.00,-100.80,-76.80,0
+-115.20,-76.80,14.07,0.00,1.00,-96.00,-76.80,0
+-96.00,-76.80,14.01,0.00,1.00,-91.20,-76.80,0
+-76.80,-76.80,13.94,0.00,1.00,-86.40,-72.00,0
+-57.60,-72.00,13.88,0.00,1.00,-81.60,-72.00,0
+-48.00,-72.00,13.82,0.00,1.00,-76.80,-67.20,0
+-38.40,-67.20,13.75,0.00,1.00,-72.00,-62.40,0
+-28.80,-62.40,13.69,0.00,1.00,-67.20,-57.60,0
+-24.00,-57.60,13.62,0.00,1.00,-62.40,-57.60,0
+-19.20,-52.80,13.56,0.00,1.00,-57.60,-52.80,0
+-19.20,-52.80,13.49,0.00,1.00,-52.80,-48.00,0
+-14.40,-48.00,13.43,0.00,1.00,-48.00,-43.20,0
+-14.40,-43.20,13.37,0.00,1.00,-43.20,-38.40,0
+-9.60,-38.40,13.30,0.00,1.00,-38.40,-33.60,0
+-9.60,-33.60,13.24,0.00,1.00,-33.60,-28.80,0
+-9.60,-28.80,13.17,0.00,1.00,-28.80,-24.00,0
+-4.80,-24.00,13.11,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,13.04,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,12.98,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,12.92,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,12.85,0.00,1.00,-4.80,0.00,0
+0.00,0.00,12.79,0.00,1.00,0.00,4.80,0
+0.00,4.80,12.72,0.00,1.00,4.80,9.60,0
+4.80,9.60,12.66,0.00,1.00,9.60,14.40,0
+4.80,14.40,12.59,0.00,1.00,14.40,19.20,0
+4.80,19.20,12.53,0.00,1.00,19.20,24.00,0
+9.60,24.00,12.47,0.00,1.00,24.00,28.80,0
+9.60,28.80,12.40,0.00,1.00,28.80,33.60,0
+14.40,33.60,12.34,0.00,1.00,33.60,38.40,0
+14.40,33.60,12.27,0.00,1.00,38.40,38.40,0
+19.20,38.40,12.21,0.00,1.00,43.20,43.20,0
+19.20,43.20,12.14,0.00,1.00,48.00,48.00,0
+24.00,48.00,12.08,0.00,1.00,52.80,52.80,0
+28.80,52.80,12.02,0.00,1.00,57.60,57.60,0
+33.60,57.60,11.95,0.00,1.00,62.40,62.40,0
+38.40,62.40,11.89,0.00,1.00,67.20,62.40,0
+43.20,62.40,11.82,0.00,1.00,72.00,67.20,0
+52.80,67.20,11.76,0.00,1.00,76.80,72.00,0
+67.20,67.20,11.69,0.00,1.00,81.60,72.00,0
+76.80,72.00,11.63,0.00,1.00,86.40,72.00,0
+96.00,72.00,11.57,0.00,1.00,91.20,72.00,0
+105.60,72.00,11.50,0.00,1.00,96.00,67.20,0
+120.00,67.20,11.44,0.00,1.00,100.80,67.20,0
+129.60,67.20,11.37,0.00,1.00,105.60,62.40,0
+139.20,62.40,11.31,0.00,1.00,110.40,57.60,0
+144.00,57.60,11.24,0.00,1.00,115.20,57.60,0
+148.80,52.80,11.18,0.00,1.00,120.00,52.80,0
+153.60,52.80,11.12,0.00,1.00,124.80,48.00,0
+158.40,48.00,11.05,0.00,1.00,129.60,43.20,0
+163.20,43.20,10.99,0.00,1.00,134.40,38.40,0
+163.20,38.40,10.92,0.00,1.00,139.20,33.60,0
+168.00,33.60,10.86,0.00,1.00,144.00,28.80,0
+168.00,28.80,10.80,0.00,1.00,148.80,24.00,0
+172.80,24.00,10.73,0.00,1.00,153.60,19.20,0
+172.80,19.20,10.67,0.00,1.00,158.40,14.40,0
+172.80,14.40,10.60,0.00,1.00,163.20,9.60,0
+177.60,9.60,10.54,0.00,1.00,168.00,4.80,0
+177.60,4.80,10.47,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.35,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,10.28,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,10.22,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,10.15,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,10.09,0.00,1.00,-158.40,-24.00,0
+-172.80,-24.00,10.02,0.00,1.00,-153.60,-28.80,0
+-168.00,-28.80,9.96,0.00,1.00,-148.80,-33.60,0
+-168.00,-33.60,9.90,0.00,1.00,-144.00,-38.40,0
+-163.20,-38.40,9.83,0.00,1.00,-139.20,-43.20,0
+-163.20,-43.20,9.77,0.00,1.00,-134.40,-48.00,0
+-158.40,-48.00,9.70,0.00,1.00,-129.60,-52.80,0
+-153.60,-52.80,9.64,0.00,1.00,-124.80,-57.60,0
+-148.80,-52.80,9.57,0.00,1.00,-120.00,-57.60,0
+-144.00,-57.60,9.51,0.00,1.00,-115.20,-62.40,0
+-139.20,-62.40,9.45,0.00,1.00,-110.40,-67.20,0
+-129.60,-67.20,9.38,0.00,1.00,-105.60,-67.20,0
+-120.00,-67.20,9.32,0.00,1.00,-100.80,-72.00,0
+-105.60,-72.00,9.25,0.00,1.00,-96.00,-72.00,0
+-96.00,-72.00,9.19,0.00,1.00,-91.20,-72.00,0
+-76.80,-72.00,9.12,0.00,1.00,-86.40,-72.00,0
+-67.20,-67.20,9.06,0.00,1.00,-81.60,-67.20,0
+-52.80,-67.20,9.00,0.00,1.00,-76.80,-62.40,0
+-43.20,-62.40,8.93,0.00,1.00,-72.00,-62.40,0
+-38.40,-62.40,8.87,0.00,1.00,-67.20,-57.60,0
+-33.60,-57.60,8.80,0.00,1.00,-62.40,-52.80,0
+-28.80,-52.80,8.74,0.00,1.00,-57.60,-48.00,0
+-24.00,-48.00,8.67,0.00,1.00,-52.80,-43.20,0
+-19.20,-43.20,8.61,0.00,1.00,-48.00,-38.40,0
+-19.20,-38.40,8.55,0.00,1.00,-43.20,-38.40,0
+-14.40,-33.60,8.48,0.00,1.00,-38.40,-33.60,0
+-14.40,-33.60,8.42,0.00,1.00,-33.60,-28.80,0
+-9.60,-28.80,8.35,0.00,1.00,-28.80,-24.00,0
+-9.60,-24.00,8.29,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,8.22,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,8.16,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,8.10,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,8.03,0.00,1.00,-4.80,0.00,0
+0.00,0.00,7.97,0.00,1.00,0.00,4.80,0
+0.00,4.80,7.90,0.00,1.00,4.80,9.60,0
+4.80,9.60,7.84,0.00,1.00,9.60,14.40,0
+4.80,14.40,7.78,0.00,1.00,14.40,19.20,0
+9.60,19.20,7.71,0.00,1.00,19.20,24.00,0
+9.60,24.00,7.65,0.00,1.00,24.00,24.00,0
+14.40,24.00,7.58,0.00,1.00,28.80,28.80,0
+14.40,28.80,7.52,0.00,1.00,33.60,33.60,0
+19.20,33.60,7.45,0.00,1.00,33.60,38.40,0
+19.20,38.40,7.39,0.00,1.00,38.40,43.20,0
+24.00,43.20,7.33,0.00,1.00,43.20,48.00,0
+28.80,48.00,7.26,0.00,1.00,48.00,52.80,0
+33.60,52.80,7.20,0.00,1.00,57.60,52.80,0
+38.40,52.80,7.13,0.00,1.00,62.40,57.60,0
+43.20,57.60,7.07,0.00,1.00,67.20,62.40,0
+52.80,62.40,7.00,0.00,1.00,72.00,62.40,0
+62.40,62.40,6.94,0.00,1.00,76.80,67.20,0
+72.00,62.40,6.88,0.00,1.00,81.60,67.20,0
+81.60,67.20,6.81,0.00,1.00,86.40,67.20,0
+91.20,67.20,6.75,0.00,1.00,91.20,67.20,0
+105.60,67.20,6.68,0.00,1.00,96.00,67.20,0
+115.20,62.40,6.62,0.00,1.00,100.80,62.40,0
+124.80,62.40,6.55,0.00,1.00,105.60,57.60,0
+134.40,57.60,6.49,0.00,1.00,110.40,57.60,0
+139.20,57.60,6.43,0.00,1.00,115.20,52.80,0
+144.00,52.80,6.36,0.00,1.00,120.00,48.00,0
+148.80,48.00,6.30,0.00,1.00,129.60,43.20,0
+153.60,43.20,6.23,0.00,1.00,134.40,43.20,0
+158.40,38.40,6.17,0.00,1.00,139.20,38.40,0
+158.40,38.40,6.10,0.00,1.00,144.00,33.60,0
+163.20,33.60,6.04,0.00,1.00,148.80,28.80,0
+168.00,28.80,5.98,0.00,1.00,148.80,24.00,0
+168.00,24.00,5.91,0.00,1.00,153.60,19.20,0
+172.80,19.20,5.85,0.00,1.00,158.40,14.40,0
+172.80,14.40,5.78,0.00,1.00,163.20,9.60,0
+172.80,9.60,5.72,0.00,1.00,168.00,4.80,0
+177.60,4.80,5.65,0.00,1.00,172.80,0.00,0
+177.60,0.00,5.59,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.53,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,5.46,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,5.40,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,5.33,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,5.27,0.00,1.00,-158.40,-24.00,0
+-168.00,-24.00,5.20,0.00,1.00,-153.60,-28.80,0
+-168.00,-28.80,5.14,0.00,1.00,-148.80,-33.60,0
+-163.20,-33.60,5.08,0.00,1.00,-148.80,-38.40,0
+-158.40,-38.40,5.01,0.00,1.00,-144.00,-43.20,0
+-158.40,-38.40,4.95,0.00,1.00,-139.20,-43.20,0
+-153.60,-43.20,4.88,0.00,1.00,-134.40,-48.00,0
+-148.80,-48.00,4.82,0.00,1.00,-129.60,-52.80,0
+-144.00,-52.80,4.76,0.00,1.00,-120.00,-57.60,0
+-139.20,-57.60,4.69,0.00,1.00,-115.20,-57.60,0
+-134.40,-57.60,4.63,0.00,1.00,-110.40,-62.40,0
+-124.80,-62.40,4.56,0.00,1.00,-105.60,-67.20,0
+-115.20,-62.40,4.50,0.00,1.00,-100.80,-67.20,0
+-105.60,-67.20,4.43,0.00,1.00,-96.00,-67.20,0
+-91.20,-67.20,4.37,0.00,1.00,-91.20,-67.20,0
+-81.60,-67.20,4.31,0.00,1.00,-86.40,-67.20,0
+-72.00,-62.40,4.24,0.00,1.00,-81.60,-62.40,0
+-62.40,-62.40,4.18,0.00,1.00,-76.80,-62.40,0
+-52.80,-62.40,4.11,0.00,1.00,-72.00,-57.60,0
+-43.20,-57.60,4.05,0.00,1.00,-67.20,-52.80,0
+-38.40,-52.80,3.98,0.00,1.00,-62.40,-52.80,0
+-33.60,-52.80,3.92,0.00,1.00,-57.60,-48.00,0
+-28.80,-48.00,3.86,0.00,1.00,-48.00,-43.20,0
+-24.00,-43.20,3.79,0.00,1.00,-43.20,-38.40,0
+-19.20,-38.40,3.73,0.00,1.00,-38.40,-33.60,0
+-19.20,-33.60,3.66,0.00,1.00,-33.60,-28.80,0
+-14.40,-28.80,3.60,0.00,1.00,-33.60,-24.00,0
+-14.40,-24.00,3.53,0.00,1.00,-28.80,-24.00,0
+-9.60,-24.00,3.47,0.00,1.00,-24.00,-19.20,0
+-9.60,-19.20,3.41,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,3.34,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,3.28,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,3.21,0.00,1.00,-4.80,0.00,0
+0.00,0.00,3.15,0.00,1.00,0.00,4.80,0
+0.00,4.80,3.08,0.00,1.00,4.80,9.60,0
+4.80,9.60,3.02,0.00,1.00,9.60,14.40,0
+4.80,14.40,2.96,0.00,1.00,14.40,19.20,0
+9.60,14.40,2.89,0.00,1.00,19.20,19.20,0
+14.40,19.20,2.83,0.00,1.00,19.20,24.00,0
+14.40,24.00,2.76,0.00,1.00,24.00,28.80,0
+19.20,28.80,2.70,0.00,1.00,28.80,33.60,0
+19.20,33.60,2.63,0.00,1.00,33.60,38.40,0
+24.00,38.40,2.57,0.00,1.00,38.40,43.20,0
+28.80,38.40,2.51,0.00,1.00,43.20,43.20,0
+33.60,43.20,2.44,0.00,1.00,48.00,48.00,0
+38.40,48.00,2.38,0.00,1.00,52.80,52.80,0
+43.20,52.80,2.31,0.00,1.00,57.60,52.80,0
+48.00,52.80,2.25,0.00,1.00,62.40,57.60,0
+57.60,57.60,2.18,0.00,1.00,72.00,57.60,0
+62.40,57.60,2.12,0.00,1.00,76.80,62.40,0
+72.00,62.40,2.06,0.00,1.00,81.60,62.40,0
+81.60,62.40,1.99,0.00,1.00,86.40,62.40,0
+91.20,62.40,1.93,0.00,1.00,91.20,62.40,0
+100.80,62.40,1.86,0.00,1.00,96.00,62.40,0
+110.40,57.60,1.80,0.00,1.00,100.80,57.60,0
+120.00,57.60,1.73,0.00,1.00,105.60,57.60,0
+129.60,57.60,1.67,0.00,1.00,115.20,52.80,0
+134.40,52.80,1.61,0.00,1.00,120.00,48.00,0
+139.20,48.00,1.54,0.00,1.00,124.80,48.00,0
+144.00,48.00,1.48,0.00,1.00,129.60,43.20,0
+148.80,43.20,1.41,0.00,1.00,134.40,38.40,0
+153.60,38.40,1.35,0.00,1.00,139.20,33.60,0
+158.40,33.60,1.29,0.00,1.00,144.00,33.60,0
+158.40,28.80,1.22,0.00,1.00,148.80,28.80,0
+163.20,28.80,1.16,0.00,1.00,153.60,24.00,0
+168.00,24.00,1.09,0.00,1.00,158.40,19.20,0
+168.00,19.20,1.03,0.00,1.00,163.20,14.40,0
+172.80,14.40,0.96,0.00,1.00,163.20,9.60,0
+172.80,9.60,0.90,0.00,1.00,168.00,4.80,0
+177.60,4.80,0.84,0.00,1.00,172.80,0.00,0
+177.60,0.00,0.77,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,0.71,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,0.64,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,0.58,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,0.51,0.00,1.00,-163.20,-19.20,0
+-168.00,-19.20,0.45,0.00,1.00,-163.20,-24.00,0
+-168.00,-24.00,0.39,0.00,1.00,-158.40,-28.80,0
+-163.20,-28.80,0.32,0.00,1.00,-153.60,-33.60,0
+-158.40,-28.80,0.26,0.00,1.00,-148.80,-33.60,0
+-158.40,-33.60,0.19,0.00,1.00,-144.00,-38.40,0
+-153.60,-38.40,0.13,0.00,1.00,-139.20,-43.20,0
+-148.80,-43.20,0.06,0.00,1.00,-134.40,-48.00,0
+-144.00,-48.00,0.00,0.00,1.00,-129.60,-48.00,0
+-139.20,-48.00,0.00,0.00,1.00,-124.80,-52.80,0
+-134.40,-52.80,0.16,0.00,1.00,-120.00,-57.60,0
+-129.60,-57.60,0.32,0.00,1.00,-115.20,-57.60,0
+-120.00,-57.60,0.48,0.00,1.00,-105.60,-62.40,0
+-110.40,-57.60,0.65,0.00,1.00,-100.80,-62.40,0
+-100.80,-62.40,0.81,0.00,1.00,-96.00,-62.40,0
+-91.20,-62.40,0.97,0.00,1.00,-91.20,-62.40,0
+-81.60,-62.40,1.13,0.00,1.00,-86.40,-62.40,0
+-72.00,-62.40,1.29,0.00,1.00,-81.60,-57.60,0
+-62.40,-57.60,1.45,0.00,1.00,-76.80,-57.60,0
+-57.60,-57.60,1.62,0.00,1.00,-72.00,-52.80,0
+-48.00,-52.80,1.78,0.00,1.00,-62.40,-52.80,0
+-43.20,-52.80,1.94,0.00,1.00,-57.60,-48.00,0
+-38.40,-48.00,2.10,0.00,1.00,-52.80,-43.20,0
+-33.60,-43.20,2.26,0.00,1.00,-48.00,-43.20,0
+-28.80,-38.40,2.42,0.00,1.00,-43.20,-38.40,0
+-24.00,-38.40,2.59,0.00,1.00,-38.40,-33.60,0
+-19.20,-33.60,2.75,0.00,1.00,-33.60,-28.80,0
+-19.20,-28.80,2.91,0.00,1.00,-28.80,-24.00,0
+-14.40,-24.00,3.07,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,3.23,0.00,1.00,-19.20,-19.20,0
+-9.60,-14.40,3.39,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,3.56,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,3.72,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,3.88,0.00,1.00,-4.80,0.00,0
+0.00,0.00,4.04,0.00,1.00,0.00,4.80,0
+4.80,4.80,4.20,0.00,1.00,4.80,9.60,0
+4.80,9.60,4.36,0.00,1.00,9.60,14.40,0
+9.60,9.60,4.53,0.00,1.00,14.40,14.40,0
+9.60,14.40,4.69,0.00,1.00,14.40,19.20,0
+14.40,19.20,4.85,0.00,1.00,19.20,24.00,0
+19.20,24.00,5.01,0.00,1.00,24.00,28.80,0
+19.20,28.80,5.17,0.00,1.00,28.80,33.60,0
+24.00,28.80,5.33,0.00,1.00,33.60,33.60,0
+28.80,33.60,5.49,0.00,1.00,38.40,38.40,0
+33.60,38.40,5.66,0.00,1.00,43.20,43.20,0
+38.40,43.20,5.82,0.00,1.00,48.00,43.20,0
+43.20,43.20,5.98,0.00,1.00,52.80,48.00,0
+48.00,48.00,6.14,0.00,1.00,57.60,52.80,0
+52.80,48.00,6.30,0.00,1.00,62.40,52.80,0
+57.60,52.80,6.46,0.00,1.00,67.20,57.60,0
+67.20,52.80,6.63,0.00,1.00,72.00,57.60,0
+76.80,57.60,6.79,0.00,1.00,81.60,57.60,0
+81.60,57.60,6.95,0.00,1.00,86.40,57.60,0
+91.20,57.60,7.11,0.00,1.00,91.20,57.60,0
+100.80,57.60,7.27,0.00,1.00,96.00,57.60,0
+110.40,52.80,7.43,0.00,1.00,100.80,52.80,0
+115.20,52.80,7.60,0.00,1.00,110.40,52.80,0
+124.80,52.80,7.76,0.00,1.00,115.20,48.00,0
+129.60,48.00,7.92,0.00,1.00,120.00,48.00,0
+134.40,48.00,8.08,0.00,1.00,124.80,43.20,0
+139.20,43.20,8.24,0.00,1.00,129.60,38.40,0
+144.00,38.40,8.40,0.00,1.00,134.40,38.40,0
+148.80,38.40,8.57,0.00,1.00,139.20,33.60,0
+153.60,33.60,8.73,0.00,1.00,144.00,28.80,0
+158.40,28.80,8.89,0.00,1.00,148.80,24.00,0
+163.20,24.00,9.05,0.00,1.00,153.60,24.00,0
+163.20,24.00,9.21,0.00,1.00,158.40,19.20,0
+168.00,19.20,9.37,0.00,1.00,163.20,14.40,0
+172.80,14.40,9.54,0.00,1.00,168.00,9.60,0
+172.80,9.60,9.70,0.00,1.00,168.00,4.80,0
+177.60,4.80,9.86,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.18,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,10.34,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,10.51,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,10.67,0.00,1.00,-168.00,-19.20,0
+-168.00,-19.20,10.83,0.00,1.00,-163.20,-24.00,0
+-163.20,-24.00,10.99,0.00,1.00,-158.40,-24.00,0
+-163.20,-24.00,11.15,0.00,1.00,-153.60,-28.80,0
+-158.40,-28.80,11.31,0.00,1.00,-148.80,-33.60,0
+-153.60,-33.60,11.47,0.00,1.00,-144.00,-38.40,0
+-148.80,-38.40,11.64,0.00,1.00,-139.20,-38.40,0
+-144.00,-38.40,11.80,0.00,1.00,-134.40,-43.20,0
+-139.20,-43.20,11.96,0.00,1.00,-129.60,-48.00,0
+-134.40,-48.00,12.12,0.00,1.00,-124.80,-48.00,0
+-129.60,-48.00,12.28,0.00,1.00,-120.00,-52.80,0
+-124.80,-52.80,12.44,0.00,1.00,-115.20,-52.80,0
+-115.20,-52.80,12.61,0.00,1.00,-110.40,-57.60,0
+-110.40,-52.80,12.77,0.00,1.00,-100.80,-57.60,0
+-100.80,-57.60,12.93,0.00,1.00,-96.00,-57.60,0
+-91.20,-57.60,13.09,0.00,1.00,-91.20,-57.60,0
+-81.60,-57.60,13.25,0.00,1.00,-86.40,-57.60,0
+-76.80,-57.60,13.41,0.00,1.00,-81.60,-57.60,0
+-67.20,-52.80,13.58,0.00,1.00,-72.00,-52.80,0
+-57.60,-52.80,13.74,0.00,1.00,-67.20,-52.80,0
+-52.80,-48.00,13.90,0.00,1.00,-62.40,-48.00,0
+-48.00,-48.00,14.06,0.00,1.00,-57.60,-43.20,0
+-43.20,-43.20,14.22,0.00,1.00,-52.80,-43.20,0
+-38.40,-43.20,14.38,0.00,1.00,-48.00,-38.40,0
+-33.60,-38.40,14.55,0.00,1.00,-43.20,-33.60,0
+-28.80,-33.60,14.71,0.00,1.00,-38.40,-33.60,0
+-24.00,-28.80,14.87,0.00,1.00,-33.60,-28.80,0
+-19.20,-28.80,15.03,0.00,1.00,-28.80,-24.00,0
+-19.20,-24.00,15.19,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,15.35,0.00,1.00,-19.20,-14.40,0
+-9.60,-14.40,15.52,0.00,1.00,-14.40,-14.40,0
+-9.60,-9.60,15.68,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,15.84,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,16.00,0.00,1.00,-4.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,0.00,4.80,0
+4.80,4.80,15.84,0.00,1.00,4.80,9.60,0
+4.80,9.60,15.68,0.00,1.00,9.60,9.60,0
+9.60,9.60,15.52,0.00,1.00,9.60,14.40,0
+14.40,14.40,15.35,0.00,1.00,14.40,19.20,0
+14.40,19.20,15.19,0.00,1.00,19.20,24.00,0
+19.20,24.00,15.03,0.00,1.00,24.00,24.00,0
+24.00,24.00,14.87,0.00,1.00,28.80,28.80,0
+24.00,28.80,14.71,0.00,1.00,33.60,33.60,0
+28.80,33.60,14.55,0.00,1.00,38.40,38.40,0
+33.60,33.60,14.38,0.00,1.00,43.20,38.40,0
+38.40,38.40,14.22,0.00,1.00,48.00,43.20,0
+43.20,43.20,14.06,0.00,1.00,52.80,43.20,0
+48.00,43.20,13.90,0.00,1.00,57.60,48.00,0
+57.60,48.00,13.74,0.00,1.00,62.40,48.00,0
+62.40,48.00,13.58,0.00,1.00,67.20,52.80,0
+67.20,48.00,13.41,0.00,1.00,72.00,52.80,0
+76.80,52.80,13.25,0.00,1.00,81.60,52.80,0
+86.40,52.80,13.09,0.00,1.00,86.40,52.80,0
+91.20,52.80,12.93,0.00,1.00,91.20,52.80,0
+100.80,52.80,12.77,0.00,1.00,96.00,52.80,0
+105.60,48.00,12.61,0.00,1.00,105.60,48.00,0
+115.20,48.00,12.44,0.00,1.00,110.40,48.00,0
+120.00,48.00,12.28,0.00,1.00,115.20,48.00,0
+124.80,43.20,12.12,0.00,1.00,120.00,43.20,0
+134.40,43.20,11.96,0.00,1.00,124.80,43.20,0
+139.20,38.40,11.80,0.00,1.00,129.60,38.40,0
+144.00,38.40,11.64,0.00,1.00,134.40,33.60,0
+148.80,33.60,11.47,0.00,1.00,139.20,33.60,0
+153.60,28.80,11.31,0.00,1.00,144.00,28.80,0
+153.60,28.80,11.15,0.00,1.00,148.80,24.00,0
+158.40,24.00,10.99,0.00,1.00,153.60,19.20,0
+163.20,19.20,10.83,0.00,1.00,158.40,19.20,0
+168.00,14.40,10.67,0.00,1.00,163.20,14.40,0
+168.00,14.40,10.51,0.00,1.00,168.00,9.60,0
+172.80,9.60,10.34,0.00,1.00,172.80,4.80,0
+177.60,4.80,10.18,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,9.86,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,9.70,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,9.54,0.00,1.00,-172.80,-14.40,0
+-168.00,-14.40,9.37,0.00,1.00,-168.00,-19.20,0
+-168.00,-14.40,9.21,0.00,1.00,-163.20,-19.20,0
+-163.20,-19.20,9.05,0.00,1.00,-158.40,-24.00,0
+-158.40,-24.00,8.89,0.00,1.00,-153.60,-28.80,0
+-153.60,-28.80,8.73,0.00,1.00,-148.80,-33.60,0
+-153.60,-28.80,8.57,0.00,1.00,-144.00,-33.60,0
+-148.80,-33.60,8.40,0.00,1.00,-139.20,-38.40,0
+-144.00,-38.40,8.24,0.00,1.00,-134.40,-43.20,0
+-139.20,-38.40,8.08,0.00,1.00,-129.60,-43.20,0
+-134.40,-43.20,7.92,0.00,1.00,-124.80,-48.00,0
+-124.80,-43.20,7.76,0.00,1.00,-120.00,-48.00,0
+-120.00,-48.00,7.60,0.00,1.00,-115.20,-48.00,0
+-115.20,-48.00,7.43,0.00,1.00,-110.40,-52.80,0
+-105.60,-48.00,7.27,0.00,1.00,-105.60,-52.80,0
+-100.80,-52.80,7.11,0.00,1.00,-96.00,-52.80,0
+-91.20,-52.80,6.95,0.00,1.00,-91.20,-52.80,0
+-86.40,-52.80,6.79,0.00,1.00,-86.40,-52.80,0
+-76.80,-52.80,6.63,0.00,1.00,-81.60,-52.80,0
+-67.20,-48.00,6.46,0.00,1.00,-72.00,-48.00,0
+-62.40,-48.00,6.30,0.00,1.00,-67.20,-48.00,0
+-57.60,-48.00,6.14,0.00,1.00,-62.40,-43.20,0
+-48.00,-43.20,5.98,0.00,1.00,-57.60,-43.20,0
+-43.20,-43.20,5.82,0.00,1.00,-52.80,-38.40,0
+-38.40,-38.40,5.66,0.00,1.00,-48.00,-38.40,0
+-33.60,-33.60,5.49,0.00,1.00,-43.20,-33.60,0
+-28.80,-33.60,5.33,0.00,1.00,-38.40,-28.80,0
+-24.00,-28.80,5.17,0.00,1.00,-33.60,-24.00,0
+-24.00,-24.00,5.01,0.00,1.00,-28.80,-24.00,0
+-19.20,-24.00,4.85,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,4.69,0.00,1.00,-19.20,-14.40,0
+-14.40,-14.40,4.53,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,4.36,0.00,1.00,-9.60,-9.60,0
+-4.80,-9.60,4.20,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,4.04,0.00,1.00,-4.80,0.00,0
+0.00,0.00,3.88,0.00,1.00,0.00,4.80,0
+4.80,4.80,3.72,0.00,1.00,4.80,4.80,0
+4.80,4.80,3.56,0.00,1.00,4.80,9.60,0
+9.60,9.60,3.39,0.00,1.00,9.60,14.40,0
+14.40,14.40,3.23,0.00,1.00,14.40,19.20,0
+19.20,19.20,3.07,0.00,1.00,19.20,19.20,0
+19.20,19.20,2.91,0.00,1.00,24.00,24.00,0
+24.00,24.00,2.75,0.00,1.00,24.00,28.80,0
+28.80,28.80,2.59,0.00,1.00,28.80,28.80,0
+33.60,28.80,2.42,0.00,1.00,33.60,33.60,0
+38.40,33.60,2.26,0.00,1.00,38.40,38.40,0
+43.20,33.60,2.10,0.00,1.00,43.20,38.40,0
+48.00,38.40,1.94,0.00,1.00,48.00,43.20,0
+52.80,38.40,1.78,0.00,1.00,52.80,43.20,0
+57.60,43.20,1.62,0.00,1.00,62.40,43.20,0
+62.40,43.20,1.45,0.00,1.00,67.20,48.00,0
+72.00,43.20,1.29,0.00,1.00,72.00,48.00,0
+76.80,48.00,1.13,0.00,1.00,76.80,48.00,0
+86.40,48.00,0.97,0.00,1.00,86.40,48.00,0
+91.20,48.00,0.81,0.00,1.00,91.20,48.00,0
+100.80,48.00,0.65,0.00,1.00,96.00,48.00,0
+105.60,48.00,0.48,0.00,1.00,105.60,48.00,0
+110.40,43.20,0.32,0.00,1.00,110.40,43.20,0
+120.00,43.20,0.16,0.00,1.00,115.20,43.20,0
+124.80,43.20,0.00,0.00,1.00,124.80,38.40,0
+129.60,38.40,0.00,0.00,1.00,129.60,38.40,0
+134.40,38.40,0.04,0.00,1.00,134.40,33.60,0
+139.20,33.60,0.08,0.00,1.00,139.20,33.60,0
+144.00,33.60,0.12,0.00,1.00,144.00,28.80,0
+148.80,28.80,0.16,0.00,1.00,148.80,24.00,0
+153.60,24.00,0.20,0.00,1.00,153.60,24.00,0
+158.40,24.00,0.24,0.00,1.00,158.40,19.20,0
+163.20,19.20,0.28,0.00,1.00,158.40,14.40,0
+163.20,14.40,0.32,0.00,1.00,163.20,14.40,0
+168.00,14.40,0.36,0.00,1.00,168.00,9.60,0
+172.80,9.60,0.40,0.00,1.00,172.80,4.80,0
+172.80,4.80,0.44,0.00,1.00,172.80,0.00,0
+177.60,0.00,0.48,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,0.52,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,0.56,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,0.60,0.00,1.00,-172.80,-14.40,0
+-168.00,-14.40,0.64,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,0.68,0.00,1.00,-163.20,-19.20,0
+-163.20,-19.20,0.72,0.00,1.00,-158.40,-24.00,0
+-158.40,-24.00,0.76,0.00,1.00,-158.40,-24.00,0
+-153.60,-24.00,0.80,0.00,1.00,-153.60,-28.80,0
+-148.80,-28.80,0.84,0.00,1.00,-148.80,-33.60,0
+-144.00,-33.60,0.88,0.00,1.00,-144.00,-33.60,0
+-139.20,-33.60,0.92,0.00,1.00,-139.20,-38.40,0
+-134.40,-38.40,0.96,0.00,1.00,-134.40,-38.40,0
+-129.60,-38.40,1.00,0.00,1.00,-129.60,-43.20,0
+-124.80,-43.20,1.04,0.00,1.00,-124.80,-43.20,0
+-120.00,-43.20,1.08,0.00,1.00,-115.20,-48.00,0
+-110.40,-43.20,1.12,0.00,1.00,-110.40,-48.00,0
+-105.60,-48.00,1.16,0.00,1.00,-105.60,-48.00,0
+-100.80,-48.00,1.20,0.00,1.00,-96.00,-48.00,0
+-91.20,-48.00,1.24,0.00,1.00,-91.20,-48.00,0
+-86.40,-48.00,1.28,0.00,1.00,-86.40,-48.00,0
+-76.80,-48.00,1.32,0.00,1.00,-76.80,-48.00,0
+-72.00,-43.20,1.36,0.00,1.00,-72.00,-43.20,0
+-62.40,-43.20,1.40,0.00,1.00,-67.20,-43.20,0
+-57.60,-43.20,1.44,0.00,1.00,-62.40,-43.20,0
+-52.80,-38.40,1.48,0.00,1.00,-52.80,-38.40,0
+-48.00,-38.40,1.52,0.00,1.00,-48.00,-38.40,0
+-43.20,-33.60,1.56,0.00,1.00,-43.20,-33.60,0
+-38.40,-33.60,1.60,0.00,1.00,-38.40,-28.80,0
+-33.60,-28.80,1.64,0.00,1.00,-33.60,-28.80,0
+-28.80,-28.80,1.68,0.00,1.00,-28.80,-24.00,0
+-24.00,-24.00,1.72,0.00,1.00,-24.00,-19.20,0
+-19.20,-19.20,1.76,0.00,1.00,-24.00,-19.20,0
+-19.20,-19.20,1.80,0.00,1.00,-19.20,-14.40,0
+-14.40,-14.40,1.84,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,1.88,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,1.92,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,1.96,0.00,1.00,-4.80,0.00,0
+0.00,0.00,2.01,0.00,1.00,0.00,4.80,0
+4.80,4.80,2.05,0.00,1.00,4.80,4.80,0
+4.80,4.80,2.09,0.00,1.00,4.80,9.60,0
+9.60,9.60,2.13,0.00,1.00,9.60,14.40,0
+14.40,14.40,2.17,0.00,1.00,14.40,14.40,0
+19.20,14.40,2.21,0.00,1.00,14.40,19.20,0
+24.00,19.20,2.25,0.00,1.00,19.20,24.00,0
+24.00,24.00,2.29,0.00,1.00,24.00,24.00,0
+28.80,24.00,2.33,0.00,1.00,28.80,28.80,0
+33.60,28.80,2.37,0.00,1.00,33.60,28.80,0
+38.40,28.80,2.41,0.00,1.00,38.40,33.60,0
+43.20,33.60,2.45,0.00,1.00,43.20,33.60,0
+48.00,33.60,2.49,0.00,1.00,48.00,38.40,0
+52.80,38.40,2.53,0.00,1.00,52.80,38.40,0
+62.40,38.40,2.57,0.00,1.00,57.60,38.40,0
+67.20,38.40,2.61,0.00,1.00,62.40,43.20,0
+72.00,38.40,2.65,0.00,1.00,72.00,43.20,0
+76.80,43.20,2.69,0.00,1.00,76.80,43.20,0
+86.40,43.20,2.73,0.00,1.00,86.40,43.20,0
+91.20,43.20,2.77,0.00,1.00,91.20,43.20,0
+96.00,43.20,2.81,0.00,1.00,100.80,43.20,0
+105.60,43.20,2.85,0.00,1.00,105.60,43.20,0
+110.40,38.40,2.89,0.00,1.00,110.40,38.40,0
+115.20,38.40,2.93,0.00,1.00,120.00,38.40,0
+120.00,38.40,2.97,0.00,1.00,124.80,38.40,0
+129.60,33.60,3.01,0.00,1.00,129.60,33.60,0
+134.40,33.60,3.05,0.00,1.00,134.40,33.60,0
+139.20,28.80,3.09,0.00,1.00,139.20,28.80,0
+144.00,28.80,3.13,0.00,1.00,144.00,28.80,0
+148.80,24.00,3.17,0.00,1.00,148.80,24.00,0
+153.60,24.00,3.21,0.00,1.00,153.60,19.20,0
+153.60,19.20,3.25,0.00,1.00,158.40,19.20,0
+158.40,19.20,3.29,0.00,1.00,163.20,14.40,0
+163.20,14.40,3.33,0.00,1.00,163.20,9.60,0
+168.00,9.60,3.37,0.00,1.00,168.00,9.60,0
+172.80,9.60,3.41,0.00,1.00,172.80,4.80,0
+172.80,4.80,3.45,0.00,1.00,172.80,0.00,0
+177.60,0.00,3.49,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.53,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,3.57,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,3.61,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,3.65,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,3.69,0.00,1.00,-163.20,-19.20,0
+-158.40,-19.20,3.73,0.00,1.00,-163.20,-19.20,0
+-153.60,-19.20,3.77,0.00,1.00,-158.40,-24.00,0
+-153.60,-24.00,3.81,0.00,1.00,-153.60,-28.80,0
+-148.80,-24.00,3.85,0.00,1.00,-148.80,-28.80,0
+-144.00,-28.80,3.89,0.00,1.00,-144.00,-33.60,0
+-139.20,-28.80,3.93,0.00,1.00,-139.20,-33.60,0
+-134.40,-33.60,3.97,0.00,1.00,-134.40,-38.40,0
+-129.60,-33.60,4.01,0.00,1.00,-129.60,-38.40,0
+-120.00,-38.40,4.05,0.00,1.00,-124.80,-38.40,0
+-115.20,-38.40,4.09,0.00,1.00,-120.00,-43.20,0
+-110.40,-38.40,4.13,0.00,1.00,-110.40,-43.20,0
+-105.60,-43.20,4.17,0.00,1.00,-105.60,-43.20,0
+-96.00,-43.20,4.21,0.00,1.00,-100.80,-43.20,0
+-91.20,-43.20,4.25,0.00,1.00,-91.20,-43.20,0
+-86.40,-43.20,4.29,0.00,1.00,-86.40,-43.20,0
+-76.80,-43.20,4.33,0.00,1.00,-76.80,-43.20,0
+-72.00,-38.40,4.37,0.00,1.00,-72.00,-38.40,0
+-67.20,-38.40,4.41,0.00,1.00,-62.40,-38.40,0
+-62.40,-38.40,4.45,0.00,1.00,-57.60,-38.40,0
+-52.80,-38.40,4.49,0.00,1.00,-52.80,-33.60,0
+-48.00,-33.60,4.53,0.00,1.00,-48.00,-33.60,0
+-43.20,-33.60,4.57,0.00,1.00,-43.20,-28.80,0
+-38.40,-28.80,4.61,0.00,1.00,-38.40,-28.80,0
+-33.60,-28.80,4.65,0.00,1.00,-33.60,-24.00,0
+-28.80,-24.00,4.69,0.00,1.00,-28.80,-24.00,0
+-24.00,-24.00,4.73,0.00,1.00,-24.00,-19.20,0
+-24.00,-19.20,4.77,0.00,1.00,-19.20,-14.40,0
+-19.20,-14.40,4.81,0.00,1.00,-14.40,-14.40,0
+-14.40,-14.40,4.85,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,4.89,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,4.93,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,4.97,0.00,1.00,-4.80,0.00,0
+0.00,0.00,5.01,0.00,1.00,0.00,4.80,0
+4.80,4.80,5.05,0.00,1.00,4.80,4.80,0
+9.60,4.80,5.09,0.00,1.00,4.80,9.60,0
+9.60,9.60,5.13,0.00,1.00,9.60,9.60,0
+14.40,9.60,5.17,0.00,1.00,9.60,14.40,0
+19.20,14.40,5.21,0.00,1.00,14.40,19.20,0
+24.00,19.20,5.25,0.00,1.00,19.20,19.20,0
+28.80,19.20,5.29,0.00,1.00,24.00,24.00,0
+33.60,24.00,5.33,0.00,1.00,24.00,24.00,0
+38.40,24.00,5.37,0.00,1.00,28.80,28.80,0
+43.20,28.80,5.41,0.00,1.00,33.60,28.80,0
+48.00,28.80,5.45,0.00,1.00,38.40,33.60,0
+52.80,28.80,5.49,0.00,1.00,43.20,33.60,0
+57.60,33.60,5.53,0.00,1.00,48.00,33.60,0
+62.40,33.60,5.57,0.00,1.00,52.80,38.40,0
+67.20,33.60,5.61,0.00,1.00,62.40,38.40,0
+72.00,38.40,5.65,0.00,1.00,67.20,38.40,0
+81.60,38.40,5.69,0.00,1.00,76.80,38.40,0
+86.40,38.40,5.73,0.00,1.00,86.40,38.40,0
+91.20,38.40,5.77,0.00,1.00,91.20,38.40,0
+96.00,38.40,5.81,0.00,1.00,100.80,38.40,0
+105.60,38.40,5.85,0.00,1.00,105.60,38.40,0
+110.40,33.60,5.89,0.00,1.00,115.20,33.60,0
+115.20,33.60,5.93,0.00,1.00,120.00,33.60,0
+120.00,33.60,5.97,0.00,1.00,129.60,33.60,0
+124.80,33.60,6.02,0.00,1.00,134.40,28.80,0
+129.60,28.80,6.06,0.00,1.00,139.20,28.80,0
+134.40,28.80,6.10,0.00,1.00,144.00,24.00,0
+139.20,24.00,6.14,0.00,1.00,148.80,24.00,0
+144.00,24.00,6.18,0.00,1.00,153.60,19.20,0
+148.80,19.20,6.22,0.00,1.00,158.40,19.20,0
+153.60,19.20,6.26,0.00,1.00,158.40,14.40,0
+158.40,14.40,6.30,0.00,1.00,163.20,14.40,0
+163.20,14.40,6.34,0.00,1.00,168.00,9.60,0
+168.00,9.60,6.38,0.00,1.00,168.00,9.60,0
+168.00,9.60,6.42,0.00,1.00,172.80,4.80,0
+172.80,4.80,6.46,0.00,1.00,177.60,0.00,0
+177.60,0.00,6.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.54,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,6.58,0.00,1.00,-177.60,-9.60,0
+-168.00,-9.60,6.62,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,6.66,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,6.70,0.00,1.00,-168.00,-14.40,0
+-158.40,-14.40,6.74,0.00,1.00,-163.20,-19.20,0
+-153.60,-19.20,6.78,0.00,1.00,-158.40,-19.20,0
+-148.80,-19.20,6.82,0.00,1.00,-158.40,-24.00,0
+-144.00,-24.00,6.86,0.00,1.00,-153.60,-24.00,0
+-139.20,-24.00,6.90,0.00,1.00,-148.80,-28.80,0
+-134.40,-28.80,6.94,0.00,1.00,-144.00,-28.80,0
+-129.60,-28.80,6.98,0.00,1.00,-139.20,-33.60,0
+-124.80,-33.60,7.02,0.00,1.00,-134.40,-33.60,0
+-120.00,-33.60,7.06,0.00,1.00,-129.60,-33.60,0
+-115.20,-33.60,7.10,0.00,1.00,-120.00,-38.40,0
+-110.40,-33.60,7.14,0.00,1.00,-115.20,-38.40,0
+-105.60,-38.40,7.18,0.00,1.00,-105.60,-38.40,0
+-96.00,-38.40,7.22,0.00,1.00,-100.80,-38.40,0
+-91.20,-38.40,7.26,0.00,1.00,-91.20,-38.40,0
+-86.40,-38.40,7.30,0.00,1.00,-86.40,-38.40,0
+-81.60,-38.40,7.34,0.00,1.00,-76.80,-38.40,0
+-72.00,-38.40,7.38,0.00,1.00,-67.20,-38.40,0
+-67.20,-33.60,7.42,0.00,1.00,-62.40,-33.60,0
+-62.40,-33.60,7.46,0.00,1.00,-52.80,-33.60,0
+-57.60,-33.60,7.50,0.00,1.00,-48.00,-33.60,0
+-52.80,-28.80,7.54,0.00,1.00,-43.20,-28.80,0
+-48.00,-28.80,7.58,0.00,1.00,-38.40,-28.80,0
+-43.20,-28.80,7.62,0.00,1.00,-33.60,-24.00,0
+-38.40,-24.00,7.66,0.00,1.00,-28.80,-24.00,0
+-33.60,-24.00,7.70,0.00,1.00,-24.00,-19.20,0
+-28.80,-19.20,7.74,0.00,1.00,-24.00,-19.20,0
+-24.00,-19.20,7.78,0.00,1.00,-19.20,-14.40,0
+-19.20,-14.40,7.82,0.00,1.00,-14.40,-9.60,0
+-14.40,-9.60,7.86,0.00,1.00,-9.60,-9.60,0
+-9.60,-9.60,7.90,0.00,1.00,-9.60,-4.80,0
+-9.60,-4.80,7.94,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,7.98,0.00,1.00,-4.80,0.00,0
+0.00,0.00,8.02,0.00,1.00,0.00,4.80,0
+4.80,4.80,8.06,0.00,1.00,4.80,4.80,0
+9.60,4.80,8.10,0.00,1.00,4.80,9.60,0
+14.40,9.60,8.14,0.00,1.00,9.60,9.60,0
+14.40,9.60,8.18,0.00,1.00,9.60,14.40,0
+19.20,14.40,8.22,0.00,1.00,14.40,14.40,0
+24.00,14.40,8.26,0.00,1.00,14.40,19.20,0
+28.80,19.20,8.30,0.00,1.00,19.20,19.20,0
+33.60,19.20,8.34,0.00,1.00,24.00,24.00,0
+38.40,19.20,8.38,0.00,1.00,28.80,24.00,0
+43.20,24.00,8.42,0.00,1.00,28.80,24.00,0
+48.00,24.00,8.46,0.00,1.00,33.60,28.80,0
+52.80,28.80,8.50,0.00,1.00,38.40,28.80,0
+57.60,28.80,8.54,0.00,1.00,48.00,28.80,0
+62.40,28.80,8.58,0.00,1.00,52.80,33.60,0
+67.20,28.80,8.62,0.00,1.00,57.60,33.60,0
+76.80,33.60,8.66,0.00,1.00,67.20,33.60,0
+81.60,33.60,8.70,0.00,1.00,76.80,33.60,0
+86.40,33.60,8.74,0.00,1.00,81.60,33.60,0
+91.20,33.60,8.78,0.00,1.00,91.20,33.60,0
+96.00,33.60,8.82,0.00,1.00,100.80,33.60,0
+100.80,33.60,8.86,0.00,1.00,110.40,33.60,0
+110.40,28.80,8.90,0.00,1.00,115.20,33.60,0
+115.20,28.80,8.94,0.00,1.00,124.80,28.80,0
+120.00,28.80,8.98,0.00,1.00,129.60,28.80,0
+124.80,28.80,9.02,0.00,1.00,139.20,28.80,0
+129.60,24.00,9.06,0.00,1.00,144.00,24.00,0
+134.40,24.00,9.10,0.00,1.00,148.80,24.00,0
+139.20,24.00,9.14,0.00,1.00,153.60,19.20,0
+144.00,19.20,9.18,0.00,1.00,153.60,19.20,0
+148.80,19.20,9.22,0.00,1.00,158.40,14.40,0
+153.60,14.40,9.26,0.00,1.00,163.20,14.40,0
+158.40,14.40,9.30,0.00,1.00,163.20,9.60,0
+163.20,9.60,9.34,0.00,1.00,168.00,9.60,0
+168.00,9.60,9.38,0.00,1.00,172.80,4.80,0
+168.00,4.80,9.42,0.00,1.00,172.80,4.80,0
+172.80,4.80,9.46,0.00,1.00,177.60,0.00,0
+177.60,0.00,9.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,9.54,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,9.58,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,9.62,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,9.66,0.00,1.00,-172.80,-9.60,0
+-163.20,-9.60,9.70,0.00,1.00,-168.00,-14.40,0
+-158.40,-14.40,9.74,0.00,1.00,-163.20,-14.40,0
+-153.60,-14.40,9.78,0.00,1.00,-163.20,-19.20,0
+-148.80,-19.20,9.82,0.00,1.00,-158.40,-19.20,0
+-144.00,-19.20,9.86,0.00,1.00,-153.60,-24.00,0
+-139.20,-24.00,9.90,0.00,1.00,-153.60,-24.00,0
+-134.40,-24.00,9.94,0.00,1.00,-148.80,-28.80,0
+-129.60,-24.00,9.98,0.00,1.00,-144.00,-28.80,0
+-124.80,-28.80,10.03,0.00,1.00,-139.20,-28.80,0
+-120.00,-28.80,10.07,0.00,1.00,-129.60,-33.60,0
+-115.20,-28.80,10.11,0.00,1.00,-124.80,-33.60,0
+-110.40,-28.80,10.15,0.00,1.00,-115.20,-33.60,0
+-100.80,-33.60,10.19,0.00,1.00,-110.40,-33.60,0
+-96.00,-33.60,10.23,0.00,1.00,-100.80,-33.60,0
+-91.20,-33.60,10.27,0.00,1.00,-91.20,-33.60,0
+-86.40,-33.60,10.31,0.00,1.00,-81.60,-33.60,0
+-81.60,-33.60,10.35,0.00,1.00,-76.80,-33.60,0
+-76.80,-33.60,10.39,0.00,1.00,-67.20,-33.60,0
+-67.20,-28.80,10.43,0.00,1.00,-57.60,-28.80,0
+-62.40,-28.80,10.47,0.00,1.00,-52.80,-28.80,0
+-57.60,-28.80,10.51,0.00,1.00,-48.00,-28.80,0
+-52.80,-28.80,10.55,0.00,1.00,-38.40,-24.00,0
+-48.00,-24.00,10.59,0.00,1.00,-33.60,-24.00,0
+-43.20,-24.00,10.63,0.00,1.00,-28.80,-24.00,0
+-38.40,-19.20,10.67,0.00,1.00,-28.80,-19.20,0
+-33.60,-19.20,10.71,0.00,1.00,-24.00,-19.20,0
+-28.80,-19.20,10.75,0.00,1.00,-19.20,-14.40,0
+-24.00,-14.40,10.79,0.00,1.00,-14.40,-14.40,0
+-19.20,-14.40,10.83,0.00,1.00,-14.40,-9.60,0
+-14.40,-9.60,10.87,0.00,1.00,-9.60,-9.60,0
+-14.40,-9.60,10.91,0.00,1.00,-9.60,-4.80,0
+-9.60,-4.80,10.95,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,10.99,0.00,1.00,-4.80,0.00,0
+0.00,0.00,11.03,0.00,1.00,0.00,0.00,0
+4.80,0.00,11.07,0.00,1.00,0.00,4.80,0
+9.60,4.80,11.11,0.00,1.00,4.80,4.80,0
+14.40,4.80,11.15,0.00,1.00,4.80,9.60,0
+19.20,9.60,11.19,0.00,1.00,9.60,9.60,0
+19.20,9.60,11.23,0.00,1.00,9.60,14.40,0
+24.00,14.40,11.27,0.00,1.00,14.40,14.40,0
+28.80,14.40,11.31,0.00,1.00,19.20,19.20,0
+33.60,14.40,11.35,0.00,1.00,19.20,19.20,0
+38.40,19.20,11.39,0.00,1.00,24.00,19.20,0
+43.20,19.20,11.43,0.00,1.00,28.80,24.00,0
+48.00,24.00,11.47,0.00,1.00,33.60,24.00,0
+52.80,24.00,11.51,0.00,1.00,38.40,24.00,0
+57.60,24.00,11.55,0.00,1.00,43.20,24.00,0
+62.40,24.00,11.59,0.00,1.00,48.00,28.80,0
+72.00,24.00,11.63,0.00,1.00,52.80,28.80,0
+76.80,28.80,11.67,0.00,1.00,62.40,28.80,0
+81.60,28.80,11.71,0.00,1.00,72.00,28.80,0
+86.40,28.80,11.75,0.00,1.00,81.60,28.80,0
+91.20,28.80,11.79,0.00,1.00,91.20,28.80,0
+96.00,28.80,11.83,0.00,1.00,100.80,28.80,0
+100.80,28.80,11.87,0.00,1.00,110.40,28.80,0
+105.60,28.80,11.91,0.00,1.00,120.00,28.80,0
+110.40,24.00,11.95,0.00,1.00,129.60,24.00,0
+120.00,24.00,11.99,0.00,1.00,134.40,24.00,0
+124.80,24.00,12.03,0.00,1.00,139.20,24.00,0
+129.60,24.00,12.07,0.00,1.00,144.00,24.00,0
+134.40,19.20,12.11,0.00,1.00,148.80,19.20,0
+139.20,19.20,12.15,0.00,1.00,153.60,19.20,0
+144.00,19.20,12.19,0.00,1.00,158.40,14.40,0
+148.80,14.40,12.23,0.00,1.00,163.20,14.40,0
+153.60,14.40,12.27,0.00,1.00,163.20,14.40,0
+158.40,9.60,12.31,0.00,1.00,168.00,9.60,0
+158.40,9.60,12.35,0.00,1.00,168.00,9.60,0
+163.20,9.60,12.39,0.00,1.00,172.80,4.80,0
+168.00,4.80,12.43,0.00,1.00,172.80,4.80,0
+172.80,4.80,12.47,0.00,1.00,177.60,0.00,0
+177.60,0.00,12.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,12.55,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,12.59,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,12.63,0.00,1.00,-172.80,-9.60,0
+-163.20,-9.60,12.67,0.00,1.00,-172.80,-9.60,0
+-158.40,-9.60,12.71,0.00,1.00,-168.00,-14.40,0
+-158.40,-9.60,12.75,0.00,1.00,-168.00,-14.40,0
+-153.60,-14.40,12.79,0.00,1.00,-163.20,-14.40,0
+-148.80,-14.40,12.83,0.00,1.00,-163.20,-19.20,0
+-144.00,-19.20,12.87,0.00,1.00,-158.40,-19.20,0
+-139.20,-19.20,12.91,0.00,1.00,-153.60,-24.00,0
+-134.40,-19.20,12.95,0.00,1.00,-148.80,-24.00,0
+-129.60,-24.00,12.99,0.00,1.00,-144.00,-24.00,0
+-124.80,-24.00,13.03,0.00,1.00,-139.20,-24.00,0
+-120.00,-24.00,13.07,0.00,1.00,-134.40,-28.80,0
+-110.40,-24.00,13.11,0.00,1.00,-129.60,-28.80,0
+-105.60,-28.80,13.15,0.00,1.00,-120.00,-28.80,0
+-100.80,-28.80,13.19,0.00,1.00,-110.40,-28.80,0
+-96.00,-28.80,13.23,0.00,1.00,-100.80,-28.80,0
+-91.20,-28.80,13.27,0.00,1.00,-91.20,-28.80,0
+-86.40,-28.80,13.31,0.00,1.00,-81.60,-28.80,0
+-81.60,-28.80,13.35,0.00,1.00,-72.00,-28.80,0
+-76.80,-28.80,13.39,0.00,1.00,-62.40,-28.80,0
+-72.00,-24.00,13.43,0.00,1.00,-52.80,-24.00,0
+-62.40,-24.00,13.47,0.00,1.00,-48.00,-24.00,0
+-57.60,-24.00,13.51,0.00,1.00,-43.20,-24.00,0
+-52.80,-24.00,13.55,0.00,1.00,-38.40,-24.00,0
+-48.00,-24.00,13.59,0.00,1.00,-33.60,-19.20,0
+-43.20,-19.20,13.63,0.00,1.00,-28.80,-19.20,0
+-38.40,-19.20,13.67,0.00,1.00,-24.00,-19.20,0
+-33.60,-14.40,13.71,0.00,1.00,-19.20,-14.40,0
+-28.80,-14.40,13.75,0.00,1.00,-19.20,-14.40,0
+-24.00,-14.40,13.79,0.00,1.00,-14.40,-9.60,0
+-19.20,-9.60,13.83,0.00,1.00,-9.60,-9.60,0
+-19.20,-9.60,13.87,0.00,1.00,-9.60,-4.80,0
+-14.40,-4.80,13.91,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,13.95,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,13.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,14.04,0.00,1.00,0.00,0.00,0
+4.80,0.00,14.08,0.00,1.00,0.00,4.80,0
+9.60,4.80,14.12,0.00,1.00,4.80,4.80,0
+14.40,4.80,14.16,0.00,1.00,4.80,9.60,0
+19.20,9.60,14.20,0.00,1.00,9.60,9.60,0
+24.00,9.60,14.24,0.00,1.00,9.60,9.60,0
+28.80,9.60,14.28,0.00,1.00,14.40,14.40,0
+33.60,14.40,14.32,0.00,1.00,14.40,14.40,0
+38.40,14.40,14.36,0.00,1.00,19.20,14.40,0
+43.20,14.40,14.40,0.00,1.00,19.20,19.20,0
+48.00,14.40,14.44,0.00,1.00,24.00,19.20,0
+52.80,19.20,14.48,0.00,1.00,28.80,19.20,0
+57.60,19.20,14.52,0.00,1.00,33.60,19.20,0
+62.40,19.20,14.56,0.00,1.00,38.40,24.00,0
+67.20,19.20,14.60,0.00,1.00,43.20,24.00,0
+72.00,24.00,14.64,0.00,1.00,48.00,24.00,0
+76.80,24.00,14.68,0.00,1.00,57.60,24.00,0
+81.60,24.00,14.72,0.00,1.00,67.20,24.00,0
+86.40,24.00,14.76,0.00,1.00,81.60,24.00,0
+91.20,24.00,14.80,0.00,1.00,91.20,24.00,0
+96.00,24.00,14.84,0.00,1.00,105.60,24.00,0
+100.80,24.00,14.88,0.00,1.00,115.20,24.00,0
+105.60,24.00,14.92,0.00,1.00,124.80,24.00,0
+110.40,19.20,14.96,0.00,1.00,134.40,19.20,0
+115.20,19.20,15.00,0.00,1.00,139.20,19.20,0
+120.00,19.20,15.04,0.00,1.00,144.00,19.20,0
+124.80,19.20,15.08,0.00,1.00,148.80,19.20,0
+129.60,19.20,15.12,0.00,1.00,153.60,19.20,0
+134.40,14.40,15.16,0.00,1.00,158.40,14.40,0
+139.20,14.40,15.20,0.00,1.00,163.20,14.40,0
+144.00,14.40,15.24,0.00,1.00,163.20,14.40,0
+148.80,9.60,15.28,0.00,1.00,168.00,9.60,0
+153.60,9.60,15.32,0.00,1.00,168.00,9.60,0
+158.40,9.60,15.36,0.00,1.00,172.80,4.80,0
+163.20,4.80,15.40,0.00,1.00,172.80,4.80,0
+168.00,4.80,15.44,0.00,1.00,177.60,4.80,0
+172.80,4.80,15.48,0.00,1.00,177.60,0.00,0
+177.60,0.00,15.52,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,15.56,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,15.60,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,15.64,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,15.68,0.00,1.00,-172.80,-9.60,0
+-158.40,-9.60,15.72,0.00,1.00,-172.80,-9.60,0
+-153.60,-9.60,15.76,0.00,1.00,-168.00,-14.40,0
+-148.80,-9.60,15.80,0.00,1.00,-168.00,-14.40,0
+-144.00,-14.40,15.84,0.00,1.00,-163.20,-14.40,0
+-139.20,-14.40,15.88,0.00,1.00,-163.20,-19.20,0
+-134.40,-14.40,15.92,0.00,1.00,-158.40,-19.20,0
+-129.60,-19.20,15.96,0.00,1.00,-153.60,-19.20,0
+-124.80,-19.20,16.00,0.00,1.00,-148.80,-19.20,0
+-120.00,-19.20,16.00,0.00,1.00,-144.00,-19.20,0
+-115.20,-19.20,15.96,0.00,1.00,-139.20,-24.00,0
+-110.40,-19.20,15.92,0.00,1.00,-134.40,-24.00,0
+-105.60,-24.00,15.88,0.00,1.00,-124.80,-24.00,0
+-100.80,-24.00,15.84,0.00,1.00,-115.20,-24.00,0
+-96.00,-24.00,15.80,0.00,1.00,-105.60,-24.00,0
+-91.20,-24.00,15.76,0.00,1.00,-91.20,-24.00,0
+-86.40,-24.00,15.72,0.00,1.00,-81.60,-24.00,0
+-81.60,-24.00,15.68,0.00,1.00,-67.20,-24.00,0
+-76.80,-24.00,15.64,0.00,1.00,-57.60,-24.00,0
+-72.00,-24.00,15.60,0.00,1.00,-48.00,-24.00,0
+-67.20,-19.20,15.56,0.00,1.00,-43.20,-19.20,0
+-62.40,-19.20,15.52,0.00,1.00,-38.40,-19.20,0
+-57.60,-19.20,15.48,0.00,1.00,-33.60,-19.20,0
+-52.80,-19.20,15.44,0.00,1.00,-28.80,-19.20,0
+-48.00,-14.40,15.40,0.00,1.00,-24.00,-14.40,0
+-43.20,-14.40,15.36,0.00,1.00,-19.20,-14.40,0
+-38.40,-14.40,15.32,0.00,1.00,-19.20,-14.40,0
+-33.60,-14.40,15.28,0.00,1.00,-14.40,-9.60,0
+-28.80,-9.60,15.24,0.00,1.00,-14.40,-9.60,0
+-24.00,-9.60,15.20,0.00,1.00,-9.60,-9.60,0
+-19.20,-9.60,15.16,0.00,1.00,-9.60,-4.80,0
+-14.40,-4.80,15.12,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,15.08,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,15.04,0.00,1.00,-0.00,0.00,0
+0.00,0.00,15.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,14.96,0.00,1.00,0.00,4.80,0
+9.60,4.80,14.92,0.00,1.00,4.80,4.80,0
+14.40,4.80,14.88,0.00,1.00,4.80,4.80,0
+19.20,4.80,14.84,0.00,1.00,4.80,9.60,0
+24.00,9.60,14.80,0.00,1.00,9.60,9.60,0
+28.80,9.60,14.76,0.00,1.00,9.60,9.60,0
+33.60,9.60,14.72,0.00,1.00,9.60,9.60,0
+38.40,9.60,14.68,0.00,1.00,14.40,14.40,0
+43.20,14.40,14.64,0.00,1.00,14.40,14.40,0
+48.00,14.40,14.60,0.00,1.00,19.20,14.40,0
+52.80,14.40,14.56,0.00,1.00,24.00,14.40,0
+57.60,14.40,14.52,0.00,1.00,24.00,19.20,0
+62.40,14.40,14.48,0.00,1.00,28.80,19.20,0
+67.20,14.40,14.44,0.00,1.00,38.40,19.20,0
+72.00,19.20,14.40,0.00,1.00,43.20,19.20,0
+76.80,19.20,14.36,0.00,1.00,52.80,19.20,0
+81.60,19.20,14.32,0.00,1.00,62.40,19.20,0
+86.40,19.20,14.28,0.00,1.00,76.80,19.20,0
+91.20,19.20,14.24,0.00,1.00,96.00,19.20,0
+96.00,19.20,14.20,0.00,1.00,110.40,19.20,0
+100.80,19.20,14.16,0.00,1.00,120.00,19.20,0
+105.60,19.20,14.12,0.00,1.00,134.40,19.20,0
+110.40,19.20,14.08,0.00,1.00,139.20,19.20,0
+115.20,14.40,14.04,0.00,1.00,148.80,14.40,0
+120.00,14.40,13.99,0.00,1.00,153.60,14.40,0
+124.80,14.40,13.95,0.00,1.00,158.40,14.40,0
+129.60,14.40,13.91,0.00,1.00,158.40,14.40,0
+134.40,14.40,13.87,0.00,1.00,163.20,14.40,0
+139.20,9.60,13.83,0.00,1.00,163.20,9.60,0
+144.00,9.60,13.79,0.00,1.00,168.00,9.60,0
+148.80,9.60,13.75,0.00,1.00,168.00,9.60,0
+153.60,9.60,13.71,0.00,1.00,172.80,4.80,0
+158.40,4.80,13.67,0.00,1.00,172.80,4.80,0
+163.20,4.80,13.63,0.00,1.00,172.80,4.80,0
+168.00,4.80,13.59,0.00,1.00,177.60,0.00,0
+172.80,0.00,13.55,0.00,1.00,177.60,0.00,0
+177.60,0.00,13.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.47,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,13.43,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,13.39,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,13.35,0.00,1.00,-172.80,-4.80,0
+-158.40,-4.80,13.31,0.00,1.00,-172.80,-9.60,0
+-153.60,-9.60,13.27,0.00,1.00,-172.80,-9.60,0
+-148.80,-9.60,13.23,0.00,1.00,-168.00,-9.60,0
+-144.00,-9.60,13.19,0.00,1.00,-168.00,-14.40,0
+-139.20,-9.60,13.15,0.00,1.00,-163.20,-14.40,0
+-134.40,-14.40,13.11,0.00,1.00,-163.20,-14.40,0
+-129.60,-14.40,13.07,0.00,1.00,-158.40,-14.40,0
+-124.80,-14.40,13.03,0.00,1.00,-158.40,-14.40,0
+-120.00,-14.40,12.99,0.00,1.00,-153.60,-19.20,0
+-115.20,-14.40,12.95,0.00,1.00,-148.80,-19.20,0
+-110.40,-19.20,12.91,0.00,1.00,-139.20,-19.20,0
+-105.60,-19.20,12.87,0.00,1.00,-134.40,-19.20,0
+-100.80,-19.20,12.83,0.00,1.00,-120.00,-19.20,0
+-96.00,-19.20,12.79,0.00,1.00,-110.40,-19.20,0
+-91.20,-19.20,12.75,0.00,1.00,-96.00,-19.20,0
+-86.40,-19.20,12.71,0.00,1.00,-76.80,-19.20,0
+-81.60,-19.20,12.67,0.00,1.00,-62.40,-19.20,0
+-76.80,-19.20,12.63,0.00,1.00,-52.80,-19.20,0
+-72.00,-19.20,12.59,0.00,1.00,-43.20,-19.20,0
+-67.20,-14.40,12.55,0.00,1.00,-38.40,-19.20,0
+-62.40,-14.40,12.51,0.00,1.00,-28.80,-14.40,0
+-57.60,-14.40,12.47,0.00,1.00,-24.00,-14.40,0
+-52.80,-14.40,12.43,0.00,1.00,-24.00,-14.40,0
+-48.00,-14.40,12.39,0.00,1.00,-19.20,-14.40,0
+-43.20,-14.40,12.35,0.00,1.00,-14.40,-9.60,0
+-38.40,-9.60,12.31,0.00,1.00,-14.40,-9.60,0
+-33.60,-9.60,12.27,0.00,1.00,-9.60,-9.60,0
+-28.80,-9.60,12.23,0.00,1.00,-9.60,-9.60,0
+-24.00,-9.60,12.19,0.00,1.00,-9.60,-4.80,0
+-19.20,-4.80,12.15,0.00,1.00,-4.80,-4.80,0
+-14.40,-4.80,12.11,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,12.07,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,12.03,0.00,1.00,-0.00,0.00,0
+0.00,0.00,11.99,0.00,1.00,0.00,0.00,0
+4.80,0.00,11.95,0.00,1.00,0.00,0.00,0
+9.60,0.00,11.91,0.00,1.00,0.00,4.80,0
+14.40,4.80,11.87,0.00,1.00,4.80,4.80,0
+19.20,4.80,11.83,0.00,1.00,4.80,4.80,0
+24.00,4.80,11.79,0.00,1.00,4.80,4.80,0
+28.80,4.80,11.75,0.00,1.00,4.80,9.60,0
+33.60,9.60,11.71,0.00,1.00,9.60,9.60,0
+38.40,9.60,11.67,0.00,1.00,9.60,9.60,0
+43.20,9.60,11.63,0.00,1.00,14.40,9.60,0
+48.00,9.60,11.59,0.00,1.00,14.40,9.60,0
+52.80,9.60,11.55,0.00,1.00,14.40,14.40,0
+57.60,9.60,11.51,0.00,1.00,19.20,14.40,0
+62.40,9.60,11.47,0.00,1.00,24.00,14.40,0
+67.20,14.40,11.43,0.00,1.00,28.80,14.40,0
+72.00,14.40,11.39,0.00,1.00,33.60,14.40,0
+76.80,14.40,11.35,0.00,1.00,43.20,14.40,0
+81.60,14.40,11.31,0.00,1.00,57.60,14.40,0
+86.40,14.40,11.27,0.00,1.00,76.80,14.40,0
+91.20,14.40,11.23,0.00,1.00,96.00,14.40,0
+96.00,14.40,11.19,0.00,1.00,115.20,14.40,0
+100.80,14.40,11.15,0.00,1.00,129.60,14.40,0
+105.60,14.40,11.11,0.00,1.00,139.20,14.40,0
+110.40,14.40,11.07,0.00,1.00,148.80,14.40,0
+115.20,9.60,11.03,0.00,1.00,153.60,14.40,0
+120.00,9.60,10.99,0.00,1.00,158.40,9.60,0
+124.80,9.60,10.95,0.00,1.00,163.20,9.60,0
+129.60,9.60,10.91,0.00,1.00,163.20,9.60,0
+134.40,9.60,10.87,0.00,1.00,168.00,9.60,0
+139.20,9.60,10.83,0.00,1.00,168.00,9.60,0
+144.00,9.60,10.79,0.00,1.00,172.80,9.60,0
+148.80,4.80,10.75,0.00,1.00,172.80,4.80,0
+153.60,4.80,10.71,0.00,1.00,172.80,4.80,0
+158.40,4.80,10.67,0.00,1.00,172.80,4.80,0
+163.20,4.80,10.63,0.00,1.00,177.60,4.80,0
+168.00,4.80,10.59,0.00,1.00,177.60,0.00,0
+172.80,0.00,10.55,0.00,1.00,177.60,0.00,0
+177.60,0.00,10.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.47,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,10.43,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,10.39,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,10.35,0.00,1.00,-177.60,-4.80,0
+-158.40,-4.80,10.31,0.00,1.00,-172.80,-4.80,0
+-153.60,-4.80,10.27,0.00,1.00,-172.80,-9.60,0
+-148.80,-4.80,10.23,0.00,1.00,-172.80,-9.60,0
+-144.00,-9.60,10.19,0.00,1.00,-172.80,-9.60,0
+-139.20,-9.60,10.15,0.00,1.00,-168.00,-9.60,0
+-134.40,-9.60,10.11,0.00,1.00,-168.00,-9.60,0
+-129.60,-9.60,10.07,0.00,1.00,-163.20,-9.60,0
+-124.80,-9.60,10.03,0.00,1.00,-163.20,-14.40,0
+-120.00,-9.60,9.98,0.00,1.00,-158.40,-14.40,0
+-115.20,-9.60,9.94,0.00,1.00,-153.60,-14.40,0
+-110.40,-14.40,9.90,0.00,1.00,-148.80,-14.40,0
+-105.60,-14.40,9.86,0.00,1.00,-139.20,-14.40,0
+-100.80,-14.40,9.82,0.00,1.00,-129.60,-14.40,0
+-96.00,-14.40,9.78,0.00,1.00,-115.20,-14.40,0
+-91.20,-14.40,9.74,0.00,1.00,-96.00,-14.40,0
+-86.40,-14.40,9.70,0.00,1.00,-76.80,-14.40,0
+-81.60,-14.40,9.66,0.00,1.00,-57.60,-14.40,0
+-76.80,-14.40,9.62,0.00,1.00,-43.20,-14.40,0
+-72.00,-14.40,9.58,0.00,1.00,-33.60,-14.40,0
+-67.20,-14.40,9.54,0.00,1.00,-28.80,-14.40,0
+-62.40,-9.60,9.50,0.00,1.00,-24.00,-14.40,0
+-57.60,-9.60,9.46,0.00,1.00,-19.20,-9.60,0
+-52.80,-9.60,9.42,0.00,1.00,-14.40,-9.60,0
+-48.00,-9.60,9.38,0.00,1.00,-14.40,-9.60,0
+-43.20,-9.60,9.34,0.00,1.00,-14.40,-9.60,0
+-38.40,-9.60,9.30,0.00,1.00,-9.60,-9.60,0
+-33.60,-9.60,9.26,0.00,1.00,-9.60,-4.80,0
+-28.80,-4.80,9.22,0.00,1.00,-4.80,-4.80,0
+-24.00,-4.80,9.18,0.00,1.00,-4.80,-4.80,0
+-19.20,-4.80,9.14,0.00,1.00,-4.80,-4.80,0
+-14.40,-4.80,9.10,0.00,1.00,-4.80,-0.00,0
+-9.60,-0.00,9.06,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,9.02,0.00,1.00,-0.00,0.00,0
+0.00,0.00,8.98,0.00,1.00,0.00,0.00,0
+4.80,0.00,8.94,0.00,1.00,0.00,0.00,0
+9.60,0.00,8.90,0.00,1.00,0.00,0.00,0
+14.40,0.00,8.86,0.00,1.00,0.00,4.80,0
+19.20,4.80,8.82,0.00,1.00,4.80,4.80,0
+24.00,4.80,8.78,0.00,1.00,4.80,4.80,0
+28.80,4.80,8.74,0.00,1.00,4.80,4.80,0
+33.60,4.80,8.70,0.00,1.00,4.80,4.80,0
+38.40,4.80,8.66,0.00,1.00,4.80,4.80,0
+43.20,4.80,8.62,0.00,1.00,9.60,4.80,0
+48.00,4.80,8.58,0.00,1.00,9.60,9.60,0
+52.80,4.80,8.54,0.00,1.00,9.60,9.60,0
+57.60,4.80,8.50,0.00,1.00,14.40,9.60,0
+62.40,9.60,8.46,0.00,1.00,14.40,9.60,0
+67.20,9.60,8.42,0.00,1.00,19.20,9.60,0
+72.00,9.60,8.38,0.00,1.00,24.00,9.60,0
+76.80,9.60,8.34,0.00,1.00,33.60,9.60,0
+81.60,9.60,8.30,0.00,1.00,43.20,9.60,0
+86.40,9.60,8.26,0.00,1.00,67.20,9.60,0
+91.20,9.60,8.22,0.00,1.00,96.00,9.60,0
+96.00,9.60,8.18,0.00,1.00,124.80,9.60,0
+100.80,9.60,8.14,0.00,1.00,144.00,9.60,0
+105.60,9.60,8.10,0.00,1.00,153.60,9.60,0
+110.40,9.60,8.06,0.00,1.00,158.40,9.60,0
+115.20,9.60,8.02,0.00,1.00,163.20,9.60,0
+120.00,9.60,7.98,0.00,1.00,168.00,9.60,0
+124.80,4.80,7.94,0.00,1.00,168.00,9.60,0
+129.60,4.80,7.90,0.00,1.00,168.00,4.80,0
+134.40,4.80,7.86,0.00,1.00,172.80,4.80,0
+139.20,4.80,7.82,0.00,1.00,172.80,4.80,0
+144.00,4.80,7.78,0.00,1.00,172.80,4.80,0
+148.80,4.80,7.74,0.00,1.00,172.80,4.80,0
+153.60,4.80,7.70,0.00,1.00,177.60,4.80,0
+158.40,4.80,7.66,0.00,1.00,177.60,4.80,0
+163.20,4.80,7.62,0.00,1.00,177.60,0.00,0
+168.00,0.00,7.58,0.00,1.00,177.60,0.00,0
+172.80,0.00,7.54,0.00,1.00,177.60,0.00,0
+177.60,0.00,7.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,7.46,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,7.42,0.00,1.00,-177.60,-0.00,0
+-168.00,-0.00,7.38,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,7.34,0.00,1.00,-177.60,-4.80,0
+-158.40,-4.80,7.30,0.00,1.00,-177.60,-4.80,0
+-153.60,-4.80,7.26,0.00,1.00,-177.60,-4.80,0
+-148.80,-4.80,7.22,0.00,1.00,-172.80,-4.80,0
+-144.00,-4.80,7.18,0.00,1.00,-172.80,-4.80,0
+-139.20,-4.80,7.14,0.00,1.00,-172.80,-4.80,0
+-134.40,-4.80,7.10,0.00,1.00,-172.80,-9.60,0
+-129.60,-4.80,7.06,0.00,1.00,-168.00,-9.60,0
+-124.80,-4.80,7.02,0.00,1.00,-168.00,-9.60,0
+-120.00,-9.60,6.98,0.00,1.00,-168.00,-9.60,0
+-115.20,-9.60,6.94,0.00,1.00,-163.20,-9.60,0
+-110.40,-9.60,6.90,0.00,1.00,-158.40,-9.60,0
+-105.60,-9.60,6.86,0.00,1.00,-153.60,-9.60,0
+-100.80,-9.60,6.82,0.00,1.00,-144.00,-9.60,0
+-96.00,-9.60,6.78,0.00,1.00,-124.80,-9.60,0
+-91.20,-9.60,6.74,0.00,1.00,-96.00,-9.60,0
+-86.40,-9.60,6.70,0.00,1.00,-67.20,-9.60,0
+-81.60,-9.60,6.66,0.00,1.00,-43.20,-9.60,0
+-76.80,-9.60,6.62,0.00,1.00,-33.60,-9.60,0
+-72.00,-9.60,6.58,0.00,1.00,-24.00,-9.60,0
+-67.20,-9.60,6.54,0.00,1.00,-19.20,-9.60,0
+-62.40,-9.60,6.50,0.00,1.00,-14.40,-9.60,0
+-57.60,-4.80,6.46,0.00,1.00,-14.40,-9.60,0
+-52.80,-4.80,6.42,0.00,1.00,-9.60,-4.80,0
+-48.00,-4.80,6.38,0.00,1.00,-9.60,-4.80,0
+-43.20,-4.80,6.34,0.00,1.00,-9.60,-4.80,0
+-38.40,-4.80,6.30,0.00,1.00,-4.80,-4.80,0
+-33.60,-4.80,6.26,0.00,1.00,-4.80,-4.80,0
+-28.80,-4.80,6.22,0.00,1.00,-4.80,-4.80,0
+-24.00,-4.80,6.18,0.00,1.00,-4.80,-4.80,0
+-19.20,-4.80,6.14,0.00,1.00,-4.80,-0.00,0
+-14.40,-0.00,6.10,0.00,1.00,-0.00,-0.00,0
+-9.60,-0.00,6.06,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,6.02,0.00,1.00,-0.00,0.00,0
+0.00,0.00,5.97,0.00,1.00,0.00,0.00,0
+4.80,0.00,5.93,0.00,1.00,0.00,0.00,0
+9.60,0.00,5.89,0.00,1.00,0.00,0.00,0
+14.40,0.00,5.85,0.00,1.00,0.00,0.00,0
+19.20,0.00,5.81,0.00,1.00,0.00,0.00,0
+24.00,0.00,5.77,0.00,1.00,0.00,0.00,0
+28.80,0.00,5.73,0.00,1.00,0.00,4.80,0
+33.60,0.00,5.69,0.00,1.00,0.00,4.80,0
+38.40,0.00,5.65,0.00,1.00,4.80,4.80,0
+43.20,4.80,5.61,0.00,1.00,4.80,4.80,0
+48.00,4.80,5.57,0.00,1.00,4.80,4.80,0
+52.80,4.80,5.53,0.00,1.00,4.80,4.80,0
+57.60,4.80,5.49,0.00,1.00,4.80,4.80,0
+62.40,4.80,5.45,0.00,1.00,4.80,4.80,0
+67.20,4.80,5.41,0.00,1.00,9.60,4.80,0
+72.00,4.80,5.37,0.00,1.00,9.60,4.80,0
+76.80,4.80,5.33,0.00,1.00,14.40,4.80,0
+81.60,4.80,5.29,0.00,1.00,24.00,4.80,0
+86.40,4.80,5.25,0.00,1.00,43.20,4.80,0
+91.20,4.80,5.21,0.00,1.00,110.40,4.80,0
+96.00,4.80,5.17,0.00,1.00,148.80,4.80,0
+100.80,4.80,5.13,0.00,1.00,163.20,4.80,0
+105.60,4.80,5.09,0.00,1.00,168.00,4.80,0
+110.40,4.80,5.05,0.00,1.00,172.80,4.80,0
+115.20,4.80,5.01,0.00,1.00,172.80,4.80,0
+120.00,4.80,4.97,0.00,1.00,172.80,4.80,0
+124.80,4.80,4.93,0.00,1.00,172.80,4.80,0
+129.60,4.80,4.89,0.00,1.00,177.60,4.80,0
+134.40,4.80,4.85,0.00,1.00,177.60,4.80,0
+139.20,0.00,4.81,0.00,1.00,177.60,4.80,0
+144.00,0.00,4.77,0.00,1.00,177.60,4.80,0
+148.80,0.00,4.73,0.00,1.00,177.60,0.00,0
+153.60,0.00,4.69,0.00,1.00,177.60,0.00,0
+158.40,0.00,4.65,0.00,1.00,177.60,0.00,0
+163.20,0.00,4.61,0.00,1.00,177.60,0.00,0
+168.00,0.00,4.57,0.00,1.00,177.60,0.00,0
+172.80,0.00,4.53,0.00,1.00,177.60,0.00,0
+177.60,0.00,4.49,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,4.45,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,4.41,0.00,1.00,-177.60,-0.00,0
+-168.00,-0.00,4.37,0.00,1.00,-177.60,-0.00,0
+-163.20,-0.00,4.33,0.00,1.00,-177.60,-0.00,0
+-158.40,-0.00,4.29,0.00,1.00,-177.60,-0.00,0
+-153.60,-0.00,4.25,0.00,1.00,-177.60,-4.80,0
+-148.80,-0.00,4.21,0.00,1.00,-177.60,-4.80,0
+-144.00,-0.00,4.17,0.00,1.00,-177.60,-4.80,0
+-139.20,-0.00,4.13,0.00,1.00,-177.60,-4.80,0
+-134.40,-4.80,4.09,0.00,1.00,-177.60,-4.80,0
+-129.60,-4.80,4.05,0.00,1.00,-177.60,-4.80,0
+-124.80,-4.80,4.01,0.00,1.00,-172.80,-4.80,0
+-120.00,-4.80,3.97,0.00,1.00,-172.80,-4.80,0
+-115.20,-4.80,3.93,0.00,1.00,-172.80,-4.80,0
+-110.40,-4.80,3.89,0.00,1.00,-172.80,-4.80,0
+-105.60,-4.80,3.85,0.00,1.00,-168.00,-4.80,0
+-100.80,-4.80,3.81,0.00,1.00,-163.20,-4.80,0
+-96.00,-4.80,3.77,0.00,1.00,-148.80,-4.80,0
+-91.20,-4.80,3.73,0.00,1.00,-110.40,-4.80,0
+-86.40,-4.80,3.69,0.00,1.00,-43.20,-4.80,0
+-81.60,-4.80,3.65,0.00,1.00,-24.00,-4.80,0
+-76.80,-4.80,3.61,0.00,1.00,-14.40,-4.80,0
+-72.00,-4.80,3.57,0.00,1.00,-9.60,-4.80,0
+-67.20,-4.80,3.53,0.00,1.00,-9.60,-4.80,0
+-62.40,-4.80,3.49,0.00,1.00,-4.80,-4.80,0
+-57.60,-4.80,3.45,0.00,1.00,-4.80,-4.80,0
+-52.80,-4.80,3.41,0.00,1.00,-4.80,-4.80,0
+-48.00,-4.80,3.37,0.00,1.00,-4.80,-4.80,0
+-43.20,-4.80,3.33,0.00,1.00,-4.80,-4.80,0
+-38.40,-0.00,3.29,0.00,1.00,-4.80,-4.80,0
+-33.60,-0.00,3.25,0.00,1.00,-0.00,-0.00,0
+-28.80,-0.00,3.21,0.00,1.00,-0.00,-0.00,0
+-24.00,-0.00,3.17,0.00,1.00,-0.00,-0.00,0
+-19.20,-0.00,3.13,0.00,1.00,-0.00,-0.00,0
+-14.40,-0.00,3.09,0.00,1.00,-0.00,-0.00,0
+-9.60,-0.00,3.05,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,3.01,0.00,1.00,-0.00,0.00,0
+0.00,0.00,2.97,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,2.93,0.00,1.00,-0.00,0.00,0
+9.60,-0.00,2.89,0.00,1.00,-0.00,0.00,0
+14.40,-0.00,2.85,0.00,1.00,-0.00,0.00,0
+19.20,-0.00,2.81,0.00,1.00,-0.00,0.00,0
+24.00,-0.00,2.77,0.00,1.00,-0.00,0.00,0
+28.80,-0.00,2.73,0.00,1.00,-0.00,0.00,0
+33.60,-0.00,2.69,0.00,1.00,-0.00,0.00,0
+38.40,-0.00,2.65,0.00,1.00,-0.00,0.00,0
+43.20,-0.00,2.61,0.00,1.00,-0.00,0.00,0
+48.00,-0.00,2.57,0.00,1.00,-0.00,0.00,0
+52.80,-0.00,2.53,0.00,1.00,-0.00,0.00,0
+57.60,-0.00,2.49,0.00,1.00,-0.00,0.00,0
+62.40,-0.00,2.45,0.00,1.00,-0.00,0.00,0
+67.20,-0.00,2.41,0.00,1.00,-4.80,0.00,0
+72.00,-0.00,2.37,0.00,1.00,-4.80,0.00,0
+76.80,-0.00,2.33,0.00,1.00,-4.80,0.00,0
+81.60,-0.00,2.29,0.00,1.00,-9.60,0.00,0
+86.40,-0.00,2.25,0.00,1.00,-19.20,0.00,0
+91.20,-0.00,2.21,0.00,1.00,-134.40,0.00,0
+96.00,-0.00,2.17,0.00,1.00,-168.00,0.00,0
+100.80,-0.00,2.13,0.00,1.00,-172.80,0.00,0
+105.60,-0.00,2.09,0.00,1.00,-177.60,0.00,0
+110.40,-0.00,2.05,0.00,1.00,-177.60,0.00,0
+115.20,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+120.00,-0.00,1.96,0.00,1.00,-177.60,0.00,0
+124.80,-0.00,1.92,0.00,1.00,-177.60,0.00,0
+129.60,-0.00,1.88,0.00,1.00,-177.60,0.00,0
+134.40,-0.00,1.84,0.00,1.00,-177.60,0.00,0
+139.20,-0.00,1.80,0.00,1.00,-177.60,0.00,0
+144.00,-0.00,1.76,0.00,1.00,-177.60,0.00,0
+148.80,-0.00,1.72,0.00,1.00,-177.60,0.00,0
+153.60,-0.00,1.68,0.00,1.00,-177.60,0.00,0
+158.40,-0.00,1.64,0.00,1.00,-177.60,0.00,0
+163.20,-0.00,1.60,0.00,1.00,-177.60,0.00,0
+168.00,-0.00,1.56,0.00,1.00,-177.60,0.00,0
+172.80,-0.00,1.52,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,1.48,0.00,1.00,-177.60,0.00,0
+-177.60,0.00,1.44,0.00,1.00,177.60,0.00,0
+-172.80,0.00,1.40,0.00,1.00,177.60,0.00,0
+-168.00,0.00,1.36,0.00,1.00,177.60,0.00,0
+-163.20,0.00,1.32,0.00,1.00,177.60,0.00,0
+-158.40,0.00,1.28,0.00,1.00,177.60,0.00,0
+-153.60,0.00,1.24,0.00,1.00,177.60,0.00,0
+-148.80,0.00,1.20,0.00,1.00,177.60,0.00,0
+-144.00,0.00,1.16,0.00,1.00,177.60,0.00,0
+-139.20,0.00,1.12,0.00,1.00,177.60,0.00,0
+-134.40,0.00,1.08,0.00,1.00,177.60,0.00,0
+-129.60,0.00,1.04,0.00,1.00,177.60,0.00,0
+-124.80,0.00,1.00,0.00,1.00,177.60,0.00,0
+-120.00,0.00,0.96,0.00,1.00,177.60,0.00,0
+-115.20,0.00,0.92,0.00,1.00,177.60,0.00,0
+-110.40,0.00,0.88,0.00,1.00,177.60,0.00,0
+-105.60,0.00,0.84,0.00,1.00,177.60,0.00,0
+-100.80,0.00,0.80,0.00,1.00,172.80,0.00,0
+-96.00,0.00,0.76,0.00,1.00,168.00,0.00,0
+-91.20,0.00,0.72,0.00,1.00,134.40,0.00,0
+-86.40,0.00,0.68,0.00,1.00,19.20,0.00,0
+-81.60,0.00,0.64,0.00,1.00,9.60,0.00,0
+-76.80,0.00,0.60,0.00,1.00,4.80,0.00,0
+-72.00,0.00,0.56,0.00,1.00,4.80,0.00,0
+-67.20,0.00,0.52,0.00,1.00,4.80,0.00,0
+-62.40,0.00,0.48,0.00,1.00,0.00,0.00,0
+-57.60,0.00,0.44,0.00,1.00,0.00,0.00,0
+-52.80,0.00,0.40,0.00,1.00,0.00,0.00,0
+-48.00,0.00,0.36,0.00,1.00,0.00,0.00,0
+-43.20,0.00,0.32,0.00,1.00,0.00,0.00,0
+-38.40,0.00,0.28,0.00,1.00,0.00,0.00,0
+-33.60,0.00,0.24,0.00,1.00,0.00,0.00,0
+-28.80,0.00,0.20,0.00,1.00,0.00,0.00,0
+-24.00,0.00,0.16,0.00,1.00,0.00,0.00,0
+-19.20,0.00,0.12,0.00,1.00,0.00,0.00,0
+-14.40,0.00,0.08,0.00,1.00,0.00,0.00,0
+-9.60,0.00,0.04,0.00,1.00,0.00,0.00,0
+-4.80,0.00,0.00,0.00,1.00,0.00,0.00,0
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA1TC48c.met b/scripts/testv/stvOMASA_4ISM_2MASA1TC48c.met
new file mode 100644
index 0000000000000000000000000000000000000000..64688774087538a671ebfda830ff11b4f836f438
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA1TC48c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d125a4c4e3989ac55f9c2617f464431feae4ede9b2e15d087d3271c0a4a56303
+size 319800
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA1TC48c_ISM1.csv b/scripts/testv/stvOMASA_4ISM_2MASA1TC48c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA1TC48c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA1TC48c_ISM2.csv b/scripts/testv/stvOMASA_4ISM_2MASA1TC48c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA1TC48c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA1TC48c_ISM3.csv b/scripts/testv/stvOMASA_4ISM_2MASA1TC48c_ISM3.csv
new file mode 100644
index 0000000000000000000000000000000000000000..14eee9b693b536fa2fd22d2813d7f588b8930b06
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA1TC48c_ISM3.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0
+-177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0
+4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0
+-168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0
+14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0
+-163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0
+19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0
+-153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0
+28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0
+-148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0
+38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0
+-139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0
+48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0
+-124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0
+57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0
+-115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0
+72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0
+-100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0
+86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0
+-86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0
+100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0
+-76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0
+110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0
+-62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0
+124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0
+-52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0
+134.40,33.60,0.28,0.00,1.00,177.60,0.00,0
+-38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0
+144.00,28.80,0.30,0.00,1.00,177.60,0.00,0
+-33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0
+153.60,24.00,0.32,0.00,1.00,177.60,0.00,0
+-24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0
+158.40,19.20,0.34,0.00,1.00,177.60,0.00,0
+-14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0
+168.00,9.60,0.36,0.00,1.00,177.60,0.00,0
+-9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0
+172.80,4.80,0.38,0.00,1.00,177.60,0.00,0
+-0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0
+-177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0
+4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0
+14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0
+19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0
+-158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0
+28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0
+-148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0
+33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0
+-139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0
+43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0
+-129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0
+57.60,38.40,15.47,0.00,1.00,177.60,0.00,0
+-120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0
+67.20,43.20,15.44,0.00,1.00,177.60,0.00,0
+-105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0
+81.60,43.20,15.42,0.00,1.00,177.60,0.00,0
+-91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0
+96.00,43.20,15.40,0.00,1.00,0.00,0.00,0
+-76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0
+110.40,43.20,15.38,0.00,1.00,0.00,0.00,0
+-67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0
+120.00,38.40,15.36,0.00,1.00,0.00,0.00,0
+-52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0
+129.60,38.40,15.34,0.00,1.00,0.00,0.00,0
+-43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0
+144.00,33.60,15.32,0.00,1.00,0.00,0.00,0
+-33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0
+148.80,24.00,15.30,0.00,1.00,0.00,0.00,0
+-24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0
+158.40,19.20,15.27,0.00,1.00,0.00,0.00,0
+-19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0
+168.00,14.40,15.25,0.00,1.00,0.00,0.00,0
+-9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0
+172.80,4.80,15.23,0.00,1.00,0.00,0.00,0
+-4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0
+0.00,0.00,15.21,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0
+9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0
+14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0
+-163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0
+24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0
+-153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0
+28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0
+-144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0
+38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0
+-134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0
+48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0
+-124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0
+62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0
+-115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0
+72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0
+-100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0
+86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0
+-86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0
+96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0
+-76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0
+110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0
+-62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0
+120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0
+-52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0
+134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0
+-43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0
+144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0
+-33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0
+148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0
+-24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0
+158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0
+-19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0
+168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0
+-9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0
+172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0
+4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0
+14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0
+19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0
+-153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0
+28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0
+-148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0
+38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0
+-139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0
+48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0
+-124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0
+57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0
+-115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0
+72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0
+-105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0
+81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0
+-91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0
+96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0
+-76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0
+105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0
+-67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0
+120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0
+-57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0
+129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0
+-43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0
+139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0
+-33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0
+148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0
+-28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0
+158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0
+-19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0
+163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0
+-9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0
+172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0
+0.00,0.00,1.60,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0
+9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0
+14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0
+-158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0
+24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0
+-153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0
+33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0
+-144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0
+43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0
+-134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0
+52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0
+-124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0
+62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0
+-110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0
+72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0
+-100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0
+86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0
+-86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0
+96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0
+-76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0
+110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0
+-67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0
+120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0
+-52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0
+129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0
+-43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0
+139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0
+-33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0
+148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0
+-24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0
+158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0
+-19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0
+168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0
+172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0
+14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0
+-163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0
+24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0
+-153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0
+28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0
+-144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0
+38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0
+-134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0
+48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0
+-124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0
+62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0
+-115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0
+72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0
+-100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0
+81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0
+-91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0
+96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0
+-81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0
+105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0
+-67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0
+115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0
+-57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0
+129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0
+-48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0
+139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0
+-38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0
+148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0
+-28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0
+153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0
+-19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0
+163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0
+-9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0
+172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0
+0.00,0.00,13.61,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0
+9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0
+-168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0
+24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0
+-148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0
+33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0
+-139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0
+43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0
+-129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0
+52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0
+-120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0
+62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0
+-110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0
+76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0
+-100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0
+86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0
+-86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0
+96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0
+-76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0
+105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0
+-67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0
+120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0
+-57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0
+129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0
+-48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0
+139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0
+-38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0
+148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0
+158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0
+-19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0
+163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0
+172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0
+4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0
+14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0
+-163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0
+24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0
+-153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0
+33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0
+-144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0
+43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0
+-134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0
+52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0
+-124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0
+62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0
+-115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0
+72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0
+-100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0
+81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0
+-91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0
+96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0
+-81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0
+105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0
+-67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0
+115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0
+-57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0
+124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0
+-48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0
+134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0
+-38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0
+144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0
+-28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0
+153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0
+-19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0
+163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0
+-14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0
+172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0
+-4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0
+0.00,0.00,3.20,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0
+9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0
+19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0
+24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0
+-148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0
+33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0
+-139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0
+43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0
+-129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0
+52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0
+-120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0
+67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0
+-110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0
+76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0
+-100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0
+86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0
+-86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0
+96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0
+-76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0
+105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0
+-67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0
+115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0
+-57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0
+129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0
+-48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0
+139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0
+-38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0
+148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0
+153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0
+-19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0
+163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0
+172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0
+4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0
+14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0
+24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0
+-153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0
+33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0
+-144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0
+43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0
+-134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0
+52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0
+-124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0
+62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0
+-110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0
+72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0
+-100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0
+81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0
+-91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0
+96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0
+-81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0
+105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0
+-72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0
+115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0
+-57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0
+124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0
+-48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0
+134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0
+-38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0
+144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0
+-28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0
+153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0
+-24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0
+163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0
+-14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0
+172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,12.01,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0
+9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0
+-158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0
+28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0
+-148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0
+38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0
+-139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0
+48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0
+-129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0
+57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0
+-120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0
+67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0
+-110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0
+76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0
+-100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0
+86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0
+-86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0
+96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0
+-76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0
+105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0
+-67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0
+115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0
+-57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0
+124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0
+-48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0
+134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0
+-38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0
+144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0
+-28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0
+153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0
+-19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0
+163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0
+172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0
+4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0
+14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0
+24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0
+-148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0
+33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0
+-139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0
+43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0
+-129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0
+52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0
+-120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0
+62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0
+-110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0
+72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0
+-100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0
+81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0
+-91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0
+96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0
+-81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0
+105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0
+-72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0
+115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0
+-62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0
+124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0
+-52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0
+134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0
+-43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0
+144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0
+-33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0
+153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0
+-24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0
+163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0
+172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0
+0.00,0.00,4.81,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0
+9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0
+19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0
+28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0
+-148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0
+38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0
+-139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0
+48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0
+-129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0
+57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0
+-120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0
+67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0
+-110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0
+76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0
+-100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0
+86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0
+-86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0
+96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0
+-76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0
+105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0
+-67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0
+115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0
+-57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0
+124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0
+-48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0
+134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0
+-38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0
+144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0
+-28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0
+153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0
+-19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0
+163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0
+-9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0
+172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0
+4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0
+14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0
+24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0
+-148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0
+33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0
+-139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0
+43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0
+-129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0
+52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0
+-120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0
+62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0
+-110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0
+72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0
+-100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0
+81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0
+-91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0
+96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0
+-81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0
+105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0
+-72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0
+115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0
+-62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0
+124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0
+-52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0
+134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0
+-43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0
+144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0
+-33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0
+153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0
+-24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0
+163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0
+172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+0.00,0.00,10.40,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0
+9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0
+19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0
+28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0
+-148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0
+38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0
+-139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0
+48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0
+-129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0
+57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0
+-120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0
+67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0
+-110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0
+76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0
+-100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0
+86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0
+-86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0
+96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0
+-76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0
+105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0
+-67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0
+115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0
+-57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0
+124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0
+-48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0
+134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0
+-38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0
+144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0
+-28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0
+153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0
+163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0
+-9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0
+172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0
+4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0
+14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0
+24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0
+33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0
+-139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0
+43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0
+-129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0
+52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0
+-120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0
+62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0
+-110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0
+72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0
+-100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0
+81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0
+-91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0
+96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0
+-81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0
+105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0
+-72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0
+115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0
+-62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0
+124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0
+-52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0
+134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0
+-43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0
+144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0
+-33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0
+153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0
+-24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0
+163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0
+172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,6.41,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0
+9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0
+19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0
+-158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0
+28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0
+-148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0
+38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0
+-139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0
+48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0
+-129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0
+57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0
+-120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0
+67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0
+-110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0
+76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0
+-100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0
+86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0
+-86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0
+96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0
+-76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0
+105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0
+-67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0
+115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0
+-57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0
+124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0
+-48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0
+134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0
+-38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0
+144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0
+-28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0
+153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0
+163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0
+172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0
+4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0
+14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0
+-158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0
+24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0
+33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0
+-139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0
+43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0
+-129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0
+52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0
+-120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0
+62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0
+-110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0
+72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0
+-100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0
+81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0
+-91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0
+96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0
+-81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0
+105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0
+-72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0
+115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0
+-62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0
+124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0
+-52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0
+134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0
+-43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0
+144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0
+-33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0
+153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0
+-24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0
+163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0
+-14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0
+172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.80,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0
+9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0
+19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0
+-158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0
+28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0
+-148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0
+38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0
+-139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0
+48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0
+-129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0
+57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0
+-120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0
+67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0
+-110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0
+76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0
+-100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0
+86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0
+-86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0
+96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0
+-76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0
+105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0
+-67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0
+115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0
+-57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0
+124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0
+-48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0
+134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0
+-38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0
+144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0
+-28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0
+153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0
+-19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0
+163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0
+172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0
+-0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0
+4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0
+-168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0
+14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0
+-158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0
+24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0
+-148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0
+33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0
+-139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0
+43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0
+-129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0
+52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0
+-120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0
+62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0
+-110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0
+72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0
+-100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0
+81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0
+-91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0
+96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0
+-81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0
+105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0
+-72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0
+115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0
+-62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0
+124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0
+-52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0
+134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0
+-43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0
+144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0
+-33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0
+153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0
+-24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0
+163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0
+-14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0
+172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.01,0.00,1.00,0.00,0.00,0
+-177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0
+-168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0
+19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0
+-158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0
+28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0
+-148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0
+38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0
+-139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0
+48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0
+-129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0
+57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0
+-120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0
+67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0
+-110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0
+76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0
+-100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0
+86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0
+-86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0
+96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0
+-76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0
+105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0
+-67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0
+115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0
+-57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0
+124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0
+-48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0
+134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0
+-38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0
+144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0
+-28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0
+153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0
+-19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0
+163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0
+172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0
+14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0
+-158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0
+24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0
+-148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0
+33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0
+-139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0
+43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0
+-129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0
+52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0
+-120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0
+62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0
+-110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0
+72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0
+-100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0
+81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0
+-91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0
+96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0
+-81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0
+105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0
+-72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0
+115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0
+-62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0
+124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0
+-52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0
+134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0
+-43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0
+144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0
+-33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0
+153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0
+-24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0
+163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0
+-4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0
+0.00,0.00,7.20,0.00,1.00,0.00,0.00,0
+-177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0
+-168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0
+19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0
+38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0
+-139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0
+48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0
+-129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0
+57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0
+-120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0
+67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0
+-110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0
+76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0
+-100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0
+86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0
+-86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0
+96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0
+-76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0
+105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0
+-67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0
+115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0
+-57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0
+124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0
+-48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0
+134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0
+-38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0
+144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0
+-19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0
+163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0
+14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0
+-148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0
+33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0
+-139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0
+43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0
+-129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0
+52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0
+-120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0
+62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0
+72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0
+-100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0
+81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0
+-91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0
+96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0
+-81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0
+105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0
+-72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0
+115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0
+-62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0
+124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0
+-52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0
+134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0
+-43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0
+144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0
+-33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0
+153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0
+0.00,0.00,9.61,0.00,1.00,0.00,0.00,0
+-177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0
+48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0
+-129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0
+57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0
+-120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0
+67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0
+-110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0
+76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0
+-100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0
+86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0
+-86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0
+96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0
+-76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0
+105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0
+-67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0
+115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0
+-57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0
+124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0
+-48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0
+134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0
+163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0
+-9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0
+-148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0
+33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0
+-139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0
+43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0
+-129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0
+52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0
+-120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0
+62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0
+72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0
+-100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0
+81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0
+-91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0
+96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0
+-81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0
+105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0
+-72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0
+115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0
+-62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0
+124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0
+-52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0
+134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0
+-43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0
+144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0
+-33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0
+153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0
+-14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0
+172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0
+0.00,0.00,5.60,0.00,1.00,0.00,0.00,0
+-177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0
+-158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0
+28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0
+-148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0
+48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0
+-129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0
+57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0
+-120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0
+67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0
+-110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0
+76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0
+-100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0
+86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0
+-86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0
+96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0
+-76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0
+105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0
+-67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0
+115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0
+-57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0
+124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0
+-48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0
+134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0
+-28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0
+153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0
+-158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0
+-148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0
+33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0
+-139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0
+43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0
+-129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0
+52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0
+-120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0
+62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0
+-110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0
+72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0
+-100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0
+81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0
+-91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0
+96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0
+-81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0
+105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0
+-72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0
+115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0
+-62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0
+124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0
+-52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0
+134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0
+-43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0
+144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0
+-33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0
+153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0
+0.00,0.00,11.21,0.00,1.00,0.00,0.00,0
+-177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0
+28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0
+-148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0
+38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0
+-139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0
+48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0
+57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0
+-120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0
+67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0
+-110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0
+76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0
+-100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0
+86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0
+-86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0
+96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0
+-76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0
+105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0
+-67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0
+115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0
+-57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0
+124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0
+-48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0
+134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0
+-38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0
+144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0
+-28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0
+153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0
+-148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0
+-139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0
+43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0
+-129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0
+52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0
+-120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0
+62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0
+-110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0
+72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0
+-100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0
+81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0
+-91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0
+96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0
+-81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0
+105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0
+-72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0
+115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0
+-62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0
+124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0
+-52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0
+134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0
+-43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0
+-33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0
+153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0
+-24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0
+163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,3.99,0.00,1.00,0.00,0.00,0
+-177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0
+19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0
+-148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0
+33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0
+43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0
+52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0
+-120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0
+62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0
+-110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0
+76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0
+-100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0
+86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0
+-86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0
+96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0
+-76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0
+105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0
+-67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0
+120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0
+-57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0
+-48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0
+139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0
+148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0
+158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0
+163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0
+43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0
+-134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0
+-124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0
+62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0
+-110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0
+72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0
+-100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0
+81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0
+-91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0
+96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0
+-81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0
+105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0
+-72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0
+115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0
+-57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0
+124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0
+-48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0
+134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0
+-38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0
+-28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0
+-24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,12.82,0.00,1.00,0.00,0.00,0
+-177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0
+-148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0
+33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0
+-129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0
+-120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0
+62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0
+-110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0
+76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0
+-100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0
+86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0
+-86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0
+96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0
+-76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0
+110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0
+-67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0
+120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0
+-57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0
+-48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0
+-163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0
+33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0
+43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0
+-134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0
+62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0
+-115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0
+72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0
+-100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0
+81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0
+-91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0
+96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0
+-81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0
+105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0
+-67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0
+115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0
+-57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0
+124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0
+-48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0
+134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0
+-38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0
+144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0
+-14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,2.39,0.00,1.00,0.00,0.00,0
+-177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0
+33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0
+-144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0
+-134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0
+62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0
+-110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0
+72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0
+-100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0
+86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0
+-86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0
+96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0
+-76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0
+110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0
+-67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0
+120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0
+-52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0
+129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0
+-19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0
+28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0
+-144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0
+38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0
+-134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0
+48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0
+57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0
+-115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0
+72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0
+-105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0
+81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0
+-91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0
+96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0
+-81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0
+105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0
+-67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0
+120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0
+-57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0
+129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0
+-48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0
+139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0
+-38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0
+158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0
+0.00,0.00,14.42,0.00,1.00,0.00,0.00,0
+-177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0
+-163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0
+24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0
+28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0
+-144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0
+38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0
+-134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0
+48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0
+62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0
+-115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0
+72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0
+86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0
+-86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0
+96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0
+-76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0
+110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0
+-62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0
+120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0
+-52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0
+134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0
+158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0
+-148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0
+38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0
+-139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0
+48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0
+-129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0
+-115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0
+67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0
+-105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0
+81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0
+-91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0
+96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0
+105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0
+-67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0
+120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0
+-52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0
+129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0
+139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0
+163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0
+0.00,0.00,0.79,0.00,1.00,0.00,0.00,0
+-177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0
+4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0
+-163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0
+19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0
+-153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0
+28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0
+-148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0
+38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0
+-139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0
+48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0
+-124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0
+57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0
+-115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0
+72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0
+86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0
+-86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0
+100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0
+-76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0
+110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0
+-62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0
+124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0
+-48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0
+134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0
+-38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0
+-28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0
+-24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0
+163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0
+168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0
+9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0
+-158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0
+-148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0
+33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0
+-139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0
+43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0
+-129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0
+-120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0
+67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0
+-105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0
+81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0
+-91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0
+96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0
+110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0
+-67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0
+120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0
+-52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0
+134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0
+144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0
+153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0
+-24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0
+-19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0
+168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA1TC48c_ISM4.csv b/scripts/testv/stvOMASA_4ISM_2MASA1TC48c_ISM4.csv
new file mode 100644
index 0000000000000000000000000000000000000000..8a14c3413ddd2dd47415bf6de3e19631f65f8f6c
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA1TC48c_ISM4.csv
@@ -0,0 +1,1500 @@
+-0.00,0.00,0.00,0.00,1.00,0.00,4.80,0
+-0.00,4.80,0.06,0.00,1.00,4.80,9.60,0
+-0.00,9.60,0.13,0.00,1.00,9.60,14.40,0
+-0.00,14.40,0.19,0.00,1.00,14.40,19.20,0
+-0.00,19.20,0.26,0.00,1.00,19.20,24.00,0
+-0.00,24.00,0.32,0.00,1.00,24.00,28.80,0
+-0.00,28.80,0.39,0.00,1.00,28.80,33.60,0
+-0.00,33.60,0.45,0.00,1.00,33.60,38.40,0
+-0.00,38.40,0.51,0.00,1.00,38.40,43.20,0
+-0.00,43.20,0.58,0.00,1.00,43.20,48.00,0
+-0.00,48.00,0.64,0.00,1.00,48.00,52.80,0
+-0.00,52.80,0.71,0.00,1.00,52.80,57.60,0
+-0.00,57.60,0.77,0.00,1.00,57.60,62.40,0
+-0.00,62.40,0.84,0.00,1.00,62.40,67.20,0
+-0.00,67.20,0.90,0.00,1.00,67.20,72.00,0
+-0.00,72.00,0.96,0.00,1.00,72.00,76.80,0
+-0.00,76.80,1.03,0.00,1.00,76.80,81.60,0
+-0.00,81.60,1.09,0.00,1.00,81.60,86.40,0
+-0.00,86.40,1.16,0.00,1.00,86.40,86.40,0
+-177.60,89.20,1.22,0.00,1.00,91.20,81.60,0
+-177.60,86.40,1.29,0.00,1.00,96.00,76.80,0
+-177.60,81.60,1.35,0.00,1.00,100.80,72.00,0
+-177.60,76.80,1.41,0.00,1.00,105.60,67.20,0
+-177.60,72.00,1.48,0.00,1.00,110.40,62.40,0
+-177.60,67.20,1.54,0.00,1.00,115.20,57.60,0
+177.60,62.40,1.61,0.00,1.00,120.00,52.80,0
+177.60,57.60,1.67,0.00,1.00,124.80,48.00,0
+177.60,52.80,1.73,0.00,1.00,129.60,43.20,0
+177.60,48.00,1.80,0.00,1.00,134.40,38.40,0
+177.60,43.20,1.86,0.00,1.00,139.20,33.60,0
+177.60,38.40,1.93,0.00,1.00,144.00,28.80,0
+177.60,33.60,1.99,0.00,1.00,148.80,24.00,0
+177.60,28.80,2.06,0.00,1.00,153.60,19.20,0
+177.60,24.00,2.12,0.00,1.00,158.40,14.40,0
+177.60,19.20,2.18,0.00,1.00,163.20,9.60,0
+177.60,14.40,2.25,0.00,1.00,168.00,4.80,0
+177.60,9.60,2.31,0.00,1.00,172.80,0.00,0
+177.60,4.80,2.38,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.44,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,2.51,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,2.57,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,2.63,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,2.70,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,2.76,0.00,1.00,-153.60,-28.80,0
+-177.60,-28.80,2.83,0.00,1.00,-148.80,-33.60,0
+-177.60,-33.60,2.89,0.00,1.00,-144.00,-38.40,0
+-177.60,-38.40,2.96,0.00,1.00,-139.20,-43.20,0
+-177.60,-48.00,3.02,0.00,1.00,-134.40,-48.00,0
+-177.60,-48.00,3.08,0.00,1.00,-129.60,-52.80,0
+-177.60,-52.80,3.15,0.00,1.00,-124.80,-57.60,0
+-177.60,-57.60,3.21,0.00,1.00,-120.00,-62.40,0
+177.60,-62.40,3.28,0.00,1.00,-115.20,-67.20,0
+177.60,-67.20,3.34,0.00,1.00,-110.40,-72.00,0
+177.60,-76.80,3.41,0.00,1.00,-105.60,-76.80,0
+177.60,-76.80,3.47,0.00,1.00,-100.80,-81.60,0
+177.60,-86.40,3.53,0.00,1.00,-96.00,-86.40,0
+177.60,-89.20,3.60,0.00,1.00,-91.20,-86.40,0
+0.00,-86.40,3.66,0.00,1.00,-86.40,-81.60,0
+0.00,-81.60,3.73,0.00,1.00,-81.60,-76.80,0
+0.00,-76.80,3.79,0.00,1.00,-76.80,-72.00,0
+0.00,-72.00,3.86,0.00,1.00,-72.00,-67.20,0
+0.00,-67.20,3.92,0.00,1.00,-67.20,-62.40,0
+0.00,-62.40,3.98,0.00,1.00,-62.40,-57.60,0
+0.00,-57.60,4.05,0.00,1.00,-57.60,-52.80,0
+0.00,-52.80,4.11,0.00,1.00,-52.80,-48.00,0
+0.00,-48.00,4.18,0.00,1.00,-48.00,-43.20,0
+0.00,-43.20,4.24,0.00,1.00,-43.20,-38.40,0
+0.00,-38.40,4.31,0.00,1.00,-38.40,-33.60,0
+0.00,-33.60,4.37,0.00,1.00,-33.60,-28.80,0
+0.00,-28.80,4.43,0.00,1.00,-28.80,-24.00,0
+0.00,-24.00,4.50,0.00,1.00,-24.00,-19.20,0
+0.00,-19.20,4.56,0.00,1.00,-19.20,-14.40,0
+0.00,-14.40,4.63,0.00,1.00,-14.40,-9.60,0
+0.00,-9.60,4.69,0.00,1.00,-9.60,-4.80,0
+0.00,-4.80,4.76,0.00,1.00,-4.80,0.00,0
+0.00,0.00,4.82,0.00,1.00,0.00,4.80,0
+0.00,4.80,4.88,0.00,1.00,4.80,9.60,0
+0.00,9.60,4.95,0.00,1.00,9.60,14.40,0
+0.00,14.40,5.01,0.00,1.00,14.40,19.20,0
+0.00,19.20,5.08,0.00,1.00,19.20,24.00,0
+0.00,24.00,5.14,0.00,1.00,24.00,28.80,0
+4.80,28.80,5.20,0.00,1.00,28.80,33.60,0
+4.80,33.60,5.27,0.00,1.00,33.60,38.40,0
+4.80,38.40,5.33,0.00,1.00,38.40,43.20,0
+4.80,43.20,5.40,0.00,1.00,43.20,48.00,0
+4.80,48.00,5.46,0.00,1.00,48.00,52.80,0
+4.80,52.80,5.53,0.00,1.00,52.80,57.60,0
+9.60,57.60,5.59,0.00,1.00,57.60,62.40,0
+9.60,62.40,5.65,0.00,1.00,62.40,67.20,0
+9.60,67.20,5.72,0.00,1.00,67.20,72.00,0
+14.40,72.00,5.78,0.00,1.00,72.00,76.80,0
+19.20,76.80,5.85,0.00,1.00,76.80,81.60,0
+28.80,81.60,5.91,0.00,1.00,81.60,86.40,0
+52.80,86.40,5.98,0.00,1.00,86.40,86.40,0
+105.60,86.40,6.04,0.00,1.00,91.20,81.60,0
+139.20,81.60,6.10,0.00,1.00,96.00,76.80,0
+158.40,76.80,6.17,0.00,1.00,100.80,72.00,0
+163.20,72.00,6.23,0.00,1.00,105.60,67.20,0
+168.00,67.20,6.30,0.00,1.00,110.40,62.40,0
+168.00,62.40,6.36,0.00,1.00,115.20,57.60,0
+172.80,57.60,6.43,0.00,1.00,120.00,52.80,0
+172.80,52.80,6.49,0.00,1.00,124.80,48.00,0
+172.80,48.00,6.55,0.00,1.00,129.60,43.20,0
+172.80,43.20,6.62,0.00,1.00,134.40,38.40,0
+177.60,38.40,6.68,0.00,1.00,139.20,33.60,0
+177.60,33.60,6.75,0.00,1.00,144.00,28.80,0
+177.60,28.80,6.81,0.00,1.00,148.80,24.00,0
+177.60,24.00,6.88,0.00,1.00,153.60,19.20,0
+177.60,19.20,6.94,0.00,1.00,158.40,14.40,0
+177.60,14.40,7.00,0.00,1.00,163.20,9.60,0
+177.60,9.60,7.07,0.00,1.00,168.00,4.80,0
+177.60,4.80,7.13,0.00,1.00,172.80,0.00,0
+177.60,0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,7.26,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,7.33,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,7.39,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,7.45,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,7.52,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,7.58,0.00,1.00,-153.60,-28.80,0
+-177.60,-28.80,7.65,0.00,1.00,-148.80,-33.60,0
+-177.60,-33.60,7.71,0.00,1.00,-144.00,-38.40,0
+-177.60,-38.40,7.78,0.00,1.00,-139.20,-43.20,0
+-172.80,-43.20,7.84,0.00,1.00,-134.40,-48.00,0
+-172.80,-48.00,7.90,0.00,1.00,-129.60,-52.80,0
+-172.80,-52.80,7.97,0.00,1.00,-124.80,-57.60,0
+-172.80,-57.60,8.03,0.00,1.00,-120.00,-62.40,0
+-168.00,-62.40,8.10,0.00,1.00,-115.20,-67.20,0
+-168.00,-67.20,8.16,0.00,1.00,-110.40,-72.00,0
+-163.20,-72.00,8.22,0.00,1.00,-105.60,-76.80,0
+-158.40,-76.80,8.29,0.00,1.00,-100.80,-81.60,0
+-139.20,-81.60,8.35,0.00,1.00,-96.00,-86.40,0
+-105.60,-86.40,8.42,0.00,1.00,-91.20,-86.40,0
+-52.80,-86.40,8.48,0.00,1.00,-86.40,-81.60,0
+-28.80,-81.60,8.55,0.00,1.00,-81.60,-76.80,0
+-19.20,-76.80,8.61,0.00,1.00,-76.80,-72.00,0
+-14.40,-72.00,8.67,0.00,1.00,-72.00,-67.20,0
+-9.60,-67.20,8.74,0.00,1.00,-67.20,-62.40,0
+-9.60,-62.40,8.80,0.00,1.00,-62.40,-57.60,0
+-9.60,-57.60,8.87,0.00,1.00,-57.60,-52.80,0
+-4.80,-52.80,8.93,0.00,1.00,-52.80,-48.00,0
+-4.80,-48.00,9.00,0.00,1.00,-48.00,-43.20,0
+-4.80,-43.20,9.06,0.00,1.00,-43.20,-38.40,0
+-4.80,-38.40,9.12,0.00,1.00,-38.40,-33.60,0
+-4.80,-33.60,9.19,0.00,1.00,-33.60,-28.80,0
+-4.80,-28.80,9.25,0.00,1.00,-28.80,-24.00,0
+-0.00,-24.00,9.32,0.00,1.00,-24.00,-19.20,0
+-0.00,-19.20,9.38,0.00,1.00,-19.20,-14.40,0
+-0.00,-14.40,9.45,0.00,1.00,-14.40,-9.60,0
+-0.00,-9.60,9.51,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,9.57,0.00,1.00,-4.80,0.00,0
+0.00,0.00,9.64,0.00,1.00,0.00,4.80,0
+0.00,4.80,9.70,0.00,1.00,4.80,9.60,0
+0.00,9.60,9.77,0.00,1.00,9.60,14.40,0
+4.80,14.40,9.83,0.00,1.00,14.40,19.20,0
+4.80,19.20,9.90,0.00,1.00,19.20,24.00,0
+4.80,24.00,9.96,0.00,1.00,24.00,28.80,0
+4.80,28.80,10.02,0.00,1.00,28.80,33.60,0
+4.80,33.60,10.09,0.00,1.00,33.60,38.40,0
+9.60,38.40,10.15,0.00,1.00,38.40,43.20,0
+9.60,43.20,10.22,0.00,1.00,43.20,48.00,0
+9.60,48.00,10.28,0.00,1.00,48.00,52.80,0
+14.40,52.80,10.35,0.00,1.00,52.80,57.60,0
+14.40,57.60,10.41,0.00,1.00,57.60,62.40,0
+19.20,62.40,10.47,0.00,1.00,62.40,67.20,0
+24.00,67.20,10.54,0.00,1.00,67.20,72.00,0
+28.80,72.00,10.60,0.00,1.00,72.00,72.00,0
+33.60,72.00,10.67,0.00,1.00,76.80,76.80,0
+48.00,76.80,10.73,0.00,1.00,81.60,81.60,0
+67.20,81.60,10.80,0.00,1.00,86.40,81.60,0
+96.00,81.60,10.86,0.00,1.00,91.20,81.60,0
+120.00,76.80,10.92,0.00,1.00,96.00,76.80,0
+139.20,76.80,10.99,0.00,1.00,100.80,72.00,0
+148.80,72.00,11.05,0.00,1.00,105.60,67.20,0
+153.60,67.20,11.12,0.00,1.00,110.40,62.40,0
+158.40,62.40,11.18,0.00,1.00,115.20,57.60,0
+163.20,57.60,11.24,0.00,1.00,120.00,52.80,0
+168.00,52.80,11.31,0.00,1.00,124.80,48.00,0
+168.00,48.00,11.37,0.00,1.00,129.60,43.20,0
+168.00,43.20,11.44,0.00,1.00,134.40,38.40,0
+172.80,38.40,11.50,0.00,1.00,139.20,33.60,0
+172.80,33.60,11.57,0.00,1.00,144.00,28.80,0
+172.80,28.80,11.63,0.00,1.00,148.80,24.00,0
+177.60,24.00,11.69,0.00,1.00,153.60,19.20,0
+177.60,19.20,11.76,0.00,1.00,158.40,14.40,0
+177.60,14.40,11.82,0.00,1.00,163.20,9.60,0
+177.60,9.60,11.89,0.00,1.00,168.00,4.80,0
+177.60,4.80,11.95,0.00,1.00,172.80,0.00,0
+177.60,0.00,12.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,12.08,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,12.14,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,12.21,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,12.27,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,12.34,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,12.40,0.00,1.00,-153.60,-28.80,0
+-172.80,-28.80,12.47,0.00,1.00,-148.80,-33.60,0
+-172.80,-33.60,12.53,0.00,1.00,-144.00,-38.40,0
+-172.80,-38.40,12.59,0.00,1.00,-139.20,-43.20,0
+-168.00,-43.20,12.66,0.00,1.00,-134.40,-48.00,0
+-168.00,-48.00,12.72,0.00,1.00,-129.60,-52.80,0
+-168.00,-52.80,12.79,0.00,1.00,-124.80,-57.60,0
+-163.20,-57.60,12.85,0.00,1.00,-120.00,-62.40,0
+-158.40,-62.40,12.92,0.00,1.00,-115.20,-67.20,0
+-153.60,-67.20,12.98,0.00,1.00,-110.40,-72.00,0
+-148.80,-72.00,13.04,0.00,1.00,-105.60,-76.80,0
+-139.20,-76.80,13.11,0.00,1.00,-100.80,-81.60,0
+-120.00,-76.80,13.17,0.00,1.00,-96.00,-81.60,0
+-96.00,-81.60,13.24,0.00,1.00,-91.20,-81.60,0
+-67.20,-81.60,13.30,0.00,1.00,-86.40,-76.80,0
+-48.00,-76.80,13.37,0.00,1.00,-81.60,-72.00,0
+-33.60,-72.00,13.43,0.00,1.00,-76.80,-72.00,0
+-28.80,-72.00,13.49,0.00,1.00,-72.00,-67.20,0
+-24.00,-67.20,13.56,0.00,1.00,-67.20,-62.40,0
+-19.20,-62.40,13.62,0.00,1.00,-62.40,-57.60,0
+-14.40,-57.60,13.69,0.00,1.00,-57.60,-52.80,0
+-14.40,-52.80,13.75,0.00,1.00,-52.80,-48.00,0
+-9.60,-48.00,13.82,0.00,1.00,-48.00,-43.20,0
+-9.60,-43.20,13.88,0.00,1.00,-43.20,-38.40,0
+-9.60,-38.40,13.94,0.00,1.00,-38.40,-33.60,0
+-4.80,-33.60,14.01,0.00,1.00,-33.60,-28.80,0
+-4.80,-28.80,14.07,0.00,1.00,-28.80,-24.00,0
+-4.80,-24.00,14.14,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,14.20,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,14.27,0.00,1.00,-14.40,-9.60,0
+-0.00,-9.60,14.33,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,14.39,0.00,1.00,-4.80,0.00,0
+0.00,0.00,14.46,0.00,1.00,0.00,4.80,0
+0.00,4.80,14.52,0.00,1.00,4.80,9.60,0
+4.80,9.60,14.59,0.00,1.00,9.60,14.40,0
+4.80,14.40,14.65,0.00,1.00,14.40,19.20,0
+4.80,19.20,14.71,0.00,1.00,19.20,24.00,0
+4.80,24.00,14.78,0.00,1.00,24.00,28.80,0
+9.60,28.80,14.84,0.00,1.00,28.80,33.60,0
+9.60,33.60,14.91,0.00,1.00,33.60,38.40,0
+9.60,38.40,14.97,0.00,1.00,38.40,43.20,0
+14.40,43.20,15.04,0.00,1.00,43.20,48.00,0
+14.40,48.00,15.10,0.00,1.00,48.00,52.80,0
+19.20,52.80,15.16,0.00,1.00,52.80,57.60,0
+19.20,52.80,15.23,0.00,1.00,57.60,57.60,0
+24.00,57.60,15.29,0.00,1.00,62.40,62.40,0
+28.80,62.40,15.36,0.00,1.00,67.20,67.20,0
+38.40,67.20,15.42,0.00,1.00,72.00,72.00,0
+48.00,72.00,15.49,0.00,1.00,76.80,72.00,0
+57.60,72.00,15.55,0.00,1.00,81.60,76.80,0
+76.80,76.80,15.61,0.00,1.00,86.40,76.80,0
+96.00,76.80,15.68,0.00,1.00,91.20,76.80,0
+115.20,76.80,15.74,0.00,1.00,96.00,72.00,0
+129.60,72.00,15.81,0.00,1.00,100.80,72.00,0
+139.20,67.20,15.87,0.00,1.00,105.60,67.20,0
+144.00,67.20,15.94,0.00,1.00,110.40,62.40,0
+153.60,62.40,16.00,0.00,1.00,115.20,57.60,0
+158.40,57.60,16.00,0.00,1.00,120.00,52.80,0
+158.40,52.80,15.94,0.00,1.00,124.80,48.00,0
+163.20,48.00,15.87,0.00,1.00,129.60,43.20,0
+168.00,43.20,15.81,0.00,1.00,134.40,38.40,0
+168.00,38.40,15.74,0.00,1.00,139.20,33.60,0
+168.00,33.60,15.68,0.00,1.00,144.00,28.80,0
+172.80,28.80,15.61,0.00,1.00,148.80,24.00,0
+172.80,24.00,15.55,0.00,1.00,153.60,19.20,0
+172.80,19.20,15.49,0.00,1.00,158.40,14.40,0
+177.60,14.40,15.42,0.00,1.00,163.20,9.60,0
+177.60,9.60,15.36,0.00,1.00,168.00,4.80,0
+177.60,4.80,15.29,0.00,1.00,172.80,0.00,0
+177.60,0.00,15.23,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,15.16,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,15.10,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,15.04,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,14.97,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,14.91,0.00,1.00,-158.40,-24.00,0
+-172.80,-24.00,14.84,0.00,1.00,-153.60,-28.80,0
+-172.80,-28.80,14.78,0.00,1.00,-148.80,-33.60,0
+-168.00,-33.60,14.71,0.00,1.00,-144.00,-38.40,0
+-168.00,-38.40,14.65,0.00,1.00,-139.20,-43.20,0
+-168.00,-43.20,14.59,0.00,1.00,-134.40,-48.00,0
+-163.20,-48.00,14.52,0.00,1.00,-129.60,-52.80,0
+-158.40,-52.80,14.46,0.00,1.00,-124.80,-57.60,0
+-158.40,-57.60,14.39,0.00,1.00,-120.00,-62.40,0
+-153.60,-62.40,14.33,0.00,1.00,-115.20,-67.20,0
+-144.00,-67.20,14.27,0.00,1.00,-110.40,-72.00,0
+-139.20,-67.20,14.20,0.00,1.00,-105.60,-72.00,0
+-129.60,-72.00,14.14,0.00,1.00,-100.80,-76.80,0
+-115.20,-76.80,14.07,0.00,1.00,-96.00,-76.80,0
+-96.00,-76.80,14.01,0.00,1.00,-91.20,-76.80,0
+-76.80,-76.80,13.94,0.00,1.00,-86.40,-72.00,0
+-57.60,-72.00,13.88,0.00,1.00,-81.60,-72.00,0
+-48.00,-72.00,13.82,0.00,1.00,-76.80,-67.20,0
+-38.40,-67.20,13.75,0.00,1.00,-72.00,-62.40,0
+-28.80,-62.40,13.69,0.00,1.00,-67.20,-57.60,0
+-24.00,-57.60,13.62,0.00,1.00,-62.40,-57.60,0
+-19.20,-52.80,13.56,0.00,1.00,-57.60,-52.80,0
+-19.20,-52.80,13.49,0.00,1.00,-52.80,-48.00,0
+-14.40,-48.00,13.43,0.00,1.00,-48.00,-43.20,0
+-14.40,-43.20,13.37,0.00,1.00,-43.20,-38.40,0
+-9.60,-38.40,13.30,0.00,1.00,-38.40,-33.60,0
+-9.60,-33.60,13.24,0.00,1.00,-33.60,-28.80,0
+-9.60,-28.80,13.17,0.00,1.00,-28.80,-24.00,0
+-4.80,-24.00,13.11,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,13.04,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,12.98,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,12.92,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,12.85,0.00,1.00,-4.80,0.00,0
+0.00,0.00,12.79,0.00,1.00,0.00,4.80,0
+0.00,4.80,12.72,0.00,1.00,4.80,9.60,0
+4.80,9.60,12.66,0.00,1.00,9.60,14.40,0
+4.80,14.40,12.59,0.00,1.00,14.40,19.20,0
+4.80,19.20,12.53,0.00,1.00,19.20,24.00,0
+9.60,24.00,12.47,0.00,1.00,24.00,28.80,0
+9.60,28.80,12.40,0.00,1.00,28.80,33.60,0
+14.40,33.60,12.34,0.00,1.00,33.60,38.40,0
+14.40,33.60,12.27,0.00,1.00,38.40,38.40,0
+19.20,38.40,12.21,0.00,1.00,43.20,43.20,0
+19.20,43.20,12.14,0.00,1.00,48.00,48.00,0
+24.00,48.00,12.08,0.00,1.00,52.80,52.80,0
+28.80,52.80,12.02,0.00,1.00,57.60,57.60,0
+33.60,57.60,11.95,0.00,1.00,62.40,62.40,0
+38.40,62.40,11.89,0.00,1.00,67.20,62.40,0
+43.20,62.40,11.82,0.00,1.00,72.00,67.20,0
+52.80,67.20,11.76,0.00,1.00,76.80,72.00,0
+67.20,67.20,11.69,0.00,1.00,81.60,72.00,0
+76.80,72.00,11.63,0.00,1.00,86.40,72.00,0
+96.00,72.00,11.57,0.00,1.00,91.20,72.00,0
+105.60,72.00,11.50,0.00,1.00,96.00,67.20,0
+120.00,67.20,11.44,0.00,1.00,100.80,67.20,0
+129.60,67.20,11.37,0.00,1.00,105.60,62.40,0
+139.20,62.40,11.31,0.00,1.00,110.40,57.60,0
+144.00,57.60,11.24,0.00,1.00,115.20,57.60,0
+148.80,52.80,11.18,0.00,1.00,120.00,52.80,0
+153.60,52.80,11.12,0.00,1.00,124.80,48.00,0
+158.40,48.00,11.05,0.00,1.00,129.60,43.20,0
+163.20,43.20,10.99,0.00,1.00,134.40,38.40,0
+163.20,38.40,10.92,0.00,1.00,139.20,33.60,0
+168.00,33.60,10.86,0.00,1.00,144.00,28.80,0
+168.00,28.80,10.80,0.00,1.00,148.80,24.00,0
+172.80,24.00,10.73,0.00,1.00,153.60,19.20,0
+172.80,19.20,10.67,0.00,1.00,158.40,14.40,0
+172.80,14.40,10.60,0.00,1.00,163.20,9.60,0
+177.60,9.60,10.54,0.00,1.00,168.00,4.80,0
+177.60,4.80,10.47,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.35,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,10.28,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,10.22,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,10.15,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,10.09,0.00,1.00,-158.40,-24.00,0
+-172.80,-24.00,10.02,0.00,1.00,-153.60,-28.80,0
+-168.00,-28.80,9.96,0.00,1.00,-148.80,-33.60,0
+-168.00,-33.60,9.90,0.00,1.00,-144.00,-38.40,0
+-163.20,-38.40,9.83,0.00,1.00,-139.20,-43.20,0
+-163.20,-43.20,9.77,0.00,1.00,-134.40,-48.00,0
+-158.40,-48.00,9.70,0.00,1.00,-129.60,-52.80,0
+-153.60,-52.80,9.64,0.00,1.00,-124.80,-57.60,0
+-148.80,-52.80,9.57,0.00,1.00,-120.00,-57.60,0
+-144.00,-57.60,9.51,0.00,1.00,-115.20,-62.40,0
+-139.20,-62.40,9.45,0.00,1.00,-110.40,-67.20,0
+-129.60,-67.20,9.38,0.00,1.00,-105.60,-67.20,0
+-120.00,-67.20,9.32,0.00,1.00,-100.80,-72.00,0
+-105.60,-72.00,9.25,0.00,1.00,-96.00,-72.00,0
+-96.00,-72.00,9.19,0.00,1.00,-91.20,-72.00,0
+-76.80,-72.00,9.12,0.00,1.00,-86.40,-72.00,0
+-67.20,-67.20,9.06,0.00,1.00,-81.60,-67.20,0
+-52.80,-67.20,9.00,0.00,1.00,-76.80,-62.40,0
+-43.20,-62.40,8.93,0.00,1.00,-72.00,-62.40,0
+-38.40,-62.40,8.87,0.00,1.00,-67.20,-57.60,0
+-33.60,-57.60,8.80,0.00,1.00,-62.40,-52.80,0
+-28.80,-52.80,8.74,0.00,1.00,-57.60,-48.00,0
+-24.00,-48.00,8.67,0.00,1.00,-52.80,-43.20,0
+-19.20,-43.20,8.61,0.00,1.00,-48.00,-38.40,0
+-19.20,-38.40,8.55,0.00,1.00,-43.20,-38.40,0
+-14.40,-33.60,8.48,0.00,1.00,-38.40,-33.60,0
+-14.40,-33.60,8.42,0.00,1.00,-33.60,-28.80,0
+-9.60,-28.80,8.35,0.00,1.00,-28.80,-24.00,0
+-9.60,-24.00,8.29,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,8.22,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,8.16,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,8.10,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,8.03,0.00,1.00,-4.80,0.00,0
+0.00,0.00,7.97,0.00,1.00,0.00,4.80,0
+0.00,4.80,7.90,0.00,1.00,4.80,9.60,0
+4.80,9.60,7.84,0.00,1.00,9.60,14.40,0
+4.80,14.40,7.78,0.00,1.00,14.40,19.20,0
+9.60,19.20,7.71,0.00,1.00,19.20,24.00,0
+9.60,24.00,7.65,0.00,1.00,24.00,24.00,0
+14.40,24.00,7.58,0.00,1.00,28.80,28.80,0
+14.40,28.80,7.52,0.00,1.00,33.60,33.60,0
+19.20,33.60,7.45,0.00,1.00,33.60,38.40,0
+19.20,38.40,7.39,0.00,1.00,38.40,43.20,0
+24.00,43.20,7.33,0.00,1.00,43.20,48.00,0
+28.80,48.00,7.26,0.00,1.00,48.00,52.80,0
+33.60,52.80,7.20,0.00,1.00,57.60,52.80,0
+38.40,52.80,7.13,0.00,1.00,62.40,57.60,0
+43.20,57.60,7.07,0.00,1.00,67.20,62.40,0
+52.80,62.40,7.00,0.00,1.00,72.00,62.40,0
+62.40,62.40,6.94,0.00,1.00,76.80,67.20,0
+72.00,62.40,6.88,0.00,1.00,81.60,67.20,0
+81.60,67.20,6.81,0.00,1.00,86.40,67.20,0
+91.20,67.20,6.75,0.00,1.00,91.20,67.20,0
+105.60,67.20,6.68,0.00,1.00,96.00,67.20,0
+115.20,62.40,6.62,0.00,1.00,100.80,62.40,0
+124.80,62.40,6.55,0.00,1.00,105.60,57.60,0
+134.40,57.60,6.49,0.00,1.00,110.40,57.60,0
+139.20,57.60,6.43,0.00,1.00,115.20,52.80,0
+144.00,52.80,6.36,0.00,1.00,120.00,48.00,0
+148.80,48.00,6.30,0.00,1.00,129.60,43.20,0
+153.60,43.20,6.23,0.00,1.00,134.40,43.20,0
+158.40,38.40,6.17,0.00,1.00,139.20,38.40,0
+158.40,38.40,6.10,0.00,1.00,144.00,33.60,0
+163.20,33.60,6.04,0.00,1.00,148.80,28.80,0
+168.00,28.80,5.98,0.00,1.00,148.80,24.00,0
+168.00,24.00,5.91,0.00,1.00,153.60,19.20,0
+172.80,19.20,5.85,0.00,1.00,158.40,14.40,0
+172.80,14.40,5.78,0.00,1.00,163.20,9.60,0
+172.80,9.60,5.72,0.00,1.00,168.00,4.80,0
+177.60,4.80,5.65,0.00,1.00,172.80,0.00,0
+177.60,0.00,5.59,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.53,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,5.46,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,5.40,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,5.33,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,5.27,0.00,1.00,-158.40,-24.00,0
+-168.00,-24.00,5.20,0.00,1.00,-153.60,-28.80,0
+-168.00,-28.80,5.14,0.00,1.00,-148.80,-33.60,0
+-163.20,-33.60,5.08,0.00,1.00,-148.80,-38.40,0
+-158.40,-38.40,5.01,0.00,1.00,-144.00,-43.20,0
+-158.40,-38.40,4.95,0.00,1.00,-139.20,-43.20,0
+-153.60,-43.20,4.88,0.00,1.00,-134.40,-48.00,0
+-148.80,-48.00,4.82,0.00,1.00,-129.60,-52.80,0
+-144.00,-52.80,4.76,0.00,1.00,-120.00,-57.60,0
+-139.20,-57.60,4.69,0.00,1.00,-115.20,-57.60,0
+-134.40,-57.60,4.63,0.00,1.00,-110.40,-62.40,0
+-124.80,-62.40,4.56,0.00,1.00,-105.60,-67.20,0
+-115.20,-62.40,4.50,0.00,1.00,-100.80,-67.20,0
+-105.60,-67.20,4.43,0.00,1.00,-96.00,-67.20,0
+-91.20,-67.20,4.37,0.00,1.00,-91.20,-67.20,0
+-81.60,-67.20,4.31,0.00,1.00,-86.40,-67.20,0
+-72.00,-62.40,4.24,0.00,1.00,-81.60,-62.40,0
+-62.40,-62.40,4.18,0.00,1.00,-76.80,-62.40,0
+-52.80,-62.40,4.11,0.00,1.00,-72.00,-57.60,0
+-43.20,-57.60,4.05,0.00,1.00,-67.20,-52.80,0
+-38.40,-52.80,3.98,0.00,1.00,-62.40,-52.80,0
+-33.60,-52.80,3.92,0.00,1.00,-57.60,-48.00,0
+-28.80,-48.00,3.86,0.00,1.00,-48.00,-43.20,0
+-24.00,-43.20,3.79,0.00,1.00,-43.20,-38.40,0
+-19.20,-38.40,3.73,0.00,1.00,-38.40,-33.60,0
+-19.20,-33.60,3.66,0.00,1.00,-33.60,-28.80,0
+-14.40,-28.80,3.60,0.00,1.00,-33.60,-24.00,0
+-14.40,-24.00,3.53,0.00,1.00,-28.80,-24.00,0
+-9.60,-24.00,3.47,0.00,1.00,-24.00,-19.20,0
+-9.60,-19.20,3.41,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,3.34,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,3.28,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,3.21,0.00,1.00,-4.80,0.00,0
+0.00,0.00,3.15,0.00,1.00,0.00,4.80,0
+0.00,4.80,3.08,0.00,1.00,4.80,9.60,0
+4.80,9.60,3.02,0.00,1.00,9.60,14.40,0
+4.80,14.40,2.96,0.00,1.00,14.40,19.20,0
+9.60,14.40,2.89,0.00,1.00,19.20,19.20,0
+14.40,19.20,2.83,0.00,1.00,19.20,24.00,0
+14.40,24.00,2.76,0.00,1.00,24.00,28.80,0
+19.20,28.80,2.70,0.00,1.00,28.80,33.60,0
+19.20,33.60,2.63,0.00,1.00,33.60,38.40,0
+24.00,38.40,2.57,0.00,1.00,38.40,43.20,0
+28.80,38.40,2.51,0.00,1.00,43.20,43.20,0
+33.60,43.20,2.44,0.00,1.00,48.00,48.00,0
+38.40,48.00,2.38,0.00,1.00,52.80,52.80,0
+43.20,52.80,2.31,0.00,1.00,57.60,52.80,0
+48.00,52.80,2.25,0.00,1.00,62.40,57.60,0
+57.60,57.60,2.18,0.00,1.00,72.00,57.60,0
+62.40,57.60,2.12,0.00,1.00,76.80,62.40,0
+72.00,62.40,2.06,0.00,1.00,81.60,62.40,0
+81.60,62.40,1.99,0.00,1.00,86.40,62.40,0
+91.20,62.40,1.93,0.00,1.00,91.20,62.40,0
+100.80,62.40,1.86,0.00,1.00,96.00,62.40,0
+110.40,57.60,1.80,0.00,1.00,100.80,57.60,0
+120.00,57.60,1.73,0.00,1.00,105.60,57.60,0
+129.60,57.60,1.67,0.00,1.00,115.20,52.80,0
+134.40,52.80,1.61,0.00,1.00,120.00,48.00,0
+139.20,48.00,1.54,0.00,1.00,124.80,48.00,0
+144.00,48.00,1.48,0.00,1.00,129.60,43.20,0
+148.80,43.20,1.41,0.00,1.00,134.40,38.40,0
+153.60,38.40,1.35,0.00,1.00,139.20,33.60,0
+158.40,33.60,1.29,0.00,1.00,144.00,33.60,0
+158.40,28.80,1.22,0.00,1.00,148.80,28.80,0
+163.20,28.80,1.16,0.00,1.00,153.60,24.00,0
+168.00,24.00,1.09,0.00,1.00,158.40,19.20,0
+168.00,19.20,1.03,0.00,1.00,163.20,14.40,0
+172.80,14.40,0.96,0.00,1.00,163.20,9.60,0
+172.80,9.60,0.90,0.00,1.00,168.00,4.80,0
+177.60,4.80,0.84,0.00,1.00,172.80,0.00,0
+177.60,0.00,0.77,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,0.71,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,0.64,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,0.58,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,0.51,0.00,1.00,-163.20,-19.20,0
+-168.00,-19.20,0.45,0.00,1.00,-163.20,-24.00,0
+-168.00,-24.00,0.39,0.00,1.00,-158.40,-28.80,0
+-163.20,-28.80,0.32,0.00,1.00,-153.60,-33.60,0
+-158.40,-28.80,0.26,0.00,1.00,-148.80,-33.60,0
+-158.40,-33.60,0.19,0.00,1.00,-144.00,-38.40,0
+-153.60,-38.40,0.13,0.00,1.00,-139.20,-43.20,0
+-148.80,-43.20,0.06,0.00,1.00,-134.40,-48.00,0
+-144.00,-48.00,0.00,0.00,1.00,-129.60,-48.00,0
+-139.20,-48.00,0.00,0.00,1.00,-124.80,-52.80,0
+-134.40,-52.80,0.16,0.00,1.00,-120.00,-57.60,0
+-129.60,-57.60,0.32,0.00,1.00,-115.20,-57.60,0
+-120.00,-57.60,0.48,0.00,1.00,-105.60,-62.40,0
+-110.40,-57.60,0.65,0.00,1.00,-100.80,-62.40,0
+-100.80,-62.40,0.81,0.00,1.00,-96.00,-62.40,0
+-91.20,-62.40,0.97,0.00,1.00,-91.20,-62.40,0
+-81.60,-62.40,1.13,0.00,1.00,-86.40,-62.40,0
+-72.00,-62.40,1.29,0.00,1.00,-81.60,-57.60,0
+-62.40,-57.60,1.45,0.00,1.00,-76.80,-57.60,0
+-57.60,-57.60,1.62,0.00,1.00,-72.00,-52.80,0
+-48.00,-52.80,1.78,0.00,1.00,-62.40,-52.80,0
+-43.20,-52.80,1.94,0.00,1.00,-57.60,-48.00,0
+-38.40,-48.00,2.10,0.00,1.00,-52.80,-43.20,0
+-33.60,-43.20,2.26,0.00,1.00,-48.00,-43.20,0
+-28.80,-38.40,2.42,0.00,1.00,-43.20,-38.40,0
+-24.00,-38.40,2.59,0.00,1.00,-38.40,-33.60,0
+-19.20,-33.60,2.75,0.00,1.00,-33.60,-28.80,0
+-19.20,-28.80,2.91,0.00,1.00,-28.80,-24.00,0
+-14.40,-24.00,3.07,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,3.23,0.00,1.00,-19.20,-19.20,0
+-9.60,-14.40,3.39,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,3.56,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,3.72,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,3.88,0.00,1.00,-4.80,0.00,0
+0.00,0.00,4.04,0.00,1.00,0.00,4.80,0
+4.80,4.80,4.20,0.00,1.00,4.80,9.60,0
+4.80,9.60,4.36,0.00,1.00,9.60,14.40,0
+9.60,9.60,4.53,0.00,1.00,14.40,14.40,0
+9.60,14.40,4.69,0.00,1.00,14.40,19.20,0
+14.40,19.20,4.85,0.00,1.00,19.20,24.00,0
+19.20,24.00,5.01,0.00,1.00,24.00,28.80,0
+19.20,28.80,5.17,0.00,1.00,28.80,33.60,0
+24.00,28.80,5.33,0.00,1.00,33.60,33.60,0
+28.80,33.60,5.49,0.00,1.00,38.40,38.40,0
+33.60,38.40,5.66,0.00,1.00,43.20,43.20,0
+38.40,43.20,5.82,0.00,1.00,48.00,43.20,0
+43.20,43.20,5.98,0.00,1.00,52.80,48.00,0
+48.00,48.00,6.14,0.00,1.00,57.60,52.80,0
+52.80,48.00,6.30,0.00,1.00,62.40,52.80,0
+57.60,52.80,6.46,0.00,1.00,67.20,57.60,0
+67.20,52.80,6.63,0.00,1.00,72.00,57.60,0
+76.80,57.60,6.79,0.00,1.00,81.60,57.60,0
+81.60,57.60,6.95,0.00,1.00,86.40,57.60,0
+91.20,57.60,7.11,0.00,1.00,91.20,57.60,0
+100.80,57.60,7.27,0.00,1.00,96.00,57.60,0
+110.40,52.80,7.43,0.00,1.00,100.80,52.80,0
+115.20,52.80,7.60,0.00,1.00,110.40,52.80,0
+124.80,52.80,7.76,0.00,1.00,115.20,48.00,0
+129.60,48.00,7.92,0.00,1.00,120.00,48.00,0
+134.40,48.00,8.08,0.00,1.00,124.80,43.20,0
+139.20,43.20,8.24,0.00,1.00,129.60,38.40,0
+144.00,38.40,8.40,0.00,1.00,134.40,38.40,0
+148.80,38.40,8.57,0.00,1.00,139.20,33.60,0
+153.60,33.60,8.73,0.00,1.00,144.00,28.80,0
+158.40,28.80,8.89,0.00,1.00,148.80,24.00,0
+163.20,24.00,9.05,0.00,1.00,153.60,24.00,0
+163.20,24.00,9.21,0.00,1.00,158.40,19.20,0
+168.00,19.20,9.37,0.00,1.00,163.20,14.40,0
+172.80,14.40,9.54,0.00,1.00,168.00,9.60,0
+172.80,9.60,9.70,0.00,1.00,168.00,4.80,0
+177.60,4.80,9.86,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.18,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,10.34,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,10.51,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,10.67,0.00,1.00,-168.00,-19.20,0
+-168.00,-19.20,10.83,0.00,1.00,-163.20,-24.00,0
+-163.20,-24.00,10.99,0.00,1.00,-158.40,-24.00,0
+-163.20,-24.00,11.15,0.00,1.00,-153.60,-28.80,0
+-158.40,-28.80,11.31,0.00,1.00,-148.80,-33.60,0
+-153.60,-33.60,11.47,0.00,1.00,-144.00,-38.40,0
+-148.80,-38.40,11.64,0.00,1.00,-139.20,-38.40,0
+-144.00,-38.40,11.80,0.00,1.00,-134.40,-43.20,0
+-139.20,-43.20,11.96,0.00,1.00,-129.60,-48.00,0
+-134.40,-48.00,12.12,0.00,1.00,-124.80,-48.00,0
+-129.60,-48.00,12.28,0.00,1.00,-120.00,-52.80,0
+-124.80,-52.80,12.44,0.00,1.00,-115.20,-52.80,0
+-115.20,-52.80,12.61,0.00,1.00,-110.40,-57.60,0
+-110.40,-52.80,12.77,0.00,1.00,-100.80,-57.60,0
+-100.80,-57.60,12.93,0.00,1.00,-96.00,-57.60,0
+-91.20,-57.60,13.09,0.00,1.00,-91.20,-57.60,0
+-81.60,-57.60,13.25,0.00,1.00,-86.40,-57.60,0
+-76.80,-57.60,13.41,0.00,1.00,-81.60,-57.60,0
+-67.20,-52.80,13.58,0.00,1.00,-72.00,-52.80,0
+-57.60,-52.80,13.74,0.00,1.00,-67.20,-52.80,0
+-52.80,-48.00,13.90,0.00,1.00,-62.40,-48.00,0
+-48.00,-48.00,14.06,0.00,1.00,-57.60,-43.20,0
+-43.20,-43.20,14.22,0.00,1.00,-52.80,-43.20,0
+-38.40,-43.20,14.38,0.00,1.00,-48.00,-38.40,0
+-33.60,-38.40,14.55,0.00,1.00,-43.20,-33.60,0
+-28.80,-33.60,14.71,0.00,1.00,-38.40,-33.60,0
+-24.00,-28.80,14.87,0.00,1.00,-33.60,-28.80,0
+-19.20,-28.80,15.03,0.00,1.00,-28.80,-24.00,0
+-19.20,-24.00,15.19,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,15.35,0.00,1.00,-19.20,-14.40,0
+-9.60,-14.40,15.52,0.00,1.00,-14.40,-14.40,0
+-9.60,-9.60,15.68,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,15.84,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,16.00,0.00,1.00,-4.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,0.00,4.80,0
+4.80,4.80,15.84,0.00,1.00,4.80,9.60,0
+4.80,9.60,15.68,0.00,1.00,9.60,9.60,0
+9.60,9.60,15.52,0.00,1.00,9.60,14.40,0
+14.40,14.40,15.35,0.00,1.00,14.40,19.20,0
+14.40,19.20,15.19,0.00,1.00,19.20,24.00,0
+19.20,24.00,15.03,0.00,1.00,24.00,24.00,0
+24.00,24.00,14.87,0.00,1.00,28.80,28.80,0
+24.00,28.80,14.71,0.00,1.00,33.60,33.60,0
+28.80,33.60,14.55,0.00,1.00,38.40,38.40,0
+33.60,33.60,14.38,0.00,1.00,43.20,38.40,0
+38.40,38.40,14.22,0.00,1.00,48.00,43.20,0
+43.20,43.20,14.06,0.00,1.00,52.80,43.20,0
+48.00,43.20,13.90,0.00,1.00,57.60,48.00,0
+57.60,48.00,13.74,0.00,1.00,62.40,48.00,0
+62.40,48.00,13.58,0.00,1.00,67.20,52.80,0
+67.20,48.00,13.41,0.00,1.00,72.00,52.80,0
+76.80,52.80,13.25,0.00,1.00,81.60,52.80,0
+86.40,52.80,13.09,0.00,1.00,86.40,52.80,0
+91.20,52.80,12.93,0.00,1.00,91.20,52.80,0
+100.80,52.80,12.77,0.00,1.00,96.00,52.80,0
+105.60,48.00,12.61,0.00,1.00,105.60,48.00,0
+115.20,48.00,12.44,0.00,1.00,110.40,48.00,0
+120.00,48.00,12.28,0.00,1.00,115.20,48.00,0
+124.80,43.20,12.12,0.00,1.00,120.00,43.20,0
+134.40,43.20,11.96,0.00,1.00,124.80,43.20,0
+139.20,38.40,11.80,0.00,1.00,129.60,38.40,0
+144.00,38.40,11.64,0.00,1.00,134.40,33.60,0
+148.80,33.60,11.47,0.00,1.00,139.20,33.60,0
+153.60,28.80,11.31,0.00,1.00,144.00,28.80,0
+153.60,28.80,11.15,0.00,1.00,148.80,24.00,0
+158.40,24.00,10.99,0.00,1.00,153.60,19.20,0
+163.20,19.20,10.83,0.00,1.00,158.40,19.20,0
+168.00,14.40,10.67,0.00,1.00,163.20,14.40,0
+168.00,14.40,10.51,0.00,1.00,168.00,9.60,0
+172.80,9.60,10.34,0.00,1.00,172.80,4.80,0
+177.60,4.80,10.18,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,9.86,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,9.70,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,9.54,0.00,1.00,-172.80,-14.40,0
+-168.00,-14.40,9.37,0.00,1.00,-168.00,-19.20,0
+-168.00,-14.40,9.21,0.00,1.00,-163.20,-19.20,0
+-163.20,-19.20,9.05,0.00,1.00,-158.40,-24.00,0
+-158.40,-24.00,8.89,0.00,1.00,-153.60,-28.80,0
+-153.60,-28.80,8.73,0.00,1.00,-148.80,-33.60,0
+-153.60,-28.80,8.57,0.00,1.00,-144.00,-33.60,0
+-148.80,-33.60,8.40,0.00,1.00,-139.20,-38.40,0
+-144.00,-38.40,8.24,0.00,1.00,-134.40,-43.20,0
+-139.20,-38.40,8.08,0.00,1.00,-129.60,-43.20,0
+-134.40,-43.20,7.92,0.00,1.00,-124.80,-48.00,0
+-124.80,-43.20,7.76,0.00,1.00,-120.00,-48.00,0
+-120.00,-48.00,7.60,0.00,1.00,-115.20,-48.00,0
+-115.20,-48.00,7.43,0.00,1.00,-110.40,-52.80,0
+-105.60,-48.00,7.27,0.00,1.00,-105.60,-52.80,0
+-100.80,-52.80,7.11,0.00,1.00,-96.00,-52.80,0
+-91.20,-52.80,6.95,0.00,1.00,-91.20,-52.80,0
+-86.40,-52.80,6.79,0.00,1.00,-86.40,-52.80,0
+-76.80,-52.80,6.63,0.00,1.00,-81.60,-52.80,0
+-67.20,-48.00,6.46,0.00,1.00,-72.00,-48.00,0
+-62.40,-48.00,6.30,0.00,1.00,-67.20,-48.00,0
+-57.60,-48.00,6.14,0.00,1.00,-62.40,-43.20,0
+-48.00,-43.20,5.98,0.00,1.00,-57.60,-43.20,0
+-43.20,-43.20,5.82,0.00,1.00,-52.80,-38.40,0
+-38.40,-38.40,5.66,0.00,1.00,-48.00,-38.40,0
+-33.60,-33.60,5.49,0.00,1.00,-43.20,-33.60,0
+-28.80,-33.60,5.33,0.00,1.00,-38.40,-28.80,0
+-24.00,-28.80,5.17,0.00,1.00,-33.60,-24.00,0
+-24.00,-24.00,5.01,0.00,1.00,-28.80,-24.00,0
+-19.20,-24.00,4.85,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,4.69,0.00,1.00,-19.20,-14.40,0
+-14.40,-14.40,4.53,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,4.36,0.00,1.00,-9.60,-9.60,0
+-4.80,-9.60,4.20,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,4.04,0.00,1.00,-4.80,0.00,0
+0.00,0.00,3.88,0.00,1.00,0.00,4.80,0
+4.80,4.80,3.72,0.00,1.00,4.80,4.80,0
+4.80,4.80,3.56,0.00,1.00,4.80,9.60,0
+9.60,9.60,3.39,0.00,1.00,9.60,14.40,0
+14.40,14.40,3.23,0.00,1.00,14.40,19.20,0
+19.20,19.20,3.07,0.00,1.00,19.20,19.20,0
+19.20,19.20,2.91,0.00,1.00,24.00,24.00,0
+24.00,24.00,2.75,0.00,1.00,24.00,28.80,0
+28.80,28.80,2.59,0.00,1.00,28.80,28.80,0
+33.60,28.80,2.42,0.00,1.00,33.60,33.60,0
+38.40,33.60,2.26,0.00,1.00,38.40,38.40,0
+43.20,33.60,2.10,0.00,1.00,43.20,38.40,0
+48.00,38.40,1.94,0.00,1.00,48.00,43.20,0
+52.80,38.40,1.78,0.00,1.00,52.80,43.20,0
+57.60,43.20,1.62,0.00,1.00,62.40,43.20,0
+62.40,43.20,1.45,0.00,1.00,67.20,48.00,0
+72.00,43.20,1.29,0.00,1.00,72.00,48.00,0
+76.80,48.00,1.13,0.00,1.00,76.80,48.00,0
+86.40,48.00,0.97,0.00,1.00,86.40,48.00,0
+91.20,48.00,0.81,0.00,1.00,91.20,48.00,0
+100.80,48.00,0.65,0.00,1.00,96.00,48.00,0
+105.60,48.00,0.48,0.00,1.00,105.60,48.00,0
+110.40,43.20,0.32,0.00,1.00,110.40,43.20,0
+120.00,43.20,0.16,0.00,1.00,115.20,43.20,0
+124.80,43.20,0.00,0.00,1.00,124.80,38.40,0
+129.60,38.40,0.00,0.00,1.00,129.60,38.40,0
+134.40,38.40,0.04,0.00,1.00,134.40,33.60,0
+139.20,33.60,0.08,0.00,1.00,139.20,33.60,0
+144.00,33.60,0.12,0.00,1.00,144.00,28.80,0
+148.80,28.80,0.16,0.00,1.00,148.80,24.00,0
+153.60,24.00,0.20,0.00,1.00,153.60,24.00,0
+158.40,24.00,0.24,0.00,1.00,158.40,19.20,0
+163.20,19.20,0.28,0.00,1.00,158.40,14.40,0
+163.20,14.40,0.32,0.00,1.00,163.20,14.40,0
+168.00,14.40,0.36,0.00,1.00,168.00,9.60,0
+172.80,9.60,0.40,0.00,1.00,172.80,4.80,0
+172.80,4.80,0.44,0.00,1.00,172.80,0.00,0
+177.60,0.00,0.48,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,0.52,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,0.56,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,0.60,0.00,1.00,-172.80,-14.40,0
+-168.00,-14.40,0.64,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,0.68,0.00,1.00,-163.20,-19.20,0
+-163.20,-19.20,0.72,0.00,1.00,-158.40,-24.00,0
+-158.40,-24.00,0.76,0.00,1.00,-158.40,-24.00,0
+-153.60,-24.00,0.80,0.00,1.00,-153.60,-28.80,0
+-148.80,-28.80,0.84,0.00,1.00,-148.80,-33.60,0
+-144.00,-33.60,0.88,0.00,1.00,-144.00,-33.60,0
+-139.20,-33.60,0.92,0.00,1.00,-139.20,-38.40,0
+-134.40,-38.40,0.96,0.00,1.00,-134.40,-38.40,0
+-129.60,-38.40,1.00,0.00,1.00,-129.60,-43.20,0
+-124.80,-43.20,1.04,0.00,1.00,-124.80,-43.20,0
+-120.00,-43.20,1.08,0.00,1.00,-115.20,-48.00,0
+-110.40,-43.20,1.12,0.00,1.00,-110.40,-48.00,0
+-105.60,-48.00,1.16,0.00,1.00,-105.60,-48.00,0
+-100.80,-48.00,1.20,0.00,1.00,-96.00,-48.00,0
+-91.20,-48.00,1.24,0.00,1.00,-91.20,-48.00,0
+-86.40,-48.00,1.28,0.00,1.00,-86.40,-48.00,0
+-76.80,-48.00,1.32,0.00,1.00,-76.80,-48.00,0
+-72.00,-43.20,1.36,0.00,1.00,-72.00,-43.20,0
+-62.40,-43.20,1.40,0.00,1.00,-67.20,-43.20,0
+-57.60,-43.20,1.44,0.00,1.00,-62.40,-43.20,0
+-52.80,-38.40,1.48,0.00,1.00,-52.80,-38.40,0
+-48.00,-38.40,1.52,0.00,1.00,-48.00,-38.40,0
+-43.20,-33.60,1.56,0.00,1.00,-43.20,-33.60,0
+-38.40,-33.60,1.60,0.00,1.00,-38.40,-28.80,0
+-33.60,-28.80,1.64,0.00,1.00,-33.60,-28.80,0
+-28.80,-28.80,1.68,0.00,1.00,-28.80,-24.00,0
+-24.00,-24.00,1.72,0.00,1.00,-24.00,-19.20,0
+-19.20,-19.20,1.76,0.00,1.00,-24.00,-19.20,0
+-19.20,-19.20,1.80,0.00,1.00,-19.20,-14.40,0
+-14.40,-14.40,1.84,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,1.88,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,1.92,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,1.96,0.00,1.00,-4.80,0.00,0
+0.00,0.00,2.01,0.00,1.00,0.00,4.80,0
+4.80,4.80,2.05,0.00,1.00,4.80,4.80,0
+4.80,4.80,2.09,0.00,1.00,4.80,9.60,0
+9.60,9.60,2.13,0.00,1.00,9.60,14.40,0
+14.40,14.40,2.17,0.00,1.00,14.40,14.40,0
+19.20,14.40,2.21,0.00,1.00,14.40,19.20,0
+24.00,19.20,2.25,0.00,1.00,19.20,24.00,0
+24.00,24.00,2.29,0.00,1.00,24.00,24.00,0
+28.80,24.00,2.33,0.00,1.00,28.80,28.80,0
+33.60,28.80,2.37,0.00,1.00,33.60,28.80,0
+38.40,28.80,2.41,0.00,1.00,38.40,33.60,0
+43.20,33.60,2.45,0.00,1.00,43.20,33.60,0
+48.00,33.60,2.49,0.00,1.00,48.00,38.40,0
+52.80,38.40,2.53,0.00,1.00,52.80,38.40,0
+62.40,38.40,2.57,0.00,1.00,57.60,38.40,0
+67.20,38.40,2.61,0.00,1.00,62.40,43.20,0
+72.00,38.40,2.65,0.00,1.00,72.00,43.20,0
+76.80,43.20,2.69,0.00,1.00,76.80,43.20,0
+86.40,43.20,2.73,0.00,1.00,86.40,43.20,0
+91.20,43.20,2.77,0.00,1.00,91.20,43.20,0
+96.00,43.20,2.81,0.00,1.00,100.80,43.20,0
+105.60,43.20,2.85,0.00,1.00,105.60,43.20,0
+110.40,38.40,2.89,0.00,1.00,110.40,38.40,0
+115.20,38.40,2.93,0.00,1.00,120.00,38.40,0
+120.00,38.40,2.97,0.00,1.00,124.80,38.40,0
+129.60,33.60,3.01,0.00,1.00,129.60,33.60,0
+134.40,33.60,3.05,0.00,1.00,134.40,33.60,0
+139.20,28.80,3.09,0.00,1.00,139.20,28.80,0
+144.00,28.80,3.13,0.00,1.00,144.00,28.80,0
+148.80,24.00,3.17,0.00,1.00,148.80,24.00,0
+153.60,24.00,3.21,0.00,1.00,153.60,19.20,0
+153.60,19.20,3.25,0.00,1.00,158.40,19.20,0
+158.40,19.20,3.29,0.00,1.00,163.20,14.40,0
+163.20,14.40,3.33,0.00,1.00,163.20,9.60,0
+168.00,9.60,3.37,0.00,1.00,168.00,9.60,0
+172.80,9.60,3.41,0.00,1.00,172.80,4.80,0
+172.80,4.80,3.45,0.00,1.00,172.80,0.00,0
+177.60,0.00,3.49,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.53,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,3.57,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,3.61,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,3.65,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,3.69,0.00,1.00,-163.20,-19.20,0
+-158.40,-19.20,3.73,0.00,1.00,-163.20,-19.20,0
+-153.60,-19.20,3.77,0.00,1.00,-158.40,-24.00,0
+-153.60,-24.00,3.81,0.00,1.00,-153.60,-28.80,0
+-148.80,-24.00,3.85,0.00,1.00,-148.80,-28.80,0
+-144.00,-28.80,3.89,0.00,1.00,-144.00,-33.60,0
+-139.20,-28.80,3.93,0.00,1.00,-139.20,-33.60,0
+-134.40,-33.60,3.97,0.00,1.00,-134.40,-38.40,0
+-129.60,-33.60,4.01,0.00,1.00,-129.60,-38.40,0
+-120.00,-38.40,4.05,0.00,1.00,-124.80,-38.40,0
+-115.20,-38.40,4.09,0.00,1.00,-120.00,-43.20,0
+-110.40,-38.40,4.13,0.00,1.00,-110.40,-43.20,0
+-105.60,-43.20,4.17,0.00,1.00,-105.60,-43.20,0
+-96.00,-43.20,4.21,0.00,1.00,-100.80,-43.20,0
+-91.20,-43.20,4.25,0.00,1.00,-91.20,-43.20,0
+-86.40,-43.20,4.29,0.00,1.00,-86.40,-43.20,0
+-76.80,-43.20,4.33,0.00,1.00,-76.80,-43.20,0
+-72.00,-38.40,4.37,0.00,1.00,-72.00,-38.40,0
+-67.20,-38.40,4.41,0.00,1.00,-62.40,-38.40,0
+-62.40,-38.40,4.45,0.00,1.00,-57.60,-38.40,0
+-52.80,-38.40,4.49,0.00,1.00,-52.80,-33.60,0
+-48.00,-33.60,4.53,0.00,1.00,-48.00,-33.60,0
+-43.20,-33.60,4.57,0.00,1.00,-43.20,-28.80,0
+-38.40,-28.80,4.61,0.00,1.00,-38.40,-28.80,0
+-33.60,-28.80,4.65,0.00,1.00,-33.60,-24.00,0
+-28.80,-24.00,4.69,0.00,1.00,-28.80,-24.00,0
+-24.00,-24.00,4.73,0.00,1.00,-24.00,-19.20,0
+-24.00,-19.20,4.77,0.00,1.00,-19.20,-14.40,0
+-19.20,-14.40,4.81,0.00,1.00,-14.40,-14.40,0
+-14.40,-14.40,4.85,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,4.89,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,4.93,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,4.97,0.00,1.00,-4.80,0.00,0
+0.00,0.00,5.01,0.00,1.00,0.00,4.80,0
+4.80,4.80,5.05,0.00,1.00,4.80,4.80,0
+9.60,4.80,5.09,0.00,1.00,4.80,9.60,0
+9.60,9.60,5.13,0.00,1.00,9.60,9.60,0
+14.40,9.60,5.17,0.00,1.00,9.60,14.40,0
+19.20,14.40,5.21,0.00,1.00,14.40,19.20,0
+24.00,19.20,5.25,0.00,1.00,19.20,19.20,0
+28.80,19.20,5.29,0.00,1.00,24.00,24.00,0
+33.60,24.00,5.33,0.00,1.00,24.00,24.00,0
+38.40,24.00,5.37,0.00,1.00,28.80,28.80,0
+43.20,28.80,5.41,0.00,1.00,33.60,28.80,0
+48.00,28.80,5.45,0.00,1.00,38.40,33.60,0
+52.80,28.80,5.49,0.00,1.00,43.20,33.60,0
+57.60,33.60,5.53,0.00,1.00,48.00,33.60,0
+62.40,33.60,5.57,0.00,1.00,52.80,38.40,0
+67.20,33.60,5.61,0.00,1.00,62.40,38.40,0
+72.00,38.40,5.65,0.00,1.00,67.20,38.40,0
+81.60,38.40,5.69,0.00,1.00,76.80,38.40,0
+86.40,38.40,5.73,0.00,1.00,86.40,38.40,0
+91.20,38.40,5.77,0.00,1.00,91.20,38.40,0
+96.00,38.40,5.81,0.00,1.00,100.80,38.40,0
+105.60,38.40,5.85,0.00,1.00,105.60,38.40,0
+110.40,33.60,5.89,0.00,1.00,115.20,33.60,0
+115.20,33.60,5.93,0.00,1.00,120.00,33.60,0
+120.00,33.60,5.97,0.00,1.00,129.60,33.60,0
+124.80,33.60,6.02,0.00,1.00,134.40,28.80,0
+129.60,28.80,6.06,0.00,1.00,139.20,28.80,0
+134.40,28.80,6.10,0.00,1.00,144.00,24.00,0
+139.20,24.00,6.14,0.00,1.00,148.80,24.00,0
+144.00,24.00,6.18,0.00,1.00,153.60,19.20,0
+148.80,19.20,6.22,0.00,1.00,158.40,19.20,0
+153.60,19.20,6.26,0.00,1.00,158.40,14.40,0
+158.40,14.40,6.30,0.00,1.00,163.20,14.40,0
+163.20,14.40,6.34,0.00,1.00,168.00,9.60,0
+168.00,9.60,6.38,0.00,1.00,168.00,9.60,0
+168.00,9.60,6.42,0.00,1.00,172.80,4.80,0
+172.80,4.80,6.46,0.00,1.00,177.60,0.00,0
+177.60,0.00,6.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.54,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,6.58,0.00,1.00,-177.60,-9.60,0
+-168.00,-9.60,6.62,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,6.66,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,6.70,0.00,1.00,-168.00,-14.40,0
+-158.40,-14.40,6.74,0.00,1.00,-163.20,-19.20,0
+-153.60,-19.20,6.78,0.00,1.00,-158.40,-19.20,0
+-148.80,-19.20,6.82,0.00,1.00,-158.40,-24.00,0
+-144.00,-24.00,6.86,0.00,1.00,-153.60,-24.00,0
+-139.20,-24.00,6.90,0.00,1.00,-148.80,-28.80,0
+-134.40,-28.80,6.94,0.00,1.00,-144.00,-28.80,0
+-129.60,-28.80,6.98,0.00,1.00,-139.20,-33.60,0
+-124.80,-33.60,7.02,0.00,1.00,-134.40,-33.60,0
+-120.00,-33.60,7.06,0.00,1.00,-129.60,-33.60,0
+-115.20,-33.60,7.10,0.00,1.00,-120.00,-38.40,0
+-110.40,-33.60,7.14,0.00,1.00,-115.20,-38.40,0
+-105.60,-38.40,7.18,0.00,1.00,-105.60,-38.40,0
+-96.00,-38.40,7.22,0.00,1.00,-100.80,-38.40,0
+-91.20,-38.40,7.26,0.00,1.00,-91.20,-38.40,0
+-86.40,-38.40,7.30,0.00,1.00,-86.40,-38.40,0
+-81.60,-38.40,7.34,0.00,1.00,-76.80,-38.40,0
+-72.00,-38.40,7.38,0.00,1.00,-67.20,-38.40,0
+-67.20,-33.60,7.42,0.00,1.00,-62.40,-33.60,0
+-62.40,-33.60,7.46,0.00,1.00,-52.80,-33.60,0
+-57.60,-33.60,7.50,0.00,1.00,-48.00,-33.60,0
+-52.80,-28.80,7.54,0.00,1.00,-43.20,-28.80,0
+-48.00,-28.80,7.58,0.00,1.00,-38.40,-28.80,0
+-43.20,-28.80,7.62,0.00,1.00,-33.60,-24.00,0
+-38.40,-24.00,7.66,0.00,1.00,-28.80,-24.00,0
+-33.60,-24.00,7.70,0.00,1.00,-24.00,-19.20,0
+-28.80,-19.20,7.74,0.00,1.00,-24.00,-19.20,0
+-24.00,-19.20,7.78,0.00,1.00,-19.20,-14.40,0
+-19.20,-14.40,7.82,0.00,1.00,-14.40,-9.60,0
+-14.40,-9.60,7.86,0.00,1.00,-9.60,-9.60,0
+-9.60,-9.60,7.90,0.00,1.00,-9.60,-4.80,0
+-9.60,-4.80,7.94,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,7.98,0.00,1.00,-4.80,0.00,0
+0.00,0.00,8.02,0.00,1.00,0.00,4.80,0
+4.80,4.80,8.06,0.00,1.00,4.80,4.80,0
+9.60,4.80,8.10,0.00,1.00,4.80,9.60,0
+14.40,9.60,8.14,0.00,1.00,9.60,9.60,0
+14.40,9.60,8.18,0.00,1.00,9.60,14.40,0
+19.20,14.40,8.22,0.00,1.00,14.40,14.40,0
+24.00,14.40,8.26,0.00,1.00,14.40,19.20,0
+28.80,19.20,8.30,0.00,1.00,19.20,19.20,0
+33.60,19.20,8.34,0.00,1.00,24.00,24.00,0
+38.40,19.20,8.38,0.00,1.00,28.80,24.00,0
+43.20,24.00,8.42,0.00,1.00,28.80,24.00,0
+48.00,24.00,8.46,0.00,1.00,33.60,28.80,0
+52.80,28.80,8.50,0.00,1.00,38.40,28.80,0
+57.60,28.80,8.54,0.00,1.00,48.00,28.80,0
+62.40,28.80,8.58,0.00,1.00,52.80,33.60,0
+67.20,28.80,8.62,0.00,1.00,57.60,33.60,0
+76.80,33.60,8.66,0.00,1.00,67.20,33.60,0
+81.60,33.60,8.70,0.00,1.00,76.80,33.60,0
+86.40,33.60,8.74,0.00,1.00,81.60,33.60,0
+91.20,33.60,8.78,0.00,1.00,91.20,33.60,0
+96.00,33.60,8.82,0.00,1.00,100.80,33.60,0
+100.80,33.60,8.86,0.00,1.00,110.40,33.60,0
+110.40,28.80,8.90,0.00,1.00,115.20,33.60,0
+115.20,28.80,8.94,0.00,1.00,124.80,28.80,0
+120.00,28.80,8.98,0.00,1.00,129.60,28.80,0
+124.80,28.80,9.02,0.00,1.00,139.20,28.80,0
+129.60,24.00,9.06,0.00,1.00,144.00,24.00,0
+134.40,24.00,9.10,0.00,1.00,148.80,24.00,0
+139.20,24.00,9.14,0.00,1.00,153.60,19.20,0
+144.00,19.20,9.18,0.00,1.00,153.60,19.20,0
+148.80,19.20,9.22,0.00,1.00,158.40,14.40,0
+153.60,14.40,9.26,0.00,1.00,163.20,14.40,0
+158.40,14.40,9.30,0.00,1.00,163.20,9.60,0
+163.20,9.60,9.34,0.00,1.00,168.00,9.60,0
+168.00,9.60,9.38,0.00,1.00,172.80,4.80,0
+168.00,4.80,9.42,0.00,1.00,172.80,4.80,0
+172.80,4.80,9.46,0.00,1.00,177.60,0.00,0
+177.60,0.00,9.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,9.54,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,9.58,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,9.62,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,9.66,0.00,1.00,-172.80,-9.60,0
+-163.20,-9.60,9.70,0.00,1.00,-168.00,-14.40,0
+-158.40,-14.40,9.74,0.00,1.00,-163.20,-14.40,0
+-153.60,-14.40,9.78,0.00,1.00,-163.20,-19.20,0
+-148.80,-19.20,9.82,0.00,1.00,-158.40,-19.20,0
+-144.00,-19.20,9.86,0.00,1.00,-153.60,-24.00,0
+-139.20,-24.00,9.90,0.00,1.00,-153.60,-24.00,0
+-134.40,-24.00,9.94,0.00,1.00,-148.80,-28.80,0
+-129.60,-24.00,9.98,0.00,1.00,-144.00,-28.80,0
+-124.80,-28.80,10.03,0.00,1.00,-139.20,-28.80,0
+-120.00,-28.80,10.07,0.00,1.00,-129.60,-33.60,0
+-115.20,-28.80,10.11,0.00,1.00,-124.80,-33.60,0
+-110.40,-28.80,10.15,0.00,1.00,-115.20,-33.60,0
+-100.80,-33.60,10.19,0.00,1.00,-110.40,-33.60,0
+-96.00,-33.60,10.23,0.00,1.00,-100.80,-33.60,0
+-91.20,-33.60,10.27,0.00,1.00,-91.20,-33.60,0
+-86.40,-33.60,10.31,0.00,1.00,-81.60,-33.60,0
+-81.60,-33.60,10.35,0.00,1.00,-76.80,-33.60,0
+-76.80,-33.60,10.39,0.00,1.00,-67.20,-33.60,0
+-67.20,-28.80,10.43,0.00,1.00,-57.60,-28.80,0
+-62.40,-28.80,10.47,0.00,1.00,-52.80,-28.80,0
+-57.60,-28.80,10.51,0.00,1.00,-48.00,-28.80,0
+-52.80,-28.80,10.55,0.00,1.00,-38.40,-24.00,0
+-48.00,-24.00,10.59,0.00,1.00,-33.60,-24.00,0
+-43.20,-24.00,10.63,0.00,1.00,-28.80,-24.00,0
+-38.40,-19.20,10.67,0.00,1.00,-28.80,-19.20,0
+-33.60,-19.20,10.71,0.00,1.00,-24.00,-19.20,0
+-28.80,-19.20,10.75,0.00,1.00,-19.20,-14.40,0
+-24.00,-14.40,10.79,0.00,1.00,-14.40,-14.40,0
+-19.20,-14.40,10.83,0.00,1.00,-14.40,-9.60,0
+-14.40,-9.60,10.87,0.00,1.00,-9.60,-9.60,0
+-14.40,-9.60,10.91,0.00,1.00,-9.60,-4.80,0
+-9.60,-4.80,10.95,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,10.99,0.00,1.00,-4.80,0.00,0
+0.00,0.00,11.03,0.00,1.00,0.00,0.00,0
+4.80,0.00,11.07,0.00,1.00,0.00,4.80,0
+9.60,4.80,11.11,0.00,1.00,4.80,4.80,0
+14.40,4.80,11.15,0.00,1.00,4.80,9.60,0
+19.20,9.60,11.19,0.00,1.00,9.60,9.60,0
+19.20,9.60,11.23,0.00,1.00,9.60,14.40,0
+24.00,14.40,11.27,0.00,1.00,14.40,14.40,0
+28.80,14.40,11.31,0.00,1.00,19.20,19.20,0
+33.60,14.40,11.35,0.00,1.00,19.20,19.20,0
+38.40,19.20,11.39,0.00,1.00,24.00,19.20,0
+43.20,19.20,11.43,0.00,1.00,28.80,24.00,0
+48.00,24.00,11.47,0.00,1.00,33.60,24.00,0
+52.80,24.00,11.51,0.00,1.00,38.40,24.00,0
+57.60,24.00,11.55,0.00,1.00,43.20,24.00,0
+62.40,24.00,11.59,0.00,1.00,48.00,28.80,0
+72.00,24.00,11.63,0.00,1.00,52.80,28.80,0
+76.80,28.80,11.67,0.00,1.00,62.40,28.80,0
+81.60,28.80,11.71,0.00,1.00,72.00,28.80,0
+86.40,28.80,11.75,0.00,1.00,81.60,28.80,0
+91.20,28.80,11.79,0.00,1.00,91.20,28.80,0
+96.00,28.80,11.83,0.00,1.00,100.80,28.80,0
+100.80,28.80,11.87,0.00,1.00,110.40,28.80,0
+105.60,28.80,11.91,0.00,1.00,120.00,28.80,0
+110.40,24.00,11.95,0.00,1.00,129.60,24.00,0
+120.00,24.00,11.99,0.00,1.00,134.40,24.00,0
+124.80,24.00,12.03,0.00,1.00,139.20,24.00,0
+129.60,24.00,12.07,0.00,1.00,144.00,24.00,0
+134.40,19.20,12.11,0.00,1.00,148.80,19.20,0
+139.20,19.20,12.15,0.00,1.00,153.60,19.20,0
+144.00,19.20,12.19,0.00,1.00,158.40,14.40,0
+148.80,14.40,12.23,0.00,1.00,163.20,14.40,0
+153.60,14.40,12.27,0.00,1.00,163.20,14.40,0
+158.40,9.60,12.31,0.00,1.00,168.00,9.60,0
+158.40,9.60,12.35,0.00,1.00,168.00,9.60,0
+163.20,9.60,12.39,0.00,1.00,172.80,4.80,0
+168.00,4.80,12.43,0.00,1.00,172.80,4.80,0
+172.80,4.80,12.47,0.00,1.00,177.60,0.00,0
+177.60,0.00,12.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,12.55,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,12.59,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,12.63,0.00,1.00,-172.80,-9.60,0
+-163.20,-9.60,12.67,0.00,1.00,-172.80,-9.60,0
+-158.40,-9.60,12.71,0.00,1.00,-168.00,-14.40,0
+-158.40,-9.60,12.75,0.00,1.00,-168.00,-14.40,0
+-153.60,-14.40,12.79,0.00,1.00,-163.20,-14.40,0
+-148.80,-14.40,12.83,0.00,1.00,-163.20,-19.20,0
+-144.00,-19.20,12.87,0.00,1.00,-158.40,-19.20,0
+-139.20,-19.20,12.91,0.00,1.00,-153.60,-24.00,0
+-134.40,-19.20,12.95,0.00,1.00,-148.80,-24.00,0
+-129.60,-24.00,12.99,0.00,1.00,-144.00,-24.00,0
+-124.80,-24.00,13.03,0.00,1.00,-139.20,-24.00,0
+-120.00,-24.00,13.07,0.00,1.00,-134.40,-28.80,0
+-110.40,-24.00,13.11,0.00,1.00,-129.60,-28.80,0
+-105.60,-28.80,13.15,0.00,1.00,-120.00,-28.80,0
+-100.80,-28.80,13.19,0.00,1.00,-110.40,-28.80,0
+-96.00,-28.80,13.23,0.00,1.00,-100.80,-28.80,0
+-91.20,-28.80,13.27,0.00,1.00,-91.20,-28.80,0
+-86.40,-28.80,13.31,0.00,1.00,-81.60,-28.80,0
+-81.60,-28.80,13.35,0.00,1.00,-72.00,-28.80,0
+-76.80,-28.80,13.39,0.00,1.00,-62.40,-28.80,0
+-72.00,-24.00,13.43,0.00,1.00,-52.80,-24.00,0
+-62.40,-24.00,13.47,0.00,1.00,-48.00,-24.00,0
+-57.60,-24.00,13.51,0.00,1.00,-43.20,-24.00,0
+-52.80,-24.00,13.55,0.00,1.00,-38.40,-24.00,0
+-48.00,-24.00,13.59,0.00,1.00,-33.60,-19.20,0
+-43.20,-19.20,13.63,0.00,1.00,-28.80,-19.20,0
+-38.40,-19.20,13.67,0.00,1.00,-24.00,-19.20,0
+-33.60,-14.40,13.71,0.00,1.00,-19.20,-14.40,0
+-28.80,-14.40,13.75,0.00,1.00,-19.20,-14.40,0
+-24.00,-14.40,13.79,0.00,1.00,-14.40,-9.60,0
+-19.20,-9.60,13.83,0.00,1.00,-9.60,-9.60,0
+-19.20,-9.60,13.87,0.00,1.00,-9.60,-4.80,0
+-14.40,-4.80,13.91,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,13.95,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,13.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,14.04,0.00,1.00,0.00,0.00,0
+4.80,0.00,14.08,0.00,1.00,0.00,4.80,0
+9.60,4.80,14.12,0.00,1.00,4.80,4.80,0
+14.40,4.80,14.16,0.00,1.00,4.80,9.60,0
+19.20,9.60,14.20,0.00,1.00,9.60,9.60,0
+24.00,9.60,14.24,0.00,1.00,9.60,9.60,0
+28.80,9.60,14.28,0.00,1.00,14.40,14.40,0
+33.60,14.40,14.32,0.00,1.00,14.40,14.40,0
+38.40,14.40,14.36,0.00,1.00,19.20,14.40,0
+43.20,14.40,14.40,0.00,1.00,19.20,19.20,0
+48.00,14.40,14.44,0.00,1.00,24.00,19.20,0
+52.80,19.20,14.48,0.00,1.00,28.80,19.20,0
+57.60,19.20,14.52,0.00,1.00,33.60,19.20,0
+62.40,19.20,14.56,0.00,1.00,38.40,24.00,0
+67.20,19.20,14.60,0.00,1.00,43.20,24.00,0
+72.00,24.00,14.64,0.00,1.00,48.00,24.00,0
+76.80,24.00,14.68,0.00,1.00,57.60,24.00,0
+81.60,24.00,14.72,0.00,1.00,67.20,24.00,0
+86.40,24.00,14.76,0.00,1.00,81.60,24.00,0
+91.20,24.00,14.80,0.00,1.00,91.20,24.00,0
+96.00,24.00,14.84,0.00,1.00,105.60,24.00,0
+100.80,24.00,14.88,0.00,1.00,115.20,24.00,0
+105.60,24.00,14.92,0.00,1.00,124.80,24.00,0
+110.40,19.20,14.96,0.00,1.00,134.40,19.20,0
+115.20,19.20,15.00,0.00,1.00,139.20,19.20,0
+120.00,19.20,15.04,0.00,1.00,144.00,19.20,0
+124.80,19.20,15.08,0.00,1.00,148.80,19.20,0
+129.60,19.20,15.12,0.00,1.00,153.60,19.20,0
+134.40,14.40,15.16,0.00,1.00,158.40,14.40,0
+139.20,14.40,15.20,0.00,1.00,163.20,14.40,0
+144.00,14.40,15.24,0.00,1.00,163.20,14.40,0
+148.80,9.60,15.28,0.00,1.00,168.00,9.60,0
+153.60,9.60,15.32,0.00,1.00,168.00,9.60,0
+158.40,9.60,15.36,0.00,1.00,172.80,4.80,0
+163.20,4.80,15.40,0.00,1.00,172.80,4.80,0
+168.00,4.80,15.44,0.00,1.00,177.60,4.80,0
+172.80,4.80,15.48,0.00,1.00,177.60,0.00,0
+177.60,0.00,15.52,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,15.56,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,15.60,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,15.64,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,15.68,0.00,1.00,-172.80,-9.60,0
+-158.40,-9.60,15.72,0.00,1.00,-172.80,-9.60,0
+-153.60,-9.60,15.76,0.00,1.00,-168.00,-14.40,0
+-148.80,-9.60,15.80,0.00,1.00,-168.00,-14.40,0
+-144.00,-14.40,15.84,0.00,1.00,-163.20,-14.40,0
+-139.20,-14.40,15.88,0.00,1.00,-163.20,-19.20,0
+-134.40,-14.40,15.92,0.00,1.00,-158.40,-19.20,0
+-129.60,-19.20,15.96,0.00,1.00,-153.60,-19.20,0
+-124.80,-19.20,16.00,0.00,1.00,-148.80,-19.20,0
+-120.00,-19.20,16.00,0.00,1.00,-144.00,-19.20,0
+-115.20,-19.20,15.96,0.00,1.00,-139.20,-24.00,0
+-110.40,-19.20,15.92,0.00,1.00,-134.40,-24.00,0
+-105.60,-24.00,15.88,0.00,1.00,-124.80,-24.00,0
+-100.80,-24.00,15.84,0.00,1.00,-115.20,-24.00,0
+-96.00,-24.00,15.80,0.00,1.00,-105.60,-24.00,0
+-91.20,-24.00,15.76,0.00,1.00,-91.20,-24.00,0
+-86.40,-24.00,15.72,0.00,1.00,-81.60,-24.00,0
+-81.60,-24.00,15.68,0.00,1.00,-67.20,-24.00,0
+-76.80,-24.00,15.64,0.00,1.00,-57.60,-24.00,0
+-72.00,-24.00,15.60,0.00,1.00,-48.00,-24.00,0
+-67.20,-19.20,15.56,0.00,1.00,-43.20,-19.20,0
+-62.40,-19.20,15.52,0.00,1.00,-38.40,-19.20,0
+-57.60,-19.20,15.48,0.00,1.00,-33.60,-19.20,0
+-52.80,-19.20,15.44,0.00,1.00,-28.80,-19.20,0
+-48.00,-14.40,15.40,0.00,1.00,-24.00,-14.40,0
+-43.20,-14.40,15.36,0.00,1.00,-19.20,-14.40,0
+-38.40,-14.40,15.32,0.00,1.00,-19.20,-14.40,0
+-33.60,-14.40,15.28,0.00,1.00,-14.40,-9.60,0
+-28.80,-9.60,15.24,0.00,1.00,-14.40,-9.60,0
+-24.00,-9.60,15.20,0.00,1.00,-9.60,-9.60,0
+-19.20,-9.60,15.16,0.00,1.00,-9.60,-4.80,0
+-14.40,-4.80,15.12,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,15.08,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,15.04,0.00,1.00,-0.00,0.00,0
+0.00,0.00,15.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,14.96,0.00,1.00,0.00,4.80,0
+9.60,4.80,14.92,0.00,1.00,4.80,4.80,0
+14.40,4.80,14.88,0.00,1.00,4.80,4.80,0
+19.20,4.80,14.84,0.00,1.00,4.80,9.60,0
+24.00,9.60,14.80,0.00,1.00,9.60,9.60,0
+28.80,9.60,14.76,0.00,1.00,9.60,9.60,0
+33.60,9.60,14.72,0.00,1.00,9.60,9.60,0
+38.40,9.60,14.68,0.00,1.00,14.40,14.40,0
+43.20,14.40,14.64,0.00,1.00,14.40,14.40,0
+48.00,14.40,14.60,0.00,1.00,19.20,14.40,0
+52.80,14.40,14.56,0.00,1.00,24.00,14.40,0
+57.60,14.40,14.52,0.00,1.00,24.00,19.20,0
+62.40,14.40,14.48,0.00,1.00,28.80,19.20,0
+67.20,14.40,14.44,0.00,1.00,38.40,19.20,0
+72.00,19.20,14.40,0.00,1.00,43.20,19.20,0
+76.80,19.20,14.36,0.00,1.00,52.80,19.20,0
+81.60,19.20,14.32,0.00,1.00,62.40,19.20,0
+86.40,19.20,14.28,0.00,1.00,76.80,19.20,0
+91.20,19.20,14.24,0.00,1.00,96.00,19.20,0
+96.00,19.20,14.20,0.00,1.00,110.40,19.20,0
+100.80,19.20,14.16,0.00,1.00,120.00,19.20,0
+105.60,19.20,14.12,0.00,1.00,134.40,19.20,0
+110.40,19.20,14.08,0.00,1.00,139.20,19.20,0
+115.20,14.40,14.04,0.00,1.00,148.80,14.40,0
+120.00,14.40,13.99,0.00,1.00,153.60,14.40,0
+124.80,14.40,13.95,0.00,1.00,158.40,14.40,0
+129.60,14.40,13.91,0.00,1.00,158.40,14.40,0
+134.40,14.40,13.87,0.00,1.00,163.20,14.40,0
+139.20,9.60,13.83,0.00,1.00,163.20,9.60,0
+144.00,9.60,13.79,0.00,1.00,168.00,9.60,0
+148.80,9.60,13.75,0.00,1.00,168.00,9.60,0
+153.60,9.60,13.71,0.00,1.00,172.80,4.80,0
+158.40,4.80,13.67,0.00,1.00,172.80,4.80,0
+163.20,4.80,13.63,0.00,1.00,172.80,4.80,0
+168.00,4.80,13.59,0.00,1.00,177.60,0.00,0
+172.80,0.00,13.55,0.00,1.00,177.60,0.00,0
+177.60,0.00,13.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.47,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,13.43,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,13.39,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,13.35,0.00,1.00,-172.80,-4.80,0
+-158.40,-4.80,13.31,0.00,1.00,-172.80,-9.60,0
+-153.60,-9.60,13.27,0.00,1.00,-172.80,-9.60,0
+-148.80,-9.60,13.23,0.00,1.00,-168.00,-9.60,0
+-144.00,-9.60,13.19,0.00,1.00,-168.00,-14.40,0
+-139.20,-9.60,13.15,0.00,1.00,-163.20,-14.40,0
+-134.40,-14.40,13.11,0.00,1.00,-163.20,-14.40,0
+-129.60,-14.40,13.07,0.00,1.00,-158.40,-14.40,0
+-124.80,-14.40,13.03,0.00,1.00,-158.40,-14.40,0
+-120.00,-14.40,12.99,0.00,1.00,-153.60,-19.20,0
+-115.20,-14.40,12.95,0.00,1.00,-148.80,-19.20,0
+-110.40,-19.20,12.91,0.00,1.00,-139.20,-19.20,0
+-105.60,-19.20,12.87,0.00,1.00,-134.40,-19.20,0
+-100.80,-19.20,12.83,0.00,1.00,-120.00,-19.20,0
+-96.00,-19.20,12.79,0.00,1.00,-110.40,-19.20,0
+-91.20,-19.20,12.75,0.00,1.00,-96.00,-19.20,0
+-86.40,-19.20,12.71,0.00,1.00,-76.80,-19.20,0
+-81.60,-19.20,12.67,0.00,1.00,-62.40,-19.20,0
+-76.80,-19.20,12.63,0.00,1.00,-52.80,-19.20,0
+-72.00,-19.20,12.59,0.00,1.00,-43.20,-19.20,0
+-67.20,-14.40,12.55,0.00,1.00,-38.40,-19.20,0
+-62.40,-14.40,12.51,0.00,1.00,-28.80,-14.40,0
+-57.60,-14.40,12.47,0.00,1.00,-24.00,-14.40,0
+-52.80,-14.40,12.43,0.00,1.00,-24.00,-14.40,0
+-48.00,-14.40,12.39,0.00,1.00,-19.20,-14.40,0
+-43.20,-14.40,12.35,0.00,1.00,-14.40,-9.60,0
+-38.40,-9.60,12.31,0.00,1.00,-14.40,-9.60,0
+-33.60,-9.60,12.27,0.00,1.00,-9.60,-9.60,0
+-28.80,-9.60,12.23,0.00,1.00,-9.60,-9.60,0
+-24.00,-9.60,12.19,0.00,1.00,-9.60,-4.80,0
+-19.20,-4.80,12.15,0.00,1.00,-4.80,-4.80,0
+-14.40,-4.80,12.11,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,12.07,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,12.03,0.00,1.00,-0.00,0.00,0
+0.00,0.00,11.99,0.00,1.00,0.00,0.00,0
+4.80,0.00,11.95,0.00,1.00,0.00,0.00,0
+9.60,0.00,11.91,0.00,1.00,0.00,4.80,0
+14.40,4.80,11.87,0.00,1.00,4.80,4.80,0
+19.20,4.80,11.83,0.00,1.00,4.80,4.80,0
+24.00,4.80,11.79,0.00,1.00,4.80,4.80,0
+28.80,4.80,11.75,0.00,1.00,4.80,9.60,0
+33.60,9.60,11.71,0.00,1.00,9.60,9.60,0
+38.40,9.60,11.67,0.00,1.00,9.60,9.60,0
+43.20,9.60,11.63,0.00,1.00,14.40,9.60,0
+48.00,9.60,11.59,0.00,1.00,14.40,9.60,0
+52.80,9.60,11.55,0.00,1.00,14.40,14.40,0
+57.60,9.60,11.51,0.00,1.00,19.20,14.40,0
+62.40,9.60,11.47,0.00,1.00,24.00,14.40,0
+67.20,14.40,11.43,0.00,1.00,28.80,14.40,0
+72.00,14.40,11.39,0.00,1.00,33.60,14.40,0
+76.80,14.40,11.35,0.00,1.00,43.20,14.40,0
+81.60,14.40,11.31,0.00,1.00,57.60,14.40,0
+86.40,14.40,11.27,0.00,1.00,76.80,14.40,0
+91.20,14.40,11.23,0.00,1.00,96.00,14.40,0
+96.00,14.40,11.19,0.00,1.00,115.20,14.40,0
+100.80,14.40,11.15,0.00,1.00,129.60,14.40,0
+105.60,14.40,11.11,0.00,1.00,139.20,14.40,0
+110.40,14.40,11.07,0.00,1.00,148.80,14.40,0
+115.20,9.60,11.03,0.00,1.00,153.60,14.40,0
+120.00,9.60,10.99,0.00,1.00,158.40,9.60,0
+124.80,9.60,10.95,0.00,1.00,163.20,9.60,0
+129.60,9.60,10.91,0.00,1.00,163.20,9.60,0
+134.40,9.60,10.87,0.00,1.00,168.00,9.60,0
+139.20,9.60,10.83,0.00,1.00,168.00,9.60,0
+144.00,9.60,10.79,0.00,1.00,172.80,9.60,0
+148.80,4.80,10.75,0.00,1.00,172.80,4.80,0
+153.60,4.80,10.71,0.00,1.00,172.80,4.80,0
+158.40,4.80,10.67,0.00,1.00,172.80,4.80,0
+163.20,4.80,10.63,0.00,1.00,177.60,4.80,0
+168.00,4.80,10.59,0.00,1.00,177.60,0.00,0
+172.80,0.00,10.55,0.00,1.00,177.60,0.00,0
+177.60,0.00,10.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.47,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,10.43,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,10.39,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,10.35,0.00,1.00,-177.60,-4.80,0
+-158.40,-4.80,10.31,0.00,1.00,-172.80,-4.80,0
+-153.60,-4.80,10.27,0.00,1.00,-172.80,-9.60,0
+-148.80,-4.80,10.23,0.00,1.00,-172.80,-9.60,0
+-144.00,-9.60,10.19,0.00,1.00,-172.80,-9.60,0
+-139.20,-9.60,10.15,0.00,1.00,-168.00,-9.60,0
+-134.40,-9.60,10.11,0.00,1.00,-168.00,-9.60,0
+-129.60,-9.60,10.07,0.00,1.00,-163.20,-9.60,0
+-124.80,-9.60,10.03,0.00,1.00,-163.20,-14.40,0
+-120.00,-9.60,9.98,0.00,1.00,-158.40,-14.40,0
+-115.20,-9.60,9.94,0.00,1.00,-153.60,-14.40,0
+-110.40,-14.40,9.90,0.00,1.00,-148.80,-14.40,0
+-105.60,-14.40,9.86,0.00,1.00,-139.20,-14.40,0
+-100.80,-14.40,9.82,0.00,1.00,-129.60,-14.40,0
+-96.00,-14.40,9.78,0.00,1.00,-115.20,-14.40,0
+-91.20,-14.40,9.74,0.00,1.00,-96.00,-14.40,0
+-86.40,-14.40,9.70,0.00,1.00,-76.80,-14.40,0
+-81.60,-14.40,9.66,0.00,1.00,-57.60,-14.40,0
+-76.80,-14.40,9.62,0.00,1.00,-43.20,-14.40,0
+-72.00,-14.40,9.58,0.00,1.00,-33.60,-14.40,0
+-67.20,-14.40,9.54,0.00,1.00,-28.80,-14.40,0
+-62.40,-9.60,9.50,0.00,1.00,-24.00,-14.40,0
+-57.60,-9.60,9.46,0.00,1.00,-19.20,-9.60,0
+-52.80,-9.60,9.42,0.00,1.00,-14.40,-9.60,0
+-48.00,-9.60,9.38,0.00,1.00,-14.40,-9.60,0
+-43.20,-9.60,9.34,0.00,1.00,-14.40,-9.60,0
+-38.40,-9.60,9.30,0.00,1.00,-9.60,-9.60,0
+-33.60,-9.60,9.26,0.00,1.00,-9.60,-4.80,0
+-28.80,-4.80,9.22,0.00,1.00,-4.80,-4.80,0
+-24.00,-4.80,9.18,0.00,1.00,-4.80,-4.80,0
+-19.20,-4.80,9.14,0.00,1.00,-4.80,-4.80,0
+-14.40,-4.80,9.10,0.00,1.00,-4.80,-0.00,0
+-9.60,-0.00,9.06,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,9.02,0.00,1.00,-0.00,0.00,0
+0.00,0.00,8.98,0.00,1.00,0.00,0.00,0
+4.80,0.00,8.94,0.00,1.00,0.00,0.00,0
+9.60,0.00,8.90,0.00,1.00,0.00,0.00,0
+14.40,0.00,8.86,0.00,1.00,0.00,4.80,0
+19.20,4.80,8.82,0.00,1.00,4.80,4.80,0
+24.00,4.80,8.78,0.00,1.00,4.80,4.80,0
+28.80,4.80,8.74,0.00,1.00,4.80,4.80,0
+33.60,4.80,8.70,0.00,1.00,4.80,4.80,0
+38.40,4.80,8.66,0.00,1.00,4.80,4.80,0
+43.20,4.80,8.62,0.00,1.00,9.60,4.80,0
+48.00,4.80,8.58,0.00,1.00,9.60,9.60,0
+52.80,4.80,8.54,0.00,1.00,9.60,9.60,0
+57.60,4.80,8.50,0.00,1.00,14.40,9.60,0
+62.40,9.60,8.46,0.00,1.00,14.40,9.60,0
+67.20,9.60,8.42,0.00,1.00,19.20,9.60,0
+72.00,9.60,8.38,0.00,1.00,24.00,9.60,0
+76.80,9.60,8.34,0.00,1.00,33.60,9.60,0
+81.60,9.60,8.30,0.00,1.00,43.20,9.60,0
+86.40,9.60,8.26,0.00,1.00,67.20,9.60,0
+91.20,9.60,8.22,0.00,1.00,96.00,9.60,0
+96.00,9.60,8.18,0.00,1.00,124.80,9.60,0
+100.80,9.60,8.14,0.00,1.00,144.00,9.60,0
+105.60,9.60,8.10,0.00,1.00,153.60,9.60,0
+110.40,9.60,8.06,0.00,1.00,158.40,9.60,0
+115.20,9.60,8.02,0.00,1.00,163.20,9.60,0
+120.00,9.60,7.98,0.00,1.00,168.00,9.60,0
+124.80,4.80,7.94,0.00,1.00,168.00,9.60,0
+129.60,4.80,7.90,0.00,1.00,168.00,4.80,0
+134.40,4.80,7.86,0.00,1.00,172.80,4.80,0
+139.20,4.80,7.82,0.00,1.00,172.80,4.80,0
+144.00,4.80,7.78,0.00,1.00,172.80,4.80,0
+148.80,4.80,7.74,0.00,1.00,172.80,4.80,0
+153.60,4.80,7.70,0.00,1.00,177.60,4.80,0
+158.40,4.80,7.66,0.00,1.00,177.60,4.80,0
+163.20,4.80,7.62,0.00,1.00,177.60,0.00,0
+168.00,0.00,7.58,0.00,1.00,177.60,0.00,0
+172.80,0.00,7.54,0.00,1.00,177.60,0.00,0
+177.60,0.00,7.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,7.46,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,7.42,0.00,1.00,-177.60,-0.00,0
+-168.00,-0.00,7.38,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,7.34,0.00,1.00,-177.60,-4.80,0
+-158.40,-4.80,7.30,0.00,1.00,-177.60,-4.80,0
+-153.60,-4.80,7.26,0.00,1.00,-177.60,-4.80,0
+-148.80,-4.80,7.22,0.00,1.00,-172.80,-4.80,0
+-144.00,-4.80,7.18,0.00,1.00,-172.80,-4.80,0
+-139.20,-4.80,7.14,0.00,1.00,-172.80,-4.80,0
+-134.40,-4.80,7.10,0.00,1.00,-172.80,-9.60,0
+-129.60,-4.80,7.06,0.00,1.00,-168.00,-9.60,0
+-124.80,-4.80,7.02,0.00,1.00,-168.00,-9.60,0
+-120.00,-9.60,6.98,0.00,1.00,-168.00,-9.60,0
+-115.20,-9.60,6.94,0.00,1.00,-163.20,-9.60,0
+-110.40,-9.60,6.90,0.00,1.00,-158.40,-9.60,0
+-105.60,-9.60,6.86,0.00,1.00,-153.60,-9.60,0
+-100.80,-9.60,6.82,0.00,1.00,-144.00,-9.60,0
+-96.00,-9.60,6.78,0.00,1.00,-124.80,-9.60,0
+-91.20,-9.60,6.74,0.00,1.00,-96.00,-9.60,0
+-86.40,-9.60,6.70,0.00,1.00,-67.20,-9.60,0
+-81.60,-9.60,6.66,0.00,1.00,-43.20,-9.60,0
+-76.80,-9.60,6.62,0.00,1.00,-33.60,-9.60,0
+-72.00,-9.60,6.58,0.00,1.00,-24.00,-9.60,0
+-67.20,-9.60,6.54,0.00,1.00,-19.20,-9.60,0
+-62.40,-9.60,6.50,0.00,1.00,-14.40,-9.60,0
+-57.60,-4.80,6.46,0.00,1.00,-14.40,-9.60,0
+-52.80,-4.80,6.42,0.00,1.00,-9.60,-4.80,0
+-48.00,-4.80,6.38,0.00,1.00,-9.60,-4.80,0
+-43.20,-4.80,6.34,0.00,1.00,-9.60,-4.80,0
+-38.40,-4.80,6.30,0.00,1.00,-4.80,-4.80,0
+-33.60,-4.80,6.26,0.00,1.00,-4.80,-4.80,0
+-28.80,-4.80,6.22,0.00,1.00,-4.80,-4.80,0
+-24.00,-4.80,6.18,0.00,1.00,-4.80,-4.80,0
+-19.20,-4.80,6.14,0.00,1.00,-4.80,-0.00,0
+-14.40,-0.00,6.10,0.00,1.00,-0.00,-0.00,0
+-9.60,-0.00,6.06,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,6.02,0.00,1.00,-0.00,0.00,0
+0.00,0.00,5.97,0.00,1.00,0.00,0.00,0
+4.80,0.00,5.93,0.00,1.00,0.00,0.00,0
+9.60,0.00,5.89,0.00,1.00,0.00,0.00,0
+14.40,0.00,5.85,0.00,1.00,0.00,0.00,0
+19.20,0.00,5.81,0.00,1.00,0.00,0.00,0
+24.00,0.00,5.77,0.00,1.00,0.00,0.00,0
+28.80,0.00,5.73,0.00,1.00,0.00,4.80,0
+33.60,0.00,5.69,0.00,1.00,0.00,4.80,0
+38.40,0.00,5.65,0.00,1.00,4.80,4.80,0
+43.20,4.80,5.61,0.00,1.00,4.80,4.80,0
+48.00,4.80,5.57,0.00,1.00,4.80,4.80,0
+52.80,4.80,5.53,0.00,1.00,4.80,4.80,0
+57.60,4.80,5.49,0.00,1.00,4.80,4.80,0
+62.40,4.80,5.45,0.00,1.00,4.80,4.80,0
+67.20,4.80,5.41,0.00,1.00,9.60,4.80,0
+72.00,4.80,5.37,0.00,1.00,9.60,4.80,0
+76.80,4.80,5.33,0.00,1.00,14.40,4.80,0
+81.60,4.80,5.29,0.00,1.00,24.00,4.80,0
+86.40,4.80,5.25,0.00,1.00,43.20,4.80,0
+91.20,4.80,5.21,0.00,1.00,110.40,4.80,0
+96.00,4.80,5.17,0.00,1.00,148.80,4.80,0
+100.80,4.80,5.13,0.00,1.00,163.20,4.80,0
+105.60,4.80,5.09,0.00,1.00,168.00,4.80,0
+110.40,4.80,5.05,0.00,1.00,172.80,4.80,0
+115.20,4.80,5.01,0.00,1.00,172.80,4.80,0
+120.00,4.80,4.97,0.00,1.00,172.80,4.80,0
+124.80,4.80,4.93,0.00,1.00,172.80,4.80,0
+129.60,4.80,4.89,0.00,1.00,177.60,4.80,0
+134.40,4.80,4.85,0.00,1.00,177.60,4.80,0
+139.20,0.00,4.81,0.00,1.00,177.60,4.80,0
+144.00,0.00,4.77,0.00,1.00,177.60,4.80,0
+148.80,0.00,4.73,0.00,1.00,177.60,0.00,0
+153.60,0.00,4.69,0.00,1.00,177.60,0.00,0
+158.40,0.00,4.65,0.00,1.00,177.60,0.00,0
+163.20,0.00,4.61,0.00,1.00,177.60,0.00,0
+168.00,0.00,4.57,0.00,1.00,177.60,0.00,0
+172.80,0.00,4.53,0.00,1.00,177.60,0.00,0
+177.60,0.00,4.49,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,4.45,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,4.41,0.00,1.00,-177.60,-0.00,0
+-168.00,-0.00,4.37,0.00,1.00,-177.60,-0.00,0
+-163.20,-0.00,4.33,0.00,1.00,-177.60,-0.00,0
+-158.40,-0.00,4.29,0.00,1.00,-177.60,-0.00,0
+-153.60,-0.00,4.25,0.00,1.00,-177.60,-4.80,0
+-148.80,-0.00,4.21,0.00,1.00,-177.60,-4.80,0
+-144.00,-0.00,4.17,0.00,1.00,-177.60,-4.80,0
+-139.20,-0.00,4.13,0.00,1.00,-177.60,-4.80,0
+-134.40,-4.80,4.09,0.00,1.00,-177.60,-4.80,0
+-129.60,-4.80,4.05,0.00,1.00,-177.60,-4.80,0
+-124.80,-4.80,4.01,0.00,1.00,-172.80,-4.80,0
+-120.00,-4.80,3.97,0.00,1.00,-172.80,-4.80,0
+-115.20,-4.80,3.93,0.00,1.00,-172.80,-4.80,0
+-110.40,-4.80,3.89,0.00,1.00,-172.80,-4.80,0
+-105.60,-4.80,3.85,0.00,1.00,-168.00,-4.80,0
+-100.80,-4.80,3.81,0.00,1.00,-163.20,-4.80,0
+-96.00,-4.80,3.77,0.00,1.00,-148.80,-4.80,0
+-91.20,-4.80,3.73,0.00,1.00,-110.40,-4.80,0
+-86.40,-4.80,3.69,0.00,1.00,-43.20,-4.80,0
+-81.60,-4.80,3.65,0.00,1.00,-24.00,-4.80,0
+-76.80,-4.80,3.61,0.00,1.00,-14.40,-4.80,0
+-72.00,-4.80,3.57,0.00,1.00,-9.60,-4.80,0
+-67.20,-4.80,3.53,0.00,1.00,-9.60,-4.80,0
+-62.40,-4.80,3.49,0.00,1.00,-4.80,-4.80,0
+-57.60,-4.80,3.45,0.00,1.00,-4.80,-4.80,0
+-52.80,-4.80,3.41,0.00,1.00,-4.80,-4.80,0
+-48.00,-4.80,3.37,0.00,1.00,-4.80,-4.80,0
+-43.20,-4.80,3.33,0.00,1.00,-4.80,-4.80,0
+-38.40,-0.00,3.29,0.00,1.00,-4.80,-4.80,0
+-33.60,-0.00,3.25,0.00,1.00,-0.00,-0.00,0
+-28.80,-0.00,3.21,0.00,1.00,-0.00,-0.00,0
+-24.00,-0.00,3.17,0.00,1.00,-0.00,-0.00,0
+-19.20,-0.00,3.13,0.00,1.00,-0.00,-0.00,0
+-14.40,-0.00,3.09,0.00,1.00,-0.00,-0.00,0
+-9.60,-0.00,3.05,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,3.01,0.00,1.00,-0.00,0.00,0
+0.00,0.00,2.97,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,2.93,0.00,1.00,-0.00,0.00,0
+9.60,-0.00,2.89,0.00,1.00,-0.00,0.00,0
+14.40,-0.00,2.85,0.00,1.00,-0.00,0.00,0
+19.20,-0.00,2.81,0.00,1.00,-0.00,0.00,0
+24.00,-0.00,2.77,0.00,1.00,-0.00,0.00,0
+28.80,-0.00,2.73,0.00,1.00,-0.00,0.00,0
+33.60,-0.00,2.69,0.00,1.00,-0.00,0.00,0
+38.40,-0.00,2.65,0.00,1.00,-0.00,0.00,0
+43.20,-0.00,2.61,0.00,1.00,-0.00,0.00,0
+48.00,-0.00,2.57,0.00,1.00,-0.00,0.00,0
+52.80,-0.00,2.53,0.00,1.00,-0.00,0.00,0
+57.60,-0.00,2.49,0.00,1.00,-0.00,0.00,0
+62.40,-0.00,2.45,0.00,1.00,-0.00,0.00,0
+67.20,-0.00,2.41,0.00,1.00,-4.80,0.00,0
+72.00,-0.00,2.37,0.00,1.00,-4.80,0.00,0
+76.80,-0.00,2.33,0.00,1.00,-4.80,0.00,0
+81.60,-0.00,2.29,0.00,1.00,-9.60,0.00,0
+86.40,-0.00,2.25,0.00,1.00,-19.20,0.00,0
+91.20,-0.00,2.21,0.00,1.00,-134.40,0.00,0
+96.00,-0.00,2.17,0.00,1.00,-168.00,0.00,0
+100.80,-0.00,2.13,0.00,1.00,-172.80,0.00,0
+105.60,-0.00,2.09,0.00,1.00,-177.60,0.00,0
+110.40,-0.00,2.05,0.00,1.00,-177.60,0.00,0
+115.20,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+120.00,-0.00,1.96,0.00,1.00,-177.60,0.00,0
+124.80,-0.00,1.92,0.00,1.00,-177.60,0.00,0
+129.60,-0.00,1.88,0.00,1.00,-177.60,0.00,0
+134.40,-0.00,1.84,0.00,1.00,-177.60,0.00,0
+139.20,-0.00,1.80,0.00,1.00,-177.60,0.00,0
+144.00,-0.00,1.76,0.00,1.00,-177.60,0.00,0
+148.80,-0.00,1.72,0.00,1.00,-177.60,0.00,0
+153.60,-0.00,1.68,0.00,1.00,-177.60,0.00,0
+158.40,-0.00,1.64,0.00,1.00,-177.60,0.00,0
+163.20,-0.00,1.60,0.00,1.00,-177.60,0.00,0
+168.00,-0.00,1.56,0.00,1.00,-177.60,0.00,0
+172.80,-0.00,1.52,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,1.48,0.00,1.00,-177.60,0.00,0
+-177.60,0.00,1.44,0.00,1.00,177.60,0.00,0
+-172.80,0.00,1.40,0.00,1.00,177.60,0.00,0
+-168.00,0.00,1.36,0.00,1.00,177.60,0.00,0
+-163.20,0.00,1.32,0.00,1.00,177.60,0.00,0
+-158.40,0.00,1.28,0.00,1.00,177.60,0.00,0
+-153.60,0.00,1.24,0.00,1.00,177.60,0.00,0
+-148.80,0.00,1.20,0.00,1.00,177.60,0.00,0
+-144.00,0.00,1.16,0.00,1.00,177.60,0.00,0
+-139.20,0.00,1.12,0.00,1.00,177.60,0.00,0
+-134.40,0.00,1.08,0.00,1.00,177.60,0.00,0
+-129.60,0.00,1.04,0.00,1.00,177.60,0.00,0
+-124.80,0.00,1.00,0.00,1.00,177.60,0.00,0
+-120.00,0.00,0.96,0.00,1.00,177.60,0.00,0
+-115.20,0.00,0.92,0.00,1.00,177.60,0.00,0
+-110.40,0.00,0.88,0.00,1.00,177.60,0.00,0
+-105.60,0.00,0.84,0.00,1.00,177.60,0.00,0
+-100.80,0.00,0.80,0.00,1.00,172.80,0.00,0
+-96.00,0.00,0.76,0.00,1.00,168.00,0.00,0
+-91.20,0.00,0.72,0.00,1.00,134.40,0.00,0
+-86.40,0.00,0.68,0.00,1.00,19.20,0.00,0
+-81.60,0.00,0.64,0.00,1.00,9.60,0.00,0
+-76.80,0.00,0.60,0.00,1.00,4.80,0.00,0
+-72.00,0.00,0.56,0.00,1.00,4.80,0.00,0
+-67.20,0.00,0.52,0.00,1.00,4.80,0.00,0
+-62.40,0.00,0.48,0.00,1.00,0.00,0.00,0
+-57.60,0.00,0.44,0.00,1.00,0.00,0.00,0
+-52.80,0.00,0.40,0.00,1.00,0.00,0.00,0
+-48.00,0.00,0.36,0.00,1.00,0.00,0.00,0
+-43.20,0.00,0.32,0.00,1.00,0.00,0.00,0
+-38.40,0.00,0.28,0.00,1.00,0.00,0.00,0
+-33.60,0.00,0.24,0.00,1.00,0.00,0.00,0
+-28.80,0.00,0.20,0.00,1.00,0.00,0.00,0
+-24.00,0.00,0.16,0.00,1.00,0.00,0.00,0
+-19.20,0.00,0.12,0.00,1.00,0.00,0.00,0
+-14.40,0.00,0.08,0.00,1.00,0.00,0.00,0
+-9.60,0.00,0.04,0.00,1.00,0.00,0.00,0
+-4.80,0.00,0.00,0.00,1.00,0.00,0.00,0
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA2TC16c.met b/scripts/testv/stvOMASA_4ISM_2MASA2TC16c.met
new file mode 100644
index 0000000000000000000000000000000000000000..1b62022af572fc4f198e4212cca88d51913ec3c4
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA2TC16c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2eb412d646d7a32c77413dea54dc44cf45dc49e6d8c2de19abe4f4b93a91fa4a
+size 159900
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA2TC16c.wav b/scripts/testv/stvOMASA_4ISM_2MASA2TC16c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..02f2d705c14b801c161797b33e94bddc06d4bdad
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA2TC16c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:440df9d8e2c9a5a6849cd50d66316b6c6663096cea66c561b2dd59bf7a6f75c3
+size 576080
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA2TC16c_ISM1.csv b/scripts/testv/stvOMASA_4ISM_2MASA2TC16c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA2TC16c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA2TC16c_ISM2.csv b/scripts/testv/stvOMASA_4ISM_2MASA2TC16c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA2TC16c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA2TC16c_ISM3.csv b/scripts/testv/stvOMASA_4ISM_2MASA2TC16c_ISM3.csv
new file mode 100644
index 0000000000000000000000000000000000000000..14eee9b693b536fa2fd22d2813d7f588b8930b06
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA2TC16c_ISM3.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0
+-177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0
+4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0
+-168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0
+14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0
+-163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0
+19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0
+-153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0
+28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0
+-148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0
+38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0
+-139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0
+48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0
+-124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0
+57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0
+-115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0
+72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0
+-100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0
+86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0
+-86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0
+100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0
+-76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0
+110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0
+-62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0
+124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0
+-52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0
+134.40,33.60,0.28,0.00,1.00,177.60,0.00,0
+-38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0
+144.00,28.80,0.30,0.00,1.00,177.60,0.00,0
+-33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0
+153.60,24.00,0.32,0.00,1.00,177.60,0.00,0
+-24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0
+158.40,19.20,0.34,0.00,1.00,177.60,0.00,0
+-14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0
+168.00,9.60,0.36,0.00,1.00,177.60,0.00,0
+-9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0
+172.80,4.80,0.38,0.00,1.00,177.60,0.00,0
+-0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0
+-177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0
+4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0
+14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0
+19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0
+-158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0
+28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0
+-148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0
+33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0
+-139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0
+43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0
+-129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0
+57.60,38.40,15.47,0.00,1.00,177.60,0.00,0
+-120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0
+67.20,43.20,15.44,0.00,1.00,177.60,0.00,0
+-105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0
+81.60,43.20,15.42,0.00,1.00,177.60,0.00,0
+-91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0
+96.00,43.20,15.40,0.00,1.00,0.00,0.00,0
+-76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0
+110.40,43.20,15.38,0.00,1.00,0.00,0.00,0
+-67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0
+120.00,38.40,15.36,0.00,1.00,0.00,0.00,0
+-52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0
+129.60,38.40,15.34,0.00,1.00,0.00,0.00,0
+-43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0
+144.00,33.60,15.32,0.00,1.00,0.00,0.00,0
+-33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0
+148.80,24.00,15.30,0.00,1.00,0.00,0.00,0
+-24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0
+158.40,19.20,15.27,0.00,1.00,0.00,0.00,0
+-19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0
+168.00,14.40,15.25,0.00,1.00,0.00,0.00,0
+-9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0
+172.80,4.80,15.23,0.00,1.00,0.00,0.00,0
+-4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0
+0.00,0.00,15.21,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0
+9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0
+14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0
+-163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0
+24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0
+-153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0
+28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0
+-144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0
+38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0
+-134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0
+48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0
+-124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0
+62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0
+-115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0
+72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0
+-100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0
+86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0
+-86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0
+96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0
+-76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0
+110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0
+-62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0
+120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0
+-52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0
+134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0
+-43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0
+144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0
+-33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0
+148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0
+-24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0
+158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0
+-19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0
+168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0
+-9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0
+172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0
+4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0
+14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0
+19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0
+-153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0
+28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0
+-148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0
+38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0
+-139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0
+48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0
+-124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0
+57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0
+-115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0
+72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0
+-105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0
+81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0
+-91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0
+96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0
+-76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0
+105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0
+-67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0
+120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0
+-57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0
+129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0
+-43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0
+139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0
+-33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0
+148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0
+-28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0
+158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0
+-19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0
+163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0
+-9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0
+172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0
+0.00,0.00,1.60,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0
+9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0
+14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0
+-158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0
+24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0
+-153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0
+33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0
+-144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0
+43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0
+-134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0
+52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0
+-124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0
+62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0
+-110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0
+72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0
+-100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0
+86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0
+-86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0
+96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0
+-76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0
+110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0
+-67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0
+120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0
+-52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0
+129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0
+-43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0
+139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0
+-33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0
+148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0
+-24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0
+158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0
+-19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0
+168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0
+172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0
+14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0
+-163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0
+24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0
+-153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0
+28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0
+-144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0
+38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0
+-134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0
+48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0
+-124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0
+62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0
+-115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0
+72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0
+-100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0
+81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0
+-91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0
+96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0
+-81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0
+105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0
+-67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0
+115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0
+-57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0
+129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0
+-48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0
+139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0
+-38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0
+148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0
+-28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0
+153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0
+-19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0
+163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0
+-9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0
+172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0
+0.00,0.00,13.61,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0
+9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0
+-168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0
+24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0
+-148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0
+33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0
+-139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0
+43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0
+-129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0
+52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0
+-120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0
+62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0
+-110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0
+76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0
+-100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0
+86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0
+-86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0
+96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0
+-76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0
+105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0
+-67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0
+120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0
+-57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0
+129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0
+-48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0
+139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0
+-38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0
+148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0
+158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0
+-19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0
+163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0
+172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0
+4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0
+14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0
+-163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0
+24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0
+-153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0
+33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0
+-144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0
+43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0
+-134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0
+52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0
+-124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0
+62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0
+-115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0
+72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0
+-100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0
+81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0
+-91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0
+96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0
+-81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0
+105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0
+-67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0
+115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0
+-57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0
+124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0
+-48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0
+134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0
+-38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0
+144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0
+-28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0
+153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0
+-19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0
+163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0
+-14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0
+172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0
+-4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0
+0.00,0.00,3.20,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0
+9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0
+19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0
+24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0
+-148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0
+33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0
+-139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0
+43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0
+-129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0
+52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0
+-120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0
+67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0
+-110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0
+76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0
+-100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0
+86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0
+-86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0
+96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0
+-76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0
+105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0
+-67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0
+115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0
+-57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0
+129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0
+-48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0
+139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0
+-38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0
+148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0
+153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0
+-19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0
+163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0
+172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0
+4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0
+14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0
+24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0
+-153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0
+33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0
+-144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0
+43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0
+-134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0
+52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0
+-124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0
+62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0
+-110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0
+72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0
+-100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0
+81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0
+-91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0
+96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0
+-81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0
+105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0
+-72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0
+115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0
+-57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0
+124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0
+-48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0
+134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0
+-38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0
+144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0
+-28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0
+153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0
+-24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0
+163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0
+-14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0
+172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,12.01,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0
+9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0
+-158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0
+28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0
+-148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0
+38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0
+-139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0
+48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0
+-129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0
+57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0
+-120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0
+67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0
+-110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0
+76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0
+-100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0
+86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0
+-86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0
+96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0
+-76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0
+105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0
+-67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0
+115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0
+-57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0
+124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0
+-48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0
+134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0
+-38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0
+144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0
+-28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0
+153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0
+-19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0
+163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0
+172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0
+4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0
+14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0
+24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0
+-148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0
+33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0
+-139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0
+43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0
+-129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0
+52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0
+-120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0
+62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0
+-110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0
+72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0
+-100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0
+81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0
+-91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0
+96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0
+-81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0
+105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0
+-72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0
+115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0
+-62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0
+124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0
+-52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0
+134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0
+-43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0
+144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0
+-33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0
+153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0
+-24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0
+163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0
+172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0
+0.00,0.00,4.81,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0
+9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0
+19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0
+28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0
+-148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0
+38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0
+-139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0
+48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0
+-129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0
+57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0
+-120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0
+67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0
+-110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0
+76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0
+-100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0
+86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0
+-86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0
+96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0
+-76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0
+105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0
+-67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0
+115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0
+-57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0
+124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0
+-48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0
+134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0
+-38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0
+144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0
+-28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0
+153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0
+-19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0
+163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0
+-9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0
+172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0
+4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0
+14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0
+24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0
+-148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0
+33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0
+-139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0
+43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0
+-129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0
+52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0
+-120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0
+62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0
+-110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0
+72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0
+-100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0
+81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0
+-91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0
+96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0
+-81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0
+105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0
+-72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0
+115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0
+-62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0
+124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0
+-52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0
+134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0
+-43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0
+144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0
+-33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0
+153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0
+-24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0
+163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0
+172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+0.00,0.00,10.40,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0
+9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0
+19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0
+28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0
+-148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0
+38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0
+-139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0
+48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0
+-129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0
+57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0
+-120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0
+67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0
+-110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0
+76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0
+-100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0
+86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0
+-86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0
+96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0
+-76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0
+105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0
+-67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0
+115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0
+-57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0
+124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0
+-48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0
+134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0
+-38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0
+144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0
+-28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0
+153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0
+163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0
+-9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0
+172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0
+4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0
+14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0
+24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0
+33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0
+-139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0
+43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0
+-129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0
+52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0
+-120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0
+62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0
+-110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0
+72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0
+-100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0
+81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0
+-91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0
+96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0
+-81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0
+105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0
+-72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0
+115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0
+-62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0
+124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0
+-52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0
+134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0
+-43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0
+144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0
+-33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0
+153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0
+-24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0
+163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0
+172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,6.41,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0
+9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0
+19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0
+-158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0
+28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0
+-148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0
+38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0
+-139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0
+48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0
+-129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0
+57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0
+-120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0
+67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0
+-110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0
+76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0
+-100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0
+86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0
+-86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0
+96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0
+-76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0
+105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0
+-67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0
+115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0
+-57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0
+124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0
+-48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0
+134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0
+-38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0
+144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0
+-28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0
+153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0
+163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0
+172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0
+4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0
+14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0
+-158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0
+24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0
+33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0
+-139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0
+43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0
+-129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0
+52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0
+-120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0
+62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0
+-110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0
+72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0
+-100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0
+81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0
+-91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0
+96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0
+-81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0
+105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0
+-72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0
+115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0
+-62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0
+124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0
+-52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0
+134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0
+-43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0
+144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0
+-33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0
+153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0
+-24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0
+163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0
+-14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0
+172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.80,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0
+9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0
+19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0
+-158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0
+28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0
+-148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0
+38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0
+-139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0
+48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0
+-129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0
+57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0
+-120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0
+67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0
+-110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0
+76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0
+-100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0
+86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0
+-86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0
+96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0
+-76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0
+105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0
+-67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0
+115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0
+-57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0
+124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0
+-48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0
+134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0
+-38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0
+144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0
+-28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0
+153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0
+-19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0
+163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0
+172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0
+-0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0
+4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0
+-168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0
+14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0
+-158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0
+24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0
+-148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0
+33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0
+-139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0
+43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0
+-129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0
+52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0
+-120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0
+62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0
+-110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0
+72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0
+-100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0
+81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0
+-91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0
+96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0
+-81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0
+105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0
+-72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0
+115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0
+-62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0
+124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0
+-52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0
+134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0
+-43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0
+144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0
+-33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0
+153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0
+-24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0
+163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0
+-14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0
+172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.01,0.00,1.00,0.00,0.00,0
+-177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0
+-168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0
+19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0
+-158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0
+28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0
+-148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0
+38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0
+-139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0
+48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0
+-129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0
+57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0
+-120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0
+67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0
+-110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0
+76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0
+-100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0
+86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0
+-86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0
+96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0
+-76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0
+105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0
+-67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0
+115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0
+-57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0
+124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0
+-48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0
+134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0
+-38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0
+144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0
+-28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0
+153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0
+-19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0
+163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0
+172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0
+14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0
+-158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0
+24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0
+-148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0
+33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0
+-139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0
+43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0
+-129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0
+52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0
+-120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0
+62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0
+-110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0
+72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0
+-100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0
+81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0
+-91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0
+96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0
+-81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0
+105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0
+-72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0
+115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0
+-62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0
+124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0
+-52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0
+134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0
+-43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0
+144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0
+-33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0
+153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0
+-24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0
+163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0
+-4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0
+0.00,0.00,7.20,0.00,1.00,0.00,0.00,0
+-177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0
+-168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0
+19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0
+38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0
+-139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0
+48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0
+-129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0
+57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0
+-120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0
+67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0
+-110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0
+76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0
+-100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0
+86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0
+-86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0
+96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0
+-76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0
+105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0
+-67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0
+115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0
+-57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0
+124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0
+-48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0
+134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0
+-38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0
+144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0
+-19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0
+163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0
+14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0
+-148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0
+33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0
+-139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0
+43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0
+-129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0
+52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0
+-120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0
+62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0
+72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0
+-100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0
+81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0
+-91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0
+96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0
+-81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0
+105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0
+-72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0
+115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0
+-62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0
+124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0
+-52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0
+134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0
+-43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0
+144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0
+-33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0
+153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0
+0.00,0.00,9.61,0.00,1.00,0.00,0.00,0
+-177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0
+48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0
+-129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0
+57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0
+-120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0
+67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0
+-110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0
+76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0
+-100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0
+86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0
+-86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0
+96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0
+-76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0
+105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0
+-67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0
+115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0
+-57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0
+124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0
+-48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0
+134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0
+163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0
+-9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0
+-148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0
+33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0
+-139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0
+43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0
+-129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0
+52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0
+-120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0
+62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0
+72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0
+-100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0
+81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0
+-91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0
+96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0
+-81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0
+105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0
+-72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0
+115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0
+-62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0
+124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0
+-52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0
+134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0
+-43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0
+144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0
+-33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0
+153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0
+-14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0
+172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0
+0.00,0.00,5.60,0.00,1.00,0.00,0.00,0
+-177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0
+-158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0
+28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0
+-148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0
+48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0
+-129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0
+57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0
+-120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0
+67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0
+-110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0
+76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0
+-100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0
+86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0
+-86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0
+96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0
+-76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0
+105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0
+-67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0
+115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0
+-57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0
+124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0
+-48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0
+134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0
+-28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0
+153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0
+-158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0
+-148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0
+33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0
+-139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0
+43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0
+-129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0
+52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0
+-120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0
+62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0
+-110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0
+72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0
+-100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0
+81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0
+-91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0
+96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0
+-81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0
+105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0
+-72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0
+115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0
+-62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0
+124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0
+-52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0
+134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0
+-43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0
+144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0
+-33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0
+153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0
+0.00,0.00,11.21,0.00,1.00,0.00,0.00,0
+-177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0
+28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0
+-148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0
+38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0
+-139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0
+48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0
+57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0
+-120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0
+67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0
+-110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0
+76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0
+-100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0
+86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0
+-86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0
+96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0
+-76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0
+105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0
+-67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0
+115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0
+-57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0
+124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0
+-48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0
+134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0
+-38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0
+144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0
+-28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0
+153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0
+-148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0
+-139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0
+43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0
+-129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0
+52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0
+-120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0
+62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0
+-110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0
+72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0
+-100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0
+81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0
+-91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0
+96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0
+-81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0
+105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0
+-72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0
+115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0
+-62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0
+124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0
+-52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0
+134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0
+-43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0
+-33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0
+153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0
+-24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0
+163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,3.99,0.00,1.00,0.00,0.00,0
+-177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0
+19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0
+-148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0
+33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0
+43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0
+52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0
+-120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0
+62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0
+-110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0
+76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0
+-100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0
+86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0
+-86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0
+96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0
+-76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0
+105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0
+-67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0
+120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0
+-57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0
+-48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0
+139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0
+148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0
+158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0
+163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0
+43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0
+-134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0
+-124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0
+62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0
+-110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0
+72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0
+-100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0
+81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0
+-91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0
+96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0
+-81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0
+105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0
+-72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0
+115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0
+-57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0
+124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0
+-48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0
+134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0
+-38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0
+-28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0
+-24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,12.82,0.00,1.00,0.00,0.00,0
+-177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0
+-148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0
+33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0
+-129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0
+-120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0
+62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0
+-110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0
+76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0
+-100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0
+86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0
+-86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0
+96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0
+-76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0
+110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0
+-67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0
+120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0
+-57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0
+-48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0
+-163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0
+33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0
+43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0
+-134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0
+62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0
+-115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0
+72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0
+-100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0
+81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0
+-91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0
+96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0
+-81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0
+105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0
+-67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0
+115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0
+-57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0
+124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0
+-48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0
+134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0
+-38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0
+144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0
+-14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,2.39,0.00,1.00,0.00,0.00,0
+-177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0
+33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0
+-144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0
+-134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0
+62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0
+-110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0
+72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0
+-100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0
+86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0
+-86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0
+96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0
+-76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0
+110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0
+-67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0
+120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0
+-52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0
+129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0
+-19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0
+28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0
+-144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0
+38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0
+-134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0
+48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0
+57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0
+-115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0
+72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0
+-105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0
+81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0
+-91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0
+96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0
+-81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0
+105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0
+-67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0
+120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0
+-57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0
+129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0
+-48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0
+139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0
+-38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0
+158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0
+0.00,0.00,14.42,0.00,1.00,0.00,0.00,0
+-177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0
+-163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0
+24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0
+28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0
+-144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0
+38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0
+-134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0
+48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0
+62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0
+-115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0
+72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0
+86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0
+-86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0
+96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0
+-76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0
+110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0
+-62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0
+120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0
+-52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0
+134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0
+158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0
+-148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0
+38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0
+-139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0
+48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0
+-129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0
+-115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0
+67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0
+-105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0
+81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0
+-91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0
+96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0
+105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0
+-67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0
+120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0
+-52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0
+129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0
+139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0
+163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0
+0.00,0.00,0.79,0.00,1.00,0.00,0.00,0
+-177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0
+4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0
+-163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0
+19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0
+-153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0
+28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0
+-148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0
+38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0
+-139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0
+48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0
+-124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0
+57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0
+-115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0
+72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0
+86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0
+-86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0
+100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0
+-76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0
+110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0
+-62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0
+124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0
+-48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0
+134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0
+-38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0
+-28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0
+-24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0
+163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0
+168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0
+9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0
+-158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0
+-148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0
+33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0
+-139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0
+43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0
+-129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0
+-120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0
+67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0
+-105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0
+81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0
+-91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0
+96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0
+110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0
+-67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0
+120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0
+-52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0
+134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0
+144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0
+153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0
+-24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0
+-19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0
+168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA2TC16c_ISM4.csv b/scripts/testv/stvOMASA_4ISM_2MASA2TC16c_ISM4.csv
new file mode 100644
index 0000000000000000000000000000000000000000..8a14c3413ddd2dd47415bf6de3e19631f65f8f6c
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA2TC16c_ISM4.csv
@@ -0,0 +1,1500 @@
+-0.00,0.00,0.00,0.00,1.00,0.00,4.80,0
+-0.00,4.80,0.06,0.00,1.00,4.80,9.60,0
+-0.00,9.60,0.13,0.00,1.00,9.60,14.40,0
+-0.00,14.40,0.19,0.00,1.00,14.40,19.20,0
+-0.00,19.20,0.26,0.00,1.00,19.20,24.00,0
+-0.00,24.00,0.32,0.00,1.00,24.00,28.80,0
+-0.00,28.80,0.39,0.00,1.00,28.80,33.60,0
+-0.00,33.60,0.45,0.00,1.00,33.60,38.40,0
+-0.00,38.40,0.51,0.00,1.00,38.40,43.20,0
+-0.00,43.20,0.58,0.00,1.00,43.20,48.00,0
+-0.00,48.00,0.64,0.00,1.00,48.00,52.80,0
+-0.00,52.80,0.71,0.00,1.00,52.80,57.60,0
+-0.00,57.60,0.77,0.00,1.00,57.60,62.40,0
+-0.00,62.40,0.84,0.00,1.00,62.40,67.20,0
+-0.00,67.20,0.90,0.00,1.00,67.20,72.00,0
+-0.00,72.00,0.96,0.00,1.00,72.00,76.80,0
+-0.00,76.80,1.03,0.00,1.00,76.80,81.60,0
+-0.00,81.60,1.09,0.00,1.00,81.60,86.40,0
+-0.00,86.40,1.16,0.00,1.00,86.40,86.40,0
+-177.60,89.20,1.22,0.00,1.00,91.20,81.60,0
+-177.60,86.40,1.29,0.00,1.00,96.00,76.80,0
+-177.60,81.60,1.35,0.00,1.00,100.80,72.00,0
+-177.60,76.80,1.41,0.00,1.00,105.60,67.20,0
+-177.60,72.00,1.48,0.00,1.00,110.40,62.40,0
+-177.60,67.20,1.54,0.00,1.00,115.20,57.60,0
+177.60,62.40,1.61,0.00,1.00,120.00,52.80,0
+177.60,57.60,1.67,0.00,1.00,124.80,48.00,0
+177.60,52.80,1.73,0.00,1.00,129.60,43.20,0
+177.60,48.00,1.80,0.00,1.00,134.40,38.40,0
+177.60,43.20,1.86,0.00,1.00,139.20,33.60,0
+177.60,38.40,1.93,0.00,1.00,144.00,28.80,0
+177.60,33.60,1.99,0.00,1.00,148.80,24.00,0
+177.60,28.80,2.06,0.00,1.00,153.60,19.20,0
+177.60,24.00,2.12,0.00,1.00,158.40,14.40,0
+177.60,19.20,2.18,0.00,1.00,163.20,9.60,0
+177.60,14.40,2.25,0.00,1.00,168.00,4.80,0
+177.60,9.60,2.31,0.00,1.00,172.80,0.00,0
+177.60,4.80,2.38,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.44,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,2.51,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,2.57,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,2.63,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,2.70,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,2.76,0.00,1.00,-153.60,-28.80,0
+-177.60,-28.80,2.83,0.00,1.00,-148.80,-33.60,0
+-177.60,-33.60,2.89,0.00,1.00,-144.00,-38.40,0
+-177.60,-38.40,2.96,0.00,1.00,-139.20,-43.20,0
+-177.60,-48.00,3.02,0.00,1.00,-134.40,-48.00,0
+-177.60,-48.00,3.08,0.00,1.00,-129.60,-52.80,0
+-177.60,-52.80,3.15,0.00,1.00,-124.80,-57.60,0
+-177.60,-57.60,3.21,0.00,1.00,-120.00,-62.40,0
+177.60,-62.40,3.28,0.00,1.00,-115.20,-67.20,0
+177.60,-67.20,3.34,0.00,1.00,-110.40,-72.00,0
+177.60,-76.80,3.41,0.00,1.00,-105.60,-76.80,0
+177.60,-76.80,3.47,0.00,1.00,-100.80,-81.60,0
+177.60,-86.40,3.53,0.00,1.00,-96.00,-86.40,0
+177.60,-89.20,3.60,0.00,1.00,-91.20,-86.40,0
+0.00,-86.40,3.66,0.00,1.00,-86.40,-81.60,0
+0.00,-81.60,3.73,0.00,1.00,-81.60,-76.80,0
+0.00,-76.80,3.79,0.00,1.00,-76.80,-72.00,0
+0.00,-72.00,3.86,0.00,1.00,-72.00,-67.20,0
+0.00,-67.20,3.92,0.00,1.00,-67.20,-62.40,0
+0.00,-62.40,3.98,0.00,1.00,-62.40,-57.60,0
+0.00,-57.60,4.05,0.00,1.00,-57.60,-52.80,0
+0.00,-52.80,4.11,0.00,1.00,-52.80,-48.00,0
+0.00,-48.00,4.18,0.00,1.00,-48.00,-43.20,0
+0.00,-43.20,4.24,0.00,1.00,-43.20,-38.40,0
+0.00,-38.40,4.31,0.00,1.00,-38.40,-33.60,0
+0.00,-33.60,4.37,0.00,1.00,-33.60,-28.80,0
+0.00,-28.80,4.43,0.00,1.00,-28.80,-24.00,0
+0.00,-24.00,4.50,0.00,1.00,-24.00,-19.20,0
+0.00,-19.20,4.56,0.00,1.00,-19.20,-14.40,0
+0.00,-14.40,4.63,0.00,1.00,-14.40,-9.60,0
+0.00,-9.60,4.69,0.00,1.00,-9.60,-4.80,0
+0.00,-4.80,4.76,0.00,1.00,-4.80,0.00,0
+0.00,0.00,4.82,0.00,1.00,0.00,4.80,0
+0.00,4.80,4.88,0.00,1.00,4.80,9.60,0
+0.00,9.60,4.95,0.00,1.00,9.60,14.40,0
+0.00,14.40,5.01,0.00,1.00,14.40,19.20,0
+0.00,19.20,5.08,0.00,1.00,19.20,24.00,0
+0.00,24.00,5.14,0.00,1.00,24.00,28.80,0
+4.80,28.80,5.20,0.00,1.00,28.80,33.60,0
+4.80,33.60,5.27,0.00,1.00,33.60,38.40,0
+4.80,38.40,5.33,0.00,1.00,38.40,43.20,0
+4.80,43.20,5.40,0.00,1.00,43.20,48.00,0
+4.80,48.00,5.46,0.00,1.00,48.00,52.80,0
+4.80,52.80,5.53,0.00,1.00,52.80,57.60,0
+9.60,57.60,5.59,0.00,1.00,57.60,62.40,0
+9.60,62.40,5.65,0.00,1.00,62.40,67.20,0
+9.60,67.20,5.72,0.00,1.00,67.20,72.00,0
+14.40,72.00,5.78,0.00,1.00,72.00,76.80,0
+19.20,76.80,5.85,0.00,1.00,76.80,81.60,0
+28.80,81.60,5.91,0.00,1.00,81.60,86.40,0
+52.80,86.40,5.98,0.00,1.00,86.40,86.40,0
+105.60,86.40,6.04,0.00,1.00,91.20,81.60,0
+139.20,81.60,6.10,0.00,1.00,96.00,76.80,0
+158.40,76.80,6.17,0.00,1.00,100.80,72.00,0
+163.20,72.00,6.23,0.00,1.00,105.60,67.20,0
+168.00,67.20,6.30,0.00,1.00,110.40,62.40,0
+168.00,62.40,6.36,0.00,1.00,115.20,57.60,0
+172.80,57.60,6.43,0.00,1.00,120.00,52.80,0
+172.80,52.80,6.49,0.00,1.00,124.80,48.00,0
+172.80,48.00,6.55,0.00,1.00,129.60,43.20,0
+172.80,43.20,6.62,0.00,1.00,134.40,38.40,0
+177.60,38.40,6.68,0.00,1.00,139.20,33.60,0
+177.60,33.60,6.75,0.00,1.00,144.00,28.80,0
+177.60,28.80,6.81,0.00,1.00,148.80,24.00,0
+177.60,24.00,6.88,0.00,1.00,153.60,19.20,0
+177.60,19.20,6.94,0.00,1.00,158.40,14.40,0
+177.60,14.40,7.00,0.00,1.00,163.20,9.60,0
+177.60,9.60,7.07,0.00,1.00,168.00,4.80,0
+177.60,4.80,7.13,0.00,1.00,172.80,0.00,0
+177.60,0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,7.26,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,7.33,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,7.39,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,7.45,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,7.52,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,7.58,0.00,1.00,-153.60,-28.80,0
+-177.60,-28.80,7.65,0.00,1.00,-148.80,-33.60,0
+-177.60,-33.60,7.71,0.00,1.00,-144.00,-38.40,0
+-177.60,-38.40,7.78,0.00,1.00,-139.20,-43.20,0
+-172.80,-43.20,7.84,0.00,1.00,-134.40,-48.00,0
+-172.80,-48.00,7.90,0.00,1.00,-129.60,-52.80,0
+-172.80,-52.80,7.97,0.00,1.00,-124.80,-57.60,0
+-172.80,-57.60,8.03,0.00,1.00,-120.00,-62.40,0
+-168.00,-62.40,8.10,0.00,1.00,-115.20,-67.20,0
+-168.00,-67.20,8.16,0.00,1.00,-110.40,-72.00,0
+-163.20,-72.00,8.22,0.00,1.00,-105.60,-76.80,0
+-158.40,-76.80,8.29,0.00,1.00,-100.80,-81.60,0
+-139.20,-81.60,8.35,0.00,1.00,-96.00,-86.40,0
+-105.60,-86.40,8.42,0.00,1.00,-91.20,-86.40,0
+-52.80,-86.40,8.48,0.00,1.00,-86.40,-81.60,0
+-28.80,-81.60,8.55,0.00,1.00,-81.60,-76.80,0
+-19.20,-76.80,8.61,0.00,1.00,-76.80,-72.00,0
+-14.40,-72.00,8.67,0.00,1.00,-72.00,-67.20,0
+-9.60,-67.20,8.74,0.00,1.00,-67.20,-62.40,0
+-9.60,-62.40,8.80,0.00,1.00,-62.40,-57.60,0
+-9.60,-57.60,8.87,0.00,1.00,-57.60,-52.80,0
+-4.80,-52.80,8.93,0.00,1.00,-52.80,-48.00,0
+-4.80,-48.00,9.00,0.00,1.00,-48.00,-43.20,0
+-4.80,-43.20,9.06,0.00,1.00,-43.20,-38.40,0
+-4.80,-38.40,9.12,0.00,1.00,-38.40,-33.60,0
+-4.80,-33.60,9.19,0.00,1.00,-33.60,-28.80,0
+-4.80,-28.80,9.25,0.00,1.00,-28.80,-24.00,0
+-0.00,-24.00,9.32,0.00,1.00,-24.00,-19.20,0
+-0.00,-19.20,9.38,0.00,1.00,-19.20,-14.40,0
+-0.00,-14.40,9.45,0.00,1.00,-14.40,-9.60,0
+-0.00,-9.60,9.51,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,9.57,0.00,1.00,-4.80,0.00,0
+0.00,0.00,9.64,0.00,1.00,0.00,4.80,0
+0.00,4.80,9.70,0.00,1.00,4.80,9.60,0
+0.00,9.60,9.77,0.00,1.00,9.60,14.40,0
+4.80,14.40,9.83,0.00,1.00,14.40,19.20,0
+4.80,19.20,9.90,0.00,1.00,19.20,24.00,0
+4.80,24.00,9.96,0.00,1.00,24.00,28.80,0
+4.80,28.80,10.02,0.00,1.00,28.80,33.60,0
+4.80,33.60,10.09,0.00,1.00,33.60,38.40,0
+9.60,38.40,10.15,0.00,1.00,38.40,43.20,0
+9.60,43.20,10.22,0.00,1.00,43.20,48.00,0
+9.60,48.00,10.28,0.00,1.00,48.00,52.80,0
+14.40,52.80,10.35,0.00,1.00,52.80,57.60,0
+14.40,57.60,10.41,0.00,1.00,57.60,62.40,0
+19.20,62.40,10.47,0.00,1.00,62.40,67.20,0
+24.00,67.20,10.54,0.00,1.00,67.20,72.00,0
+28.80,72.00,10.60,0.00,1.00,72.00,72.00,0
+33.60,72.00,10.67,0.00,1.00,76.80,76.80,0
+48.00,76.80,10.73,0.00,1.00,81.60,81.60,0
+67.20,81.60,10.80,0.00,1.00,86.40,81.60,0
+96.00,81.60,10.86,0.00,1.00,91.20,81.60,0
+120.00,76.80,10.92,0.00,1.00,96.00,76.80,0
+139.20,76.80,10.99,0.00,1.00,100.80,72.00,0
+148.80,72.00,11.05,0.00,1.00,105.60,67.20,0
+153.60,67.20,11.12,0.00,1.00,110.40,62.40,0
+158.40,62.40,11.18,0.00,1.00,115.20,57.60,0
+163.20,57.60,11.24,0.00,1.00,120.00,52.80,0
+168.00,52.80,11.31,0.00,1.00,124.80,48.00,0
+168.00,48.00,11.37,0.00,1.00,129.60,43.20,0
+168.00,43.20,11.44,0.00,1.00,134.40,38.40,0
+172.80,38.40,11.50,0.00,1.00,139.20,33.60,0
+172.80,33.60,11.57,0.00,1.00,144.00,28.80,0
+172.80,28.80,11.63,0.00,1.00,148.80,24.00,0
+177.60,24.00,11.69,0.00,1.00,153.60,19.20,0
+177.60,19.20,11.76,0.00,1.00,158.40,14.40,0
+177.60,14.40,11.82,0.00,1.00,163.20,9.60,0
+177.60,9.60,11.89,0.00,1.00,168.00,4.80,0
+177.60,4.80,11.95,0.00,1.00,172.80,0.00,0
+177.60,0.00,12.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,12.08,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,12.14,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,12.21,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,12.27,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,12.34,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,12.40,0.00,1.00,-153.60,-28.80,0
+-172.80,-28.80,12.47,0.00,1.00,-148.80,-33.60,0
+-172.80,-33.60,12.53,0.00,1.00,-144.00,-38.40,0
+-172.80,-38.40,12.59,0.00,1.00,-139.20,-43.20,0
+-168.00,-43.20,12.66,0.00,1.00,-134.40,-48.00,0
+-168.00,-48.00,12.72,0.00,1.00,-129.60,-52.80,0
+-168.00,-52.80,12.79,0.00,1.00,-124.80,-57.60,0
+-163.20,-57.60,12.85,0.00,1.00,-120.00,-62.40,0
+-158.40,-62.40,12.92,0.00,1.00,-115.20,-67.20,0
+-153.60,-67.20,12.98,0.00,1.00,-110.40,-72.00,0
+-148.80,-72.00,13.04,0.00,1.00,-105.60,-76.80,0
+-139.20,-76.80,13.11,0.00,1.00,-100.80,-81.60,0
+-120.00,-76.80,13.17,0.00,1.00,-96.00,-81.60,0
+-96.00,-81.60,13.24,0.00,1.00,-91.20,-81.60,0
+-67.20,-81.60,13.30,0.00,1.00,-86.40,-76.80,0
+-48.00,-76.80,13.37,0.00,1.00,-81.60,-72.00,0
+-33.60,-72.00,13.43,0.00,1.00,-76.80,-72.00,0
+-28.80,-72.00,13.49,0.00,1.00,-72.00,-67.20,0
+-24.00,-67.20,13.56,0.00,1.00,-67.20,-62.40,0
+-19.20,-62.40,13.62,0.00,1.00,-62.40,-57.60,0
+-14.40,-57.60,13.69,0.00,1.00,-57.60,-52.80,0
+-14.40,-52.80,13.75,0.00,1.00,-52.80,-48.00,0
+-9.60,-48.00,13.82,0.00,1.00,-48.00,-43.20,0
+-9.60,-43.20,13.88,0.00,1.00,-43.20,-38.40,0
+-9.60,-38.40,13.94,0.00,1.00,-38.40,-33.60,0
+-4.80,-33.60,14.01,0.00,1.00,-33.60,-28.80,0
+-4.80,-28.80,14.07,0.00,1.00,-28.80,-24.00,0
+-4.80,-24.00,14.14,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,14.20,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,14.27,0.00,1.00,-14.40,-9.60,0
+-0.00,-9.60,14.33,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,14.39,0.00,1.00,-4.80,0.00,0
+0.00,0.00,14.46,0.00,1.00,0.00,4.80,0
+0.00,4.80,14.52,0.00,1.00,4.80,9.60,0
+4.80,9.60,14.59,0.00,1.00,9.60,14.40,0
+4.80,14.40,14.65,0.00,1.00,14.40,19.20,0
+4.80,19.20,14.71,0.00,1.00,19.20,24.00,0
+4.80,24.00,14.78,0.00,1.00,24.00,28.80,0
+9.60,28.80,14.84,0.00,1.00,28.80,33.60,0
+9.60,33.60,14.91,0.00,1.00,33.60,38.40,0
+9.60,38.40,14.97,0.00,1.00,38.40,43.20,0
+14.40,43.20,15.04,0.00,1.00,43.20,48.00,0
+14.40,48.00,15.10,0.00,1.00,48.00,52.80,0
+19.20,52.80,15.16,0.00,1.00,52.80,57.60,0
+19.20,52.80,15.23,0.00,1.00,57.60,57.60,0
+24.00,57.60,15.29,0.00,1.00,62.40,62.40,0
+28.80,62.40,15.36,0.00,1.00,67.20,67.20,0
+38.40,67.20,15.42,0.00,1.00,72.00,72.00,0
+48.00,72.00,15.49,0.00,1.00,76.80,72.00,0
+57.60,72.00,15.55,0.00,1.00,81.60,76.80,0
+76.80,76.80,15.61,0.00,1.00,86.40,76.80,0
+96.00,76.80,15.68,0.00,1.00,91.20,76.80,0
+115.20,76.80,15.74,0.00,1.00,96.00,72.00,0
+129.60,72.00,15.81,0.00,1.00,100.80,72.00,0
+139.20,67.20,15.87,0.00,1.00,105.60,67.20,0
+144.00,67.20,15.94,0.00,1.00,110.40,62.40,0
+153.60,62.40,16.00,0.00,1.00,115.20,57.60,0
+158.40,57.60,16.00,0.00,1.00,120.00,52.80,0
+158.40,52.80,15.94,0.00,1.00,124.80,48.00,0
+163.20,48.00,15.87,0.00,1.00,129.60,43.20,0
+168.00,43.20,15.81,0.00,1.00,134.40,38.40,0
+168.00,38.40,15.74,0.00,1.00,139.20,33.60,0
+168.00,33.60,15.68,0.00,1.00,144.00,28.80,0
+172.80,28.80,15.61,0.00,1.00,148.80,24.00,0
+172.80,24.00,15.55,0.00,1.00,153.60,19.20,0
+172.80,19.20,15.49,0.00,1.00,158.40,14.40,0
+177.60,14.40,15.42,0.00,1.00,163.20,9.60,0
+177.60,9.60,15.36,0.00,1.00,168.00,4.80,0
+177.60,4.80,15.29,0.00,1.00,172.80,0.00,0
+177.60,0.00,15.23,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,15.16,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,15.10,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,15.04,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,14.97,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,14.91,0.00,1.00,-158.40,-24.00,0
+-172.80,-24.00,14.84,0.00,1.00,-153.60,-28.80,0
+-172.80,-28.80,14.78,0.00,1.00,-148.80,-33.60,0
+-168.00,-33.60,14.71,0.00,1.00,-144.00,-38.40,0
+-168.00,-38.40,14.65,0.00,1.00,-139.20,-43.20,0
+-168.00,-43.20,14.59,0.00,1.00,-134.40,-48.00,0
+-163.20,-48.00,14.52,0.00,1.00,-129.60,-52.80,0
+-158.40,-52.80,14.46,0.00,1.00,-124.80,-57.60,0
+-158.40,-57.60,14.39,0.00,1.00,-120.00,-62.40,0
+-153.60,-62.40,14.33,0.00,1.00,-115.20,-67.20,0
+-144.00,-67.20,14.27,0.00,1.00,-110.40,-72.00,0
+-139.20,-67.20,14.20,0.00,1.00,-105.60,-72.00,0
+-129.60,-72.00,14.14,0.00,1.00,-100.80,-76.80,0
+-115.20,-76.80,14.07,0.00,1.00,-96.00,-76.80,0
+-96.00,-76.80,14.01,0.00,1.00,-91.20,-76.80,0
+-76.80,-76.80,13.94,0.00,1.00,-86.40,-72.00,0
+-57.60,-72.00,13.88,0.00,1.00,-81.60,-72.00,0
+-48.00,-72.00,13.82,0.00,1.00,-76.80,-67.20,0
+-38.40,-67.20,13.75,0.00,1.00,-72.00,-62.40,0
+-28.80,-62.40,13.69,0.00,1.00,-67.20,-57.60,0
+-24.00,-57.60,13.62,0.00,1.00,-62.40,-57.60,0
+-19.20,-52.80,13.56,0.00,1.00,-57.60,-52.80,0
+-19.20,-52.80,13.49,0.00,1.00,-52.80,-48.00,0
+-14.40,-48.00,13.43,0.00,1.00,-48.00,-43.20,0
+-14.40,-43.20,13.37,0.00,1.00,-43.20,-38.40,0
+-9.60,-38.40,13.30,0.00,1.00,-38.40,-33.60,0
+-9.60,-33.60,13.24,0.00,1.00,-33.60,-28.80,0
+-9.60,-28.80,13.17,0.00,1.00,-28.80,-24.00,0
+-4.80,-24.00,13.11,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,13.04,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,12.98,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,12.92,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,12.85,0.00,1.00,-4.80,0.00,0
+0.00,0.00,12.79,0.00,1.00,0.00,4.80,0
+0.00,4.80,12.72,0.00,1.00,4.80,9.60,0
+4.80,9.60,12.66,0.00,1.00,9.60,14.40,0
+4.80,14.40,12.59,0.00,1.00,14.40,19.20,0
+4.80,19.20,12.53,0.00,1.00,19.20,24.00,0
+9.60,24.00,12.47,0.00,1.00,24.00,28.80,0
+9.60,28.80,12.40,0.00,1.00,28.80,33.60,0
+14.40,33.60,12.34,0.00,1.00,33.60,38.40,0
+14.40,33.60,12.27,0.00,1.00,38.40,38.40,0
+19.20,38.40,12.21,0.00,1.00,43.20,43.20,0
+19.20,43.20,12.14,0.00,1.00,48.00,48.00,0
+24.00,48.00,12.08,0.00,1.00,52.80,52.80,0
+28.80,52.80,12.02,0.00,1.00,57.60,57.60,0
+33.60,57.60,11.95,0.00,1.00,62.40,62.40,0
+38.40,62.40,11.89,0.00,1.00,67.20,62.40,0
+43.20,62.40,11.82,0.00,1.00,72.00,67.20,0
+52.80,67.20,11.76,0.00,1.00,76.80,72.00,0
+67.20,67.20,11.69,0.00,1.00,81.60,72.00,0
+76.80,72.00,11.63,0.00,1.00,86.40,72.00,0
+96.00,72.00,11.57,0.00,1.00,91.20,72.00,0
+105.60,72.00,11.50,0.00,1.00,96.00,67.20,0
+120.00,67.20,11.44,0.00,1.00,100.80,67.20,0
+129.60,67.20,11.37,0.00,1.00,105.60,62.40,0
+139.20,62.40,11.31,0.00,1.00,110.40,57.60,0
+144.00,57.60,11.24,0.00,1.00,115.20,57.60,0
+148.80,52.80,11.18,0.00,1.00,120.00,52.80,0
+153.60,52.80,11.12,0.00,1.00,124.80,48.00,0
+158.40,48.00,11.05,0.00,1.00,129.60,43.20,0
+163.20,43.20,10.99,0.00,1.00,134.40,38.40,0
+163.20,38.40,10.92,0.00,1.00,139.20,33.60,0
+168.00,33.60,10.86,0.00,1.00,144.00,28.80,0
+168.00,28.80,10.80,0.00,1.00,148.80,24.00,0
+172.80,24.00,10.73,0.00,1.00,153.60,19.20,0
+172.80,19.20,10.67,0.00,1.00,158.40,14.40,0
+172.80,14.40,10.60,0.00,1.00,163.20,9.60,0
+177.60,9.60,10.54,0.00,1.00,168.00,4.80,0
+177.60,4.80,10.47,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.35,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,10.28,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,10.22,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,10.15,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,10.09,0.00,1.00,-158.40,-24.00,0
+-172.80,-24.00,10.02,0.00,1.00,-153.60,-28.80,0
+-168.00,-28.80,9.96,0.00,1.00,-148.80,-33.60,0
+-168.00,-33.60,9.90,0.00,1.00,-144.00,-38.40,0
+-163.20,-38.40,9.83,0.00,1.00,-139.20,-43.20,0
+-163.20,-43.20,9.77,0.00,1.00,-134.40,-48.00,0
+-158.40,-48.00,9.70,0.00,1.00,-129.60,-52.80,0
+-153.60,-52.80,9.64,0.00,1.00,-124.80,-57.60,0
+-148.80,-52.80,9.57,0.00,1.00,-120.00,-57.60,0
+-144.00,-57.60,9.51,0.00,1.00,-115.20,-62.40,0
+-139.20,-62.40,9.45,0.00,1.00,-110.40,-67.20,0
+-129.60,-67.20,9.38,0.00,1.00,-105.60,-67.20,0
+-120.00,-67.20,9.32,0.00,1.00,-100.80,-72.00,0
+-105.60,-72.00,9.25,0.00,1.00,-96.00,-72.00,0
+-96.00,-72.00,9.19,0.00,1.00,-91.20,-72.00,0
+-76.80,-72.00,9.12,0.00,1.00,-86.40,-72.00,0
+-67.20,-67.20,9.06,0.00,1.00,-81.60,-67.20,0
+-52.80,-67.20,9.00,0.00,1.00,-76.80,-62.40,0
+-43.20,-62.40,8.93,0.00,1.00,-72.00,-62.40,0
+-38.40,-62.40,8.87,0.00,1.00,-67.20,-57.60,0
+-33.60,-57.60,8.80,0.00,1.00,-62.40,-52.80,0
+-28.80,-52.80,8.74,0.00,1.00,-57.60,-48.00,0
+-24.00,-48.00,8.67,0.00,1.00,-52.80,-43.20,0
+-19.20,-43.20,8.61,0.00,1.00,-48.00,-38.40,0
+-19.20,-38.40,8.55,0.00,1.00,-43.20,-38.40,0
+-14.40,-33.60,8.48,0.00,1.00,-38.40,-33.60,0
+-14.40,-33.60,8.42,0.00,1.00,-33.60,-28.80,0
+-9.60,-28.80,8.35,0.00,1.00,-28.80,-24.00,0
+-9.60,-24.00,8.29,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,8.22,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,8.16,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,8.10,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,8.03,0.00,1.00,-4.80,0.00,0
+0.00,0.00,7.97,0.00,1.00,0.00,4.80,0
+0.00,4.80,7.90,0.00,1.00,4.80,9.60,0
+4.80,9.60,7.84,0.00,1.00,9.60,14.40,0
+4.80,14.40,7.78,0.00,1.00,14.40,19.20,0
+9.60,19.20,7.71,0.00,1.00,19.20,24.00,0
+9.60,24.00,7.65,0.00,1.00,24.00,24.00,0
+14.40,24.00,7.58,0.00,1.00,28.80,28.80,0
+14.40,28.80,7.52,0.00,1.00,33.60,33.60,0
+19.20,33.60,7.45,0.00,1.00,33.60,38.40,0
+19.20,38.40,7.39,0.00,1.00,38.40,43.20,0
+24.00,43.20,7.33,0.00,1.00,43.20,48.00,0
+28.80,48.00,7.26,0.00,1.00,48.00,52.80,0
+33.60,52.80,7.20,0.00,1.00,57.60,52.80,0
+38.40,52.80,7.13,0.00,1.00,62.40,57.60,0
+43.20,57.60,7.07,0.00,1.00,67.20,62.40,0
+52.80,62.40,7.00,0.00,1.00,72.00,62.40,0
+62.40,62.40,6.94,0.00,1.00,76.80,67.20,0
+72.00,62.40,6.88,0.00,1.00,81.60,67.20,0
+81.60,67.20,6.81,0.00,1.00,86.40,67.20,0
+91.20,67.20,6.75,0.00,1.00,91.20,67.20,0
+105.60,67.20,6.68,0.00,1.00,96.00,67.20,0
+115.20,62.40,6.62,0.00,1.00,100.80,62.40,0
+124.80,62.40,6.55,0.00,1.00,105.60,57.60,0
+134.40,57.60,6.49,0.00,1.00,110.40,57.60,0
+139.20,57.60,6.43,0.00,1.00,115.20,52.80,0
+144.00,52.80,6.36,0.00,1.00,120.00,48.00,0
+148.80,48.00,6.30,0.00,1.00,129.60,43.20,0
+153.60,43.20,6.23,0.00,1.00,134.40,43.20,0
+158.40,38.40,6.17,0.00,1.00,139.20,38.40,0
+158.40,38.40,6.10,0.00,1.00,144.00,33.60,0
+163.20,33.60,6.04,0.00,1.00,148.80,28.80,0
+168.00,28.80,5.98,0.00,1.00,148.80,24.00,0
+168.00,24.00,5.91,0.00,1.00,153.60,19.20,0
+172.80,19.20,5.85,0.00,1.00,158.40,14.40,0
+172.80,14.40,5.78,0.00,1.00,163.20,9.60,0
+172.80,9.60,5.72,0.00,1.00,168.00,4.80,0
+177.60,4.80,5.65,0.00,1.00,172.80,0.00,0
+177.60,0.00,5.59,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.53,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,5.46,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,5.40,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,5.33,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,5.27,0.00,1.00,-158.40,-24.00,0
+-168.00,-24.00,5.20,0.00,1.00,-153.60,-28.80,0
+-168.00,-28.80,5.14,0.00,1.00,-148.80,-33.60,0
+-163.20,-33.60,5.08,0.00,1.00,-148.80,-38.40,0
+-158.40,-38.40,5.01,0.00,1.00,-144.00,-43.20,0
+-158.40,-38.40,4.95,0.00,1.00,-139.20,-43.20,0
+-153.60,-43.20,4.88,0.00,1.00,-134.40,-48.00,0
+-148.80,-48.00,4.82,0.00,1.00,-129.60,-52.80,0
+-144.00,-52.80,4.76,0.00,1.00,-120.00,-57.60,0
+-139.20,-57.60,4.69,0.00,1.00,-115.20,-57.60,0
+-134.40,-57.60,4.63,0.00,1.00,-110.40,-62.40,0
+-124.80,-62.40,4.56,0.00,1.00,-105.60,-67.20,0
+-115.20,-62.40,4.50,0.00,1.00,-100.80,-67.20,0
+-105.60,-67.20,4.43,0.00,1.00,-96.00,-67.20,0
+-91.20,-67.20,4.37,0.00,1.00,-91.20,-67.20,0
+-81.60,-67.20,4.31,0.00,1.00,-86.40,-67.20,0
+-72.00,-62.40,4.24,0.00,1.00,-81.60,-62.40,0
+-62.40,-62.40,4.18,0.00,1.00,-76.80,-62.40,0
+-52.80,-62.40,4.11,0.00,1.00,-72.00,-57.60,0
+-43.20,-57.60,4.05,0.00,1.00,-67.20,-52.80,0
+-38.40,-52.80,3.98,0.00,1.00,-62.40,-52.80,0
+-33.60,-52.80,3.92,0.00,1.00,-57.60,-48.00,0
+-28.80,-48.00,3.86,0.00,1.00,-48.00,-43.20,0
+-24.00,-43.20,3.79,0.00,1.00,-43.20,-38.40,0
+-19.20,-38.40,3.73,0.00,1.00,-38.40,-33.60,0
+-19.20,-33.60,3.66,0.00,1.00,-33.60,-28.80,0
+-14.40,-28.80,3.60,0.00,1.00,-33.60,-24.00,0
+-14.40,-24.00,3.53,0.00,1.00,-28.80,-24.00,0
+-9.60,-24.00,3.47,0.00,1.00,-24.00,-19.20,0
+-9.60,-19.20,3.41,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,3.34,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,3.28,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,3.21,0.00,1.00,-4.80,0.00,0
+0.00,0.00,3.15,0.00,1.00,0.00,4.80,0
+0.00,4.80,3.08,0.00,1.00,4.80,9.60,0
+4.80,9.60,3.02,0.00,1.00,9.60,14.40,0
+4.80,14.40,2.96,0.00,1.00,14.40,19.20,0
+9.60,14.40,2.89,0.00,1.00,19.20,19.20,0
+14.40,19.20,2.83,0.00,1.00,19.20,24.00,0
+14.40,24.00,2.76,0.00,1.00,24.00,28.80,0
+19.20,28.80,2.70,0.00,1.00,28.80,33.60,0
+19.20,33.60,2.63,0.00,1.00,33.60,38.40,0
+24.00,38.40,2.57,0.00,1.00,38.40,43.20,0
+28.80,38.40,2.51,0.00,1.00,43.20,43.20,0
+33.60,43.20,2.44,0.00,1.00,48.00,48.00,0
+38.40,48.00,2.38,0.00,1.00,52.80,52.80,0
+43.20,52.80,2.31,0.00,1.00,57.60,52.80,0
+48.00,52.80,2.25,0.00,1.00,62.40,57.60,0
+57.60,57.60,2.18,0.00,1.00,72.00,57.60,0
+62.40,57.60,2.12,0.00,1.00,76.80,62.40,0
+72.00,62.40,2.06,0.00,1.00,81.60,62.40,0
+81.60,62.40,1.99,0.00,1.00,86.40,62.40,0
+91.20,62.40,1.93,0.00,1.00,91.20,62.40,0
+100.80,62.40,1.86,0.00,1.00,96.00,62.40,0
+110.40,57.60,1.80,0.00,1.00,100.80,57.60,0
+120.00,57.60,1.73,0.00,1.00,105.60,57.60,0
+129.60,57.60,1.67,0.00,1.00,115.20,52.80,0
+134.40,52.80,1.61,0.00,1.00,120.00,48.00,0
+139.20,48.00,1.54,0.00,1.00,124.80,48.00,0
+144.00,48.00,1.48,0.00,1.00,129.60,43.20,0
+148.80,43.20,1.41,0.00,1.00,134.40,38.40,0
+153.60,38.40,1.35,0.00,1.00,139.20,33.60,0
+158.40,33.60,1.29,0.00,1.00,144.00,33.60,0
+158.40,28.80,1.22,0.00,1.00,148.80,28.80,0
+163.20,28.80,1.16,0.00,1.00,153.60,24.00,0
+168.00,24.00,1.09,0.00,1.00,158.40,19.20,0
+168.00,19.20,1.03,0.00,1.00,163.20,14.40,0
+172.80,14.40,0.96,0.00,1.00,163.20,9.60,0
+172.80,9.60,0.90,0.00,1.00,168.00,4.80,0
+177.60,4.80,0.84,0.00,1.00,172.80,0.00,0
+177.60,0.00,0.77,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,0.71,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,0.64,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,0.58,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,0.51,0.00,1.00,-163.20,-19.20,0
+-168.00,-19.20,0.45,0.00,1.00,-163.20,-24.00,0
+-168.00,-24.00,0.39,0.00,1.00,-158.40,-28.80,0
+-163.20,-28.80,0.32,0.00,1.00,-153.60,-33.60,0
+-158.40,-28.80,0.26,0.00,1.00,-148.80,-33.60,0
+-158.40,-33.60,0.19,0.00,1.00,-144.00,-38.40,0
+-153.60,-38.40,0.13,0.00,1.00,-139.20,-43.20,0
+-148.80,-43.20,0.06,0.00,1.00,-134.40,-48.00,0
+-144.00,-48.00,0.00,0.00,1.00,-129.60,-48.00,0
+-139.20,-48.00,0.00,0.00,1.00,-124.80,-52.80,0
+-134.40,-52.80,0.16,0.00,1.00,-120.00,-57.60,0
+-129.60,-57.60,0.32,0.00,1.00,-115.20,-57.60,0
+-120.00,-57.60,0.48,0.00,1.00,-105.60,-62.40,0
+-110.40,-57.60,0.65,0.00,1.00,-100.80,-62.40,0
+-100.80,-62.40,0.81,0.00,1.00,-96.00,-62.40,0
+-91.20,-62.40,0.97,0.00,1.00,-91.20,-62.40,0
+-81.60,-62.40,1.13,0.00,1.00,-86.40,-62.40,0
+-72.00,-62.40,1.29,0.00,1.00,-81.60,-57.60,0
+-62.40,-57.60,1.45,0.00,1.00,-76.80,-57.60,0
+-57.60,-57.60,1.62,0.00,1.00,-72.00,-52.80,0
+-48.00,-52.80,1.78,0.00,1.00,-62.40,-52.80,0
+-43.20,-52.80,1.94,0.00,1.00,-57.60,-48.00,0
+-38.40,-48.00,2.10,0.00,1.00,-52.80,-43.20,0
+-33.60,-43.20,2.26,0.00,1.00,-48.00,-43.20,0
+-28.80,-38.40,2.42,0.00,1.00,-43.20,-38.40,0
+-24.00,-38.40,2.59,0.00,1.00,-38.40,-33.60,0
+-19.20,-33.60,2.75,0.00,1.00,-33.60,-28.80,0
+-19.20,-28.80,2.91,0.00,1.00,-28.80,-24.00,0
+-14.40,-24.00,3.07,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,3.23,0.00,1.00,-19.20,-19.20,0
+-9.60,-14.40,3.39,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,3.56,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,3.72,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,3.88,0.00,1.00,-4.80,0.00,0
+0.00,0.00,4.04,0.00,1.00,0.00,4.80,0
+4.80,4.80,4.20,0.00,1.00,4.80,9.60,0
+4.80,9.60,4.36,0.00,1.00,9.60,14.40,0
+9.60,9.60,4.53,0.00,1.00,14.40,14.40,0
+9.60,14.40,4.69,0.00,1.00,14.40,19.20,0
+14.40,19.20,4.85,0.00,1.00,19.20,24.00,0
+19.20,24.00,5.01,0.00,1.00,24.00,28.80,0
+19.20,28.80,5.17,0.00,1.00,28.80,33.60,0
+24.00,28.80,5.33,0.00,1.00,33.60,33.60,0
+28.80,33.60,5.49,0.00,1.00,38.40,38.40,0
+33.60,38.40,5.66,0.00,1.00,43.20,43.20,0
+38.40,43.20,5.82,0.00,1.00,48.00,43.20,0
+43.20,43.20,5.98,0.00,1.00,52.80,48.00,0
+48.00,48.00,6.14,0.00,1.00,57.60,52.80,0
+52.80,48.00,6.30,0.00,1.00,62.40,52.80,0
+57.60,52.80,6.46,0.00,1.00,67.20,57.60,0
+67.20,52.80,6.63,0.00,1.00,72.00,57.60,0
+76.80,57.60,6.79,0.00,1.00,81.60,57.60,0
+81.60,57.60,6.95,0.00,1.00,86.40,57.60,0
+91.20,57.60,7.11,0.00,1.00,91.20,57.60,0
+100.80,57.60,7.27,0.00,1.00,96.00,57.60,0
+110.40,52.80,7.43,0.00,1.00,100.80,52.80,0
+115.20,52.80,7.60,0.00,1.00,110.40,52.80,0
+124.80,52.80,7.76,0.00,1.00,115.20,48.00,0
+129.60,48.00,7.92,0.00,1.00,120.00,48.00,0
+134.40,48.00,8.08,0.00,1.00,124.80,43.20,0
+139.20,43.20,8.24,0.00,1.00,129.60,38.40,0
+144.00,38.40,8.40,0.00,1.00,134.40,38.40,0
+148.80,38.40,8.57,0.00,1.00,139.20,33.60,0
+153.60,33.60,8.73,0.00,1.00,144.00,28.80,0
+158.40,28.80,8.89,0.00,1.00,148.80,24.00,0
+163.20,24.00,9.05,0.00,1.00,153.60,24.00,0
+163.20,24.00,9.21,0.00,1.00,158.40,19.20,0
+168.00,19.20,9.37,0.00,1.00,163.20,14.40,0
+172.80,14.40,9.54,0.00,1.00,168.00,9.60,0
+172.80,9.60,9.70,0.00,1.00,168.00,4.80,0
+177.60,4.80,9.86,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.18,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,10.34,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,10.51,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,10.67,0.00,1.00,-168.00,-19.20,0
+-168.00,-19.20,10.83,0.00,1.00,-163.20,-24.00,0
+-163.20,-24.00,10.99,0.00,1.00,-158.40,-24.00,0
+-163.20,-24.00,11.15,0.00,1.00,-153.60,-28.80,0
+-158.40,-28.80,11.31,0.00,1.00,-148.80,-33.60,0
+-153.60,-33.60,11.47,0.00,1.00,-144.00,-38.40,0
+-148.80,-38.40,11.64,0.00,1.00,-139.20,-38.40,0
+-144.00,-38.40,11.80,0.00,1.00,-134.40,-43.20,0
+-139.20,-43.20,11.96,0.00,1.00,-129.60,-48.00,0
+-134.40,-48.00,12.12,0.00,1.00,-124.80,-48.00,0
+-129.60,-48.00,12.28,0.00,1.00,-120.00,-52.80,0
+-124.80,-52.80,12.44,0.00,1.00,-115.20,-52.80,0
+-115.20,-52.80,12.61,0.00,1.00,-110.40,-57.60,0
+-110.40,-52.80,12.77,0.00,1.00,-100.80,-57.60,0
+-100.80,-57.60,12.93,0.00,1.00,-96.00,-57.60,0
+-91.20,-57.60,13.09,0.00,1.00,-91.20,-57.60,0
+-81.60,-57.60,13.25,0.00,1.00,-86.40,-57.60,0
+-76.80,-57.60,13.41,0.00,1.00,-81.60,-57.60,0
+-67.20,-52.80,13.58,0.00,1.00,-72.00,-52.80,0
+-57.60,-52.80,13.74,0.00,1.00,-67.20,-52.80,0
+-52.80,-48.00,13.90,0.00,1.00,-62.40,-48.00,0
+-48.00,-48.00,14.06,0.00,1.00,-57.60,-43.20,0
+-43.20,-43.20,14.22,0.00,1.00,-52.80,-43.20,0
+-38.40,-43.20,14.38,0.00,1.00,-48.00,-38.40,0
+-33.60,-38.40,14.55,0.00,1.00,-43.20,-33.60,0
+-28.80,-33.60,14.71,0.00,1.00,-38.40,-33.60,0
+-24.00,-28.80,14.87,0.00,1.00,-33.60,-28.80,0
+-19.20,-28.80,15.03,0.00,1.00,-28.80,-24.00,0
+-19.20,-24.00,15.19,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,15.35,0.00,1.00,-19.20,-14.40,0
+-9.60,-14.40,15.52,0.00,1.00,-14.40,-14.40,0
+-9.60,-9.60,15.68,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,15.84,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,16.00,0.00,1.00,-4.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,0.00,4.80,0
+4.80,4.80,15.84,0.00,1.00,4.80,9.60,0
+4.80,9.60,15.68,0.00,1.00,9.60,9.60,0
+9.60,9.60,15.52,0.00,1.00,9.60,14.40,0
+14.40,14.40,15.35,0.00,1.00,14.40,19.20,0
+14.40,19.20,15.19,0.00,1.00,19.20,24.00,0
+19.20,24.00,15.03,0.00,1.00,24.00,24.00,0
+24.00,24.00,14.87,0.00,1.00,28.80,28.80,0
+24.00,28.80,14.71,0.00,1.00,33.60,33.60,0
+28.80,33.60,14.55,0.00,1.00,38.40,38.40,0
+33.60,33.60,14.38,0.00,1.00,43.20,38.40,0
+38.40,38.40,14.22,0.00,1.00,48.00,43.20,0
+43.20,43.20,14.06,0.00,1.00,52.80,43.20,0
+48.00,43.20,13.90,0.00,1.00,57.60,48.00,0
+57.60,48.00,13.74,0.00,1.00,62.40,48.00,0
+62.40,48.00,13.58,0.00,1.00,67.20,52.80,0
+67.20,48.00,13.41,0.00,1.00,72.00,52.80,0
+76.80,52.80,13.25,0.00,1.00,81.60,52.80,0
+86.40,52.80,13.09,0.00,1.00,86.40,52.80,0
+91.20,52.80,12.93,0.00,1.00,91.20,52.80,0
+100.80,52.80,12.77,0.00,1.00,96.00,52.80,0
+105.60,48.00,12.61,0.00,1.00,105.60,48.00,0
+115.20,48.00,12.44,0.00,1.00,110.40,48.00,0
+120.00,48.00,12.28,0.00,1.00,115.20,48.00,0
+124.80,43.20,12.12,0.00,1.00,120.00,43.20,0
+134.40,43.20,11.96,0.00,1.00,124.80,43.20,0
+139.20,38.40,11.80,0.00,1.00,129.60,38.40,0
+144.00,38.40,11.64,0.00,1.00,134.40,33.60,0
+148.80,33.60,11.47,0.00,1.00,139.20,33.60,0
+153.60,28.80,11.31,0.00,1.00,144.00,28.80,0
+153.60,28.80,11.15,0.00,1.00,148.80,24.00,0
+158.40,24.00,10.99,0.00,1.00,153.60,19.20,0
+163.20,19.20,10.83,0.00,1.00,158.40,19.20,0
+168.00,14.40,10.67,0.00,1.00,163.20,14.40,0
+168.00,14.40,10.51,0.00,1.00,168.00,9.60,0
+172.80,9.60,10.34,0.00,1.00,172.80,4.80,0
+177.60,4.80,10.18,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,9.86,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,9.70,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,9.54,0.00,1.00,-172.80,-14.40,0
+-168.00,-14.40,9.37,0.00,1.00,-168.00,-19.20,0
+-168.00,-14.40,9.21,0.00,1.00,-163.20,-19.20,0
+-163.20,-19.20,9.05,0.00,1.00,-158.40,-24.00,0
+-158.40,-24.00,8.89,0.00,1.00,-153.60,-28.80,0
+-153.60,-28.80,8.73,0.00,1.00,-148.80,-33.60,0
+-153.60,-28.80,8.57,0.00,1.00,-144.00,-33.60,0
+-148.80,-33.60,8.40,0.00,1.00,-139.20,-38.40,0
+-144.00,-38.40,8.24,0.00,1.00,-134.40,-43.20,0
+-139.20,-38.40,8.08,0.00,1.00,-129.60,-43.20,0
+-134.40,-43.20,7.92,0.00,1.00,-124.80,-48.00,0
+-124.80,-43.20,7.76,0.00,1.00,-120.00,-48.00,0
+-120.00,-48.00,7.60,0.00,1.00,-115.20,-48.00,0
+-115.20,-48.00,7.43,0.00,1.00,-110.40,-52.80,0
+-105.60,-48.00,7.27,0.00,1.00,-105.60,-52.80,0
+-100.80,-52.80,7.11,0.00,1.00,-96.00,-52.80,0
+-91.20,-52.80,6.95,0.00,1.00,-91.20,-52.80,0
+-86.40,-52.80,6.79,0.00,1.00,-86.40,-52.80,0
+-76.80,-52.80,6.63,0.00,1.00,-81.60,-52.80,0
+-67.20,-48.00,6.46,0.00,1.00,-72.00,-48.00,0
+-62.40,-48.00,6.30,0.00,1.00,-67.20,-48.00,0
+-57.60,-48.00,6.14,0.00,1.00,-62.40,-43.20,0
+-48.00,-43.20,5.98,0.00,1.00,-57.60,-43.20,0
+-43.20,-43.20,5.82,0.00,1.00,-52.80,-38.40,0
+-38.40,-38.40,5.66,0.00,1.00,-48.00,-38.40,0
+-33.60,-33.60,5.49,0.00,1.00,-43.20,-33.60,0
+-28.80,-33.60,5.33,0.00,1.00,-38.40,-28.80,0
+-24.00,-28.80,5.17,0.00,1.00,-33.60,-24.00,0
+-24.00,-24.00,5.01,0.00,1.00,-28.80,-24.00,0
+-19.20,-24.00,4.85,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,4.69,0.00,1.00,-19.20,-14.40,0
+-14.40,-14.40,4.53,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,4.36,0.00,1.00,-9.60,-9.60,0
+-4.80,-9.60,4.20,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,4.04,0.00,1.00,-4.80,0.00,0
+0.00,0.00,3.88,0.00,1.00,0.00,4.80,0
+4.80,4.80,3.72,0.00,1.00,4.80,4.80,0
+4.80,4.80,3.56,0.00,1.00,4.80,9.60,0
+9.60,9.60,3.39,0.00,1.00,9.60,14.40,0
+14.40,14.40,3.23,0.00,1.00,14.40,19.20,0
+19.20,19.20,3.07,0.00,1.00,19.20,19.20,0
+19.20,19.20,2.91,0.00,1.00,24.00,24.00,0
+24.00,24.00,2.75,0.00,1.00,24.00,28.80,0
+28.80,28.80,2.59,0.00,1.00,28.80,28.80,0
+33.60,28.80,2.42,0.00,1.00,33.60,33.60,0
+38.40,33.60,2.26,0.00,1.00,38.40,38.40,0
+43.20,33.60,2.10,0.00,1.00,43.20,38.40,0
+48.00,38.40,1.94,0.00,1.00,48.00,43.20,0
+52.80,38.40,1.78,0.00,1.00,52.80,43.20,0
+57.60,43.20,1.62,0.00,1.00,62.40,43.20,0
+62.40,43.20,1.45,0.00,1.00,67.20,48.00,0
+72.00,43.20,1.29,0.00,1.00,72.00,48.00,0
+76.80,48.00,1.13,0.00,1.00,76.80,48.00,0
+86.40,48.00,0.97,0.00,1.00,86.40,48.00,0
+91.20,48.00,0.81,0.00,1.00,91.20,48.00,0
+100.80,48.00,0.65,0.00,1.00,96.00,48.00,0
+105.60,48.00,0.48,0.00,1.00,105.60,48.00,0
+110.40,43.20,0.32,0.00,1.00,110.40,43.20,0
+120.00,43.20,0.16,0.00,1.00,115.20,43.20,0
+124.80,43.20,0.00,0.00,1.00,124.80,38.40,0
+129.60,38.40,0.00,0.00,1.00,129.60,38.40,0
+134.40,38.40,0.04,0.00,1.00,134.40,33.60,0
+139.20,33.60,0.08,0.00,1.00,139.20,33.60,0
+144.00,33.60,0.12,0.00,1.00,144.00,28.80,0
+148.80,28.80,0.16,0.00,1.00,148.80,24.00,0
+153.60,24.00,0.20,0.00,1.00,153.60,24.00,0
+158.40,24.00,0.24,0.00,1.00,158.40,19.20,0
+163.20,19.20,0.28,0.00,1.00,158.40,14.40,0
+163.20,14.40,0.32,0.00,1.00,163.20,14.40,0
+168.00,14.40,0.36,0.00,1.00,168.00,9.60,0
+172.80,9.60,0.40,0.00,1.00,172.80,4.80,0
+172.80,4.80,0.44,0.00,1.00,172.80,0.00,0
+177.60,0.00,0.48,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,0.52,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,0.56,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,0.60,0.00,1.00,-172.80,-14.40,0
+-168.00,-14.40,0.64,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,0.68,0.00,1.00,-163.20,-19.20,0
+-163.20,-19.20,0.72,0.00,1.00,-158.40,-24.00,0
+-158.40,-24.00,0.76,0.00,1.00,-158.40,-24.00,0
+-153.60,-24.00,0.80,0.00,1.00,-153.60,-28.80,0
+-148.80,-28.80,0.84,0.00,1.00,-148.80,-33.60,0
+-144.00,-33.60,0.88,0.00,1.00,-144.00,-33.60,0
+-139.20,-33.60,0.92,0.00,1.00,-139.20,-38.40,0
+-134.40,-38.40,0.96,0.00,1.00,-134.40,-38.40,0
+-129.60,-38.40,1.00,0.00,1.00,-129.60,-43.20,0
+-124.80,-43.20,1.04,0.00,1.00,-124.80,-43.20,0
+-120.00,-43.20,1.08,0.00,1.00,-115.20,-48.00,0
+-110.40,-43.20,1.12,0.00,1.00,-110.40,-48.00,0
+-105.60,-48.00,1.16,0.00,1.00,-105.60,-48.00,0
+-100.80,-48.00,1.20,0.00,1.00,-96.00,-48.00,0
+-91.20,-48.00,1.24,0.00,1.00,-91.20,-48.00,0
+-86.40,-48.00,1.28,0.00,1.00,-86.40,-48.00,0
+-76.80,-48.00,1.32,0.00,1.00,-76.80,-48.00,0
+-72.00,-43.20,1.36,0.00,1.00,-72.00,-43.20,0
+-62.40,-43.20,1.40,0.00,1.00,-67.20,-43.20,0
+-57.60,-43.20,1.44,0.00,1.00,-62.40,-43.20,0
+-52.80,-38.40,1.48,0.00,1.00,-52.80,-38.40,0
+-48.00,-38.40,1.52,0.00,1.00,-48.00,-38.40,0
+-43.20,-33.60,1.56,0.00,1.00,-43.20,-33.60,0
+-38.40,-33.60,1.60,0.00,1.00,-38.40,-28.80,0
+-33.60,-28.80,1.64,0.00,1.00,-33.60,-28.80,0
+-28.80,-28.80,1.68,0.00,1.00,-28.80,-24.00,0
+-24.00,-24.00,1.72,0.00,1.00,-24.00,-19.20,0
+-19.20,-19.20,1.76,0.00,1.00,-24.00,-19.20,0
+-19.20,-19.20,1.80,0.00,1.00,-19.20,-14.40,0
+-14.40,-14.40,1.84,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,1.88,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,1.92,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,1.96,0.00,1.00,-4.80,0.00,0
+0.00,0.00,2.01,0.00,1.00,0.00,4.80,0
+4.80,4.80,2.05,0.00,1.00,4.80,4.80,0
+4.80,4.80,2.09,0.00,1.00,4.80,9.60,0
+9.60,9.60,2.13,0.00,1.00,9.60,14.40,0
+14.40,14.40,2.17,0.00,1.00,14.40,14.40,0
+19.20,14.40,2.21,0.00,1.00,14.40,19.20,0
+24.00,19.20,2.25,0.00,1.00,19.20,24.00,0
+24.00,24.00,2.29,0.00,1.00,24.00,24.00,0
+28.80,24.00,2.33,0.00,1.00,28.80,28.80,0
+33.60,28.80,2.37,0.00,1.00,33.60,28.80,0
+38.40,28.80,2.41,0.00,1.00,38.40,33.60,0
+43.20,33.60,2.45,0.00,1.00,43.20,33.60,0
+48.00,33.60,2.49,0.00,1.00,48.00,38.40,0
+52.80,38.40,2.53,0.00,1.00,52.80,38.40,0
+62.40,38.40,2.57,0.00,1.00,57.60,38.40,0
+67.20,38.40,2.61,0.00,1.00,62.40,43.20,0
+72.00,38.40,2.65,0.00,1.00,72.00,43.20,0
+76.80,43.20,2.69,0.00,1.00,76.80,43.20,0
+86.40,43.20,2.73,0.00,1.00,86.40,43.20,0
+91.20,43.20,2.77,0.00,1.00,91.20,43.20,0
+96.00,43.20,2.81,0.00,1.00,100.80,43.20,0
+105.60,43.20,2.85,0.00,1.00,105.60,43.20,0
+110.40,38.40,2.89,0.00,1.00,110.40,38.40,0
+115.20,38.40,2.93,0.00,1.00,120.00,38.40,0
+120.00,38.40,2.97,0.00,1.00,124.80,38.40,0
+129.60,33.60,3.01,0.00,1.00,129.60,33.60,0
+134.40,33.60,3.05,0.00,1.00,134.40,33.60,0
+139.20,28.80,3.09,0.00,1.00,139.20,28.80,0
+144.00,28.80,3.13,0.00,1.00,144.00,28.80,0
+148.80,24.00,3.17,0.00,1.00,148.80,24.00,0
+153.60,24.00,3.21,0.00,1.00,153.60,19.20,0
+153.60,19.20,3.25,0.00,1.00,158.40,19.20,0
+158.40,19.20,3.29,0.00,1.00,163.20,14.40,0
+163.20,14.40,3.33,0.00,1.00,163.20,9.60,0
+168.00,9.60,3.37,0.00,1.00,168.00,9.60,0
+172.80,9.60,3.41,0.00,1.00,172.80,4.80,0
+172.80,4.80,3.45,0.00,1.00,172.80,0.00,0
+177.60,0.00,3.49,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.53,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,3.57,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,3.61,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,3.65,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,3.69,0.00,1.00,-163.20,-19.20,0
+-158.40,-19.20,3.73,0.00,1.00,-163.20,-19.20,0
+-153.60,-19.20,3.77,0.00,1.00,-158.40,-24.00,0
+-153.60,-24.00,3.81,0.00,1.00,-153.60,-28.80,0
+-148.80,-24.00,3.85,0.00,1.00,-148.80,-28.80,0
+-144.00,-28.80,3.89,0.00,1.00,-144.00,-33.60,0
+-139.20,-28.80,3.93,0.00,1.00,-139.20,-33.60,0
+-134.40,-33.60,3.97,0.00,1.00,-134.40,-38.40,0
+-129.60,-33.60,4.01,0.00,1.00,-129.60,-38.40,0
+-120.00,-38.40,4.05,0.00,1.00,-124.80,-38.40,0
+-115.20,-38.40,4.09,0.00,1.00,-120.00,-43.20,0
+-110.40,-38.40,4.13,0.00,1.00,-110.40,-43.20,0
+-105.60,-43.20,4.17,0.00,1.00,-105.60,-43.20,0
+-96.00,-43.20,4.21,0.00,1.00,-100.80,-43.20,0
+-91.20,-43.20,4.25,0.00,1.00,-91.20,-43.20,0
+-86.40,-43.20,4.29,0.00,1.00,-86.40,-43.20,0
+-76.80,-43.20,4.33,0.00,1.00,-76.80,-43.20,0
+-72.00,-38.40,4.37,0.00,1.00,-72.00,-38.40,0
+-67.20,-38.40,4.41,0.00,1.00,-62.40,-38.40,0
+-62.40,-38.40,4.45,0.00,1.00,-57.60,-38.40,0
+-52.80,-38.40,4.49,0.00,1.00,-52.80,-33.60,0
+-48.00,-33.60,4.53,0.00,1.00,-48.00,-33.60,0
+-43.20,-33.60,4.57,0.00,1.00,-43.20,-28.80,0
+-38.40,-28.80,4.61,0.00,1.00,-38.40,-28.80,0
+-33.60,-28.80,4.65,0.00,1.00,-33.60,-24.00,0
+-28.80,-24.00,4.69,0.00,1.00,-28.80,-24.00,0
+-24.00,-24.00,4.73,0.00,1.00,-24.00,-19.20,0
+-24.00,-19.20,4.77,0.00,1.00,-19.20,-14.40,0
+-19.20,-14.40,4.81,0.00,1.00,-14.40,-14.40,0
+-14.40,-14.40,4.85,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,4.89,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,4.93,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,4.97,0.00,1.00,-4.80,0.00,0
+0.00,0.00,5.01,0.00,1.00,0.00,4.80,0
+4.80,4.80,5.05,0.00,1.00,4.80,4.80,0
+9.60,4.80,5.09,0.00,1.00,4.80,9.60,0
+9.60,9.60,5.13,0.00,1.00,9.60,9.60,0
+14.40,9.60,5.17,0.00,1.00,9.60,14.40,0
+19.20,14.40,5.21,0.00,1.00,14.40,19.20,0
+24.00,19.20,5.25,0.00,1.00,19.20,19.20,0
+28.80,19.20,5.29,0.00,1.00,24.00,24.00,0
+33.60,24.00,5.33,0.00,1.00,24.00,24.00,0
+38.40,24.00,5.37,0.00,1.00,28.80,28.80,0
+43.20,28.80,5.41,0.00,1.00,33.60,28.80,0
+48.00,28.80,5.45,0.00,1.00,38.40,33.60,0
+52.80,28.80,5.49,0.00,1.00,43.20,33.60,0
+57.60,33.60,5.53,0.00,1.00,48.00,33.60,0
+62.40,33.60,5.57,0.00,1.00,52.80,38.40,0
+67.20,33.60,5.61,0.00,1.00,62.40,38.40,0
+72.00,38.40,5.65,0.00,1.00,67.20,38.40,0
+81.60,38.40,5.69,0.00,1.00,76.80,38.40,0
+86.40,38.40,5.73,0.00,1.00,86.40,38.40,0
+91.20,38.40,5.77,0.00,1.00,91.20,38.40,0
+96.00,38.40,5.81,0.00,1.00,100.80,38.40,0
+105.60,38.40,5.85,0.00,1.00,105.60,38.40,0
+110.40,33.60,5.89,0.00,1.00,115.20,33.60,0
+115.20,33.60,5.93,0.00,1.00,120.00,33.60,0
+120.00,33.60,5.97,0.00,1.00,129.60,33.60,0
+124.80,33.60,6.02,0.00,1.00,134.40,28.80,0
+129.60,28.80,6.06,0.00,1.00,139.20,28.80,0
+134.40,28.80,6.10,0.00,1.00,144.00,24.00,0
+139.20,24.00,6.14,0.00,1.00,148.80,24.00,0
+144.00,24.00,6.18,0.00,1.00,153.60,19.20,0
+148.80,19.20,6.22,0.00,1.00,158.40,19.20,0
+153.60,19.20,6.26,0.00,1.00,158.40,14.40,0
+158.40,14.40,6.30,0.00,1.00,163.20,14.40,0
+163.20,14.40,6.34,0.00,1.00,168.00,9.60,0
+168.00,9.60,6.38,0.00,1.00,168.00,9.60,0
+168.00,9.60,6.42,0.00,1.00,172.80,4.80,0
+172.80,4.80,6.46,0.00,1.00,177.60,0.00,0
+177.60,0.00,6.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.54,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,6.58,0.00,1.00,-177.60,-9.60,0
+-168.00,-9.60,6.62,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,6.66,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,6.70,0.00,1.00,-168.00,-14.40,0
+-158.40,-14.40,6.74,0.00,1.00,-163.20,-19.20,0
+-153.60,-19.20,6.78,0.00,1.00,-158.40,-19.20,0
+-148.80,-19.20,6.82,0.00,1.00,-158.40,-24.00,0
+-144.00,-24.00,6.86,0.00,1.00,-153.60,-24.00,0
+-139.20,-24.00,6.90,0.00,1.00,-148.80,-28.80,0
+-134.40,-28.80,6.94,0.00,1.00,-144.00,-28.80,0
+-129.60,-28.80,6.98,0.00,1.00,-139.20,-33.60,0
+-124.80,-33.60,7.02,0.00,1.00,-134.40,-33.60,0
+-120.00,-33.60,7.06,0.00,1.00,-129.60,-33.60,0
+-115.20,-33.60,7.10,0.00,1.00,-120.00,-38.40,0
+-110.40,-33.60,7.14,0.00,1.00,-115.20,-38.40,0
+-105.60,-38.40,7.18,0.00,1.00,-105.60,-38.40,0
+-96.00,-38.40,7.22,0.00,1.00,-100.80,-38.40,0
+-91.20,-38.40,7.26,0.00,1.00,-91.20,-38.40,0
+-86.40,-38.40,7.30,0.00,1.00,-86.40,-38.40,0
+-81.60,-38.40,7.34,0.00,1.00,-76.80,-38.40,0
+-72.00,-38.40,7.38,0.00,1.00,-67.20,-38.40,0
+-67.20,-33.60,7.42,0.00,1.00,-62.40,-33.60,0
+-62.40,-33.60,7.46,0.00,1.00,-52.80,-33.60,0
+-57.60,-33.60,7.50,0.00,1.00,-48.00,-33.60,0
+-52.80,-28.80,7.54,0.00,1.00,-43.20,-28.80,0
+-48.00,-28.80,7.58,0.00,1.00,-38.40,-28.80,0
+-43.20,-28.80,7.62,0.00,1.00,-33.60,-24.00,0
+-38.40,-24.00,7.66,0.00,1.00,-28.80,-24.00,0
+-33.60,-24.00,7.70,0.00,1.00,-24.00,-19.20,0
+-28.80,-19.20,7.74,0.00,1.00,-24.00,-19.20,0
+-24.00,-19.20,7.78,0.00,1.00,-19.20,-14.40,0
+-19.20,-14.40,7.82,0.00,1.00,-14.40,-9.60,0
+-14.40,-9.60,7.86,0.00,1.00,-9.60,-9.60,0
+-9.60,-9.60,7.90,0.00,1.00,-9.60,-4.80,0
+-9.60,-4.80,7.94,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,7.98,0.00,1.00,-4.80,0.00,0
+0.00,0.00,8.02,0.00,1.00,0.00,4.80,0
+4.80,4.80,8.06,0.00,1.00,4.80,4.80,0
+9.60,4.80,8.10,0.00,1.00,4.80,9.60,0
+14.40,9.60,8.14,0.00,1.00,9.60,9.60,0
+14.40,9.60,8.18,0.00,1.00,9.60,14.40,0
+19.20,14.40,8.22,0.00,1.00,14.40,14.40,0
+24.00,14.40,8.26,0.00,1.00,14.40,19.20,0
+28.80,19.20,8.30,0.00,1.00,19.20,19.20,0
+33.60,19.20,8.34,0.00,1.00,24.00,24.00,0
+38.40,19.20,8.38,0.00,1.00,28.80,24.00,0
+43.20,24.00,8.42,0.00,1.00,28.80,24.00,0
+48.00,24.00,8.46,0.00,1.00,33.60,28.80,0
+52.80,28.80,8.50,0.00,1.00,38.40,28.80,0
+57.60,28.80,8.54,0.00,1.00,48.00,28.80,0
+62.40,28.80,8.58,0.00,1.00,52.80,33.60,0
+67.20,28.80,8.62,0.00,1.00,57.60,33.60,0
+76.80,33.60,8.66,0.00,1.00,67.20,33.60,0
+81.60,33.60,8.70,0.00,1.00,76.80,33.60,0
+86.40,33.60,8.74,0.00,1.00,81.60,33.60,0
+91.20,33.60,8.78,0.00,1.00,91.20,33.60,0
+96.00,33.60,8.82,0.00,1.00,100.80,33.60,0
+100.80,33.60,8.86,0.00,1.00,110.40,33.60,0
+110.40,28.80,8.90,0.00,1.00,115.20,33.60,0
+115.20,28.80,8.94,0.00,1.00,124.80,28.80,0
+120.00,28.80,8.98,0.00,1.00,129.60,28.80,0
+124.80,28.80,9.02,0.00,1.00,139.20,28.80,0
+129.60,24.00,9.06,0.00,1.00,144.00,24.00,0
+134.40,24.00,9.10,0.00,1.00,148.80,24.00,0
+139.20,24.00,9.14,0.00,1.00,153.60,19.20,0
+144.00,19.20,9.18,0.00,1.00,153.60,19.20,0
+148.80,19.20,9.22,0.00,1.00,158.40,14.40,0
+153.60,14.40,9.26,0.00,1.00,163.20,14.40,0
+158.40,14.40,9.30,0.00,1.00,163.20,9.60,0
+163.20,9.60,9.34,0.00,1.00,168.00,9.60,0
+168.00,9.60,9.38,0.00,1.00,172.80,4.80,0
+168.00,4.80,9.42,0.00,1.00,172.80,4.80,0
+172.80,4.80,9.46,0.00,1.00,177.60,0.00,0
+177.60,0.00,9.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,9.54,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,9.58,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,9.62,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,9.66,0.00,1.00,-172.80,-9.60,0
+-163.20,-9.60,9.70,0.00,1.00,-168.00,-14.40,0
+-158.40,-14.40,9.74,0.00,1.00,-163.20,-14.40,0
+-153.60,-14.40,9.78,0.00,1.00,-163.20,-19.20,0
+-148.80,-19.20,9.82,0.00,1.00,-158.40,-19.20,0
+-144.00,-19.20,9.86,0.00,1.00,-153.60,-24.00,0
+-139.20,-24.00,9.90,0.00,1.00,-153.60,-24.00,0
+-134.40,-24.00,9.94,0.00,1.00,-148.80,-28.80,0
+-129.60,-24.00,9.98,0.00,1.00,-144.00,-28.80,0
+-124.80,-28.80,10.03,0.00,1.00,-139.20,-28.80,0
+-120.00,-28.80,10.07,0.00,1.00,-129.60,-33.60,0
+-115.20,-28.80,10.11,0.00,1.00,-124.80,-33.60,0
+-110.40,-28.80,10.15,0.00,1.00,-115.20,-33.60,0
+-100.80,-33.60,10.19,0.00,1.00,-110.40,-33.60,0
+-96.00,-33.60,10.23,0.00,1.00,-100.80,-33.60,0
+-91.20,-33.60,10.27,0.00,1.00,-91.20,-33.60,0
+-86.40,-33.60,10.31,0.00,1.00,-81.60,-33.60,0
+-81.60,-33.60,10.35,0.00,1.00,-76.80,-33.60,0
+-76.80,-33.60,10.39,0.00,1.00,-67.20,-33.60,0
+-67.20,-28.80,10.43,0.00,1.00,-57.60,-28.80,0
+-62.40,-28.80,10.47,0.00,1.00,-52.80,-28.80,0
+-57.60,-28.80,10.51,0.00,1.00,-48.00,-28.80,0
+-52.80,-28.80,10.55,0.00,1.00,-38.40,-24.00,0
+-48.00,-24.00,10.59,0.00,1.00,-33.60,-24.00,0
+-43.20,-24.00,10.63,0.00,1.00,-28.80,-24.00,0
+-38.40,-19.20,10.67,0.00,1.00,-28.80,-19.20,0
+-33.60,-19.20,10.71,0.00,1.00,-24.00,-19.20,0
+-28.80,-19.20,10.75,0.00,1.00,-19.20,-14.40,0
+-24.00,-14.40,10.79,0.00,1.00,-14.40,-14.40,0
+-19.20,-14.40,10.83,0.00,1.00,-14.40,-9.60,0
+-14.40,-9.60,10.87,0.00,1.00,-9.60,-9.60,0
+-14.40,-9.60,10.91,0.00,1.00,-9.60,-4.80,0
+-9.60,-4.80,10.95,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,10.99,0.00,1.00,-4.80,0.00,0
+0.00,0.00,11.03,0.00,1.00,0.00,0.00,0
+4.80,0.00,11.07,0.00,1.00,0.00,4.80,0
+9.60,4.80,11.11,0.00,1.00,4.80,4.80,0
+14.40,4.80,11.15,0.00,1.00,4.80,9.60,0
+19.20,9.60,11.19,0.00,1.00,9.60,9.60,0
+19.20,9.60,11.23,0.00,1.00,9.60,14.40,0
+24.00,14.40,11.27,0.00,1.00,14.40,14.40,0
+28.80,14.40,11.31,0.00,1.00,19.20,19.20,0
+33.60,14.40,11.35,0.00,1.00,19.20,19.20,0
+38.40,19.20,11.39,0.00,1.00,24.00,19.20,0
+43.20,19.20,11.43,0.00,1.00,28.80,24.00,0
+48.00,24.00,11.47,0.00,1.00,33.60,24.00,0
+52.80,24.00,11.51,0.00,1.00,38.40,24.00,0
+57.60,24.00,11.55,0.00,1.00,43.20,24.00,0
+62.40,24.00,11.59,0.00,1.00,48.00,28.80,0
+72.00,24.00,11.63,0.00,1.00,52.80,28.80,0
+76.80,28.80,11.67,0.00,1.00,62.40,28.80,0
+81.60,28.80,11.71,0.00,1.00,72.00,28.80,0
+86.40,28.80,11.75,0.00,1.00,81.60,28.80,0
+91.20,28.80,11.79,0.00,1.00,91.20,28.80,0
+96.00,28.80,11.83,0.00,1.00,100.80,28.80,0
+100.80,28.80,11.87,0.00,1.00,110.40,28.80,0
+105.60,28.80,11.91,0.00,1.00,120.00,28.80,0
+110.40,24.00,11.95,0.00,1.00,129.60,24.00,0
+120.00,24.00,11.99,0.00,1.00,134.40,24.00,0
+124.80,24.00,12.03,0.00,1.00,139.20,24.00,0
+129.60,24.00,12.07,0.00,1.00,144.00,24.00,0
+134.40,19.20,12.11,0.00,1.00,148.80,19.20,0
+139.20,19.20,12.15,0.00,1.00,153.60,19.20,0
+144.00,19.20,12.19,0.00,1.00,158.40,14.40,0
+148.80,14.40,12.23,0.00,1.00,163.20,14.40,0
+153.60,14.40,12.27,0.00,1.00,163.20,14.40,0
+158.40,9.60,12.31,0.00,1.00,168.00,9.60,0
+158.40,9.60,12.35,0.00,1.00,168.00,9.60,0
+163.20,9.60,12.39,0.00,1.00,172.80,4.80,0
+168.00,4.80,12.43,0.00,1.00,172.80,4.80,0
+172.80,4.80,12.47,0.00,1.00,177.60,0.00,0
+177.60,0.00,12.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,12.55,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,12.59,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,12.63,0.00,1.00,-172.80,-9.60,0
+-163.20,-9.60,12.67,0.00,1.00,-172.80,-9.60,0
+-158.40,-9.60,12.71,0.00,1.00,-168.00,-14.40,0
+-158.40,-9.60,12.75,0.00,1.00,-168.00,-14.40,0
+-153.60,-14.40,12.79,0.00,1.00,-163.20,-14.40,0
+-148.80,-14.40,12.83,0.00,1.00,-163.20,-19.20,0
+-144.00,-19.20,12.87,0.00,1.00,-158.40,-19.20,0
+-139.20,-19.20,12.91,0.00,1.00,-153.60,-24.00,0
+-134.40,-19.20,12.95,0.00,1.00,-148.80,-24.00,0
+-129.60,-24.00,12.99,0.00,1.00,-144.00,-24.00,0
+-124.80,-24.00,13.03,0.00,1.00,-139.20,-24.00,0
+-120.00,-24.00,13.07,0.00,1.00,-134.40,-28.80,0
+-110.40,-24.00,13.11,0.00,1.00,-129.60,-28.80,0
+-105.60,-28.80,13.15,0.00,1.00,-120.00,-28.80,0
+-100.80,-28.80,13.19,0.00,1.00,-110.40,-28.80,0
+-96.00,-28.80,13.23,0.00,1.00,-100.80,-28.80,0
+-91.20,-28.80,13.27,0.00,1.00,-91.20,-28.80,0
+-86.40,-28.80,13.31,0.00,1.00,-81.60,-28.80,0
+-81.60,-28.80,13.35,0.00,1.00,-72.00,-28.80,0
+-76.80,-28.80,13.39,0.00,1.00,-62.40,-28.80,0
+-72.00,-24.00,13.43,0.00,1.00,-52.80,-24.00,0
+-62.40,-24.00,13.47,0.00,1.00,-48.00,-24.00,0
+-57.60,-24.00,13.51,0.00,1.00,-43.20,-24.00,0
+-52.80,-24.00,13.55,0.00,1.00,-38.40,-24.00,0
+-48.00,-24.00,13.59,0.00,1.00,-33.60,-19.20,0
+-43.20,-19.20,13.63,0.00,1.00,-28.80,-19.20,0
+-38.40,-19.20,13.67,0.00,1.00,-24.00,-19.20,0
+-33.60,-14.40,13.71,0.00,1.00,-19.20,-14.40,0
+-28.80,-14.40,13.75,0.00,1.00,-19.20,-14.40,0
+-24.00,-14.40,13.79,0.00,1.00,-14.40,-9.60,0
+-19.20,-9.60,13.83,0.00,1.00,-9.60,-9.60,0
+-19.20,-9.60,13.87,0.00,1.00,-9.60,-4.80,0
+-14.40,-4.80,13.91,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,13.95,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,13.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,14.04,0.00,1.00,0.00,0.00,0
+4.80,0.00,14.08,0.00,1.00,0.00,4.80,0
+9.60,4.80,14.12,0.00,1.00,4.80,4.80,0
+14.40,4.80,14.16,0.00,1.00,4.80,9.60,0
+19.20,9.60,14.20,0.00,1.00,9.60,9.60,0
+24.00,9.60,14.24,0.00,1.00,9.60,9.60,0
+28.80,9.60,14.28,0.00,1.00,14.40,14.40,0
+33.60,14.40,14.32,0.00,1.00,14.40,14.40,0
+38.40,14.40,14.36,0.00,1.00,19.20,14.40,0
+43.20,14.40,14.40,0.00,1.00,19.20,19.20,0
+48.00,14.40,14.44,0.00,1.00,24.00,19.20,0
+52.80,19.20,14.48,0.00,1.00,28.80,19.20,0
+57.60,19.20,14.52,0.00,1.00,33.60,19.20,0
+62.40,19.20,14.56,0.00,1.00,38.40,24.00,0
+67.20,19.20,14.60,0.00,1.00,43.20,24.00,0
+72.00,24.00,14.64,0.00,1.00,48.00,24.00,0
+76.80,24.00,14.68,0.00,1.00,57.60,24.00,0
+81.60,24.00,14.72,0.00,1.00,67.20,24.00,0
+86.40,24.00,14.76,0.00,1.00,81.60,24.00,0
+91.20,24.00,14.80,0.00,1.00,91.20,24.00,0
+96.00,24.00,14.84,0.00,1.00,105.60,24.00,0
+100.80,24.00,14.88,0.00,1.00,115.20,24.00,0
+105.60,24.00,14.92,0.00,1.00,124.80,24.00,0
+110.40,19.20,14.96,0.00,1.00,134.40,19.20,0
+115.20,19.20,15.00,0.00,1.00,139.20,19.20,0
+120.00,19.20,15.04,0.00,1.00,144.00,19.20,0
+124.80,19.20,15.08,0.00,1.00,148.80,19.20,0
+129.60,19.20,15.12,0.00,1.00,153.60,19.20,0
+134.40,14.40,15.16,0.00,1.00,158.40,14.40,0
+139.20,14.40,15.20,0.00,1.00,163.20,14.40,0
+144.00,14.40,15.24,0.00,1.00,163.20,14.40,0
+148.80,9.60,15.28,0.00,1.00,168.00,9.60,0
+153.60,9.60,15.32,0.00,1.00,168.00,9.60,0
+158.40,9.60,15.36,0.00,1.00,172.80,4.80,0
+163.20,4.80,15.40,0.00,1.00,172.80,4.80,0
+168.00,4.80,15.44,0.00,1.00,177.60,4.80,0
+172.80,4.80,15.48,0.00,1.00,177.60,0.00,0
+177.60,0.00,15.52,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,15.56,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,15.60,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,15.64,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,15.68,0.00,1.00,-172.80,-9.60,0
+-158.40,-9.60,15.72,0.00,1.00,-172.80,-9.60,0
+-153.60,-9.60,15.76,0.00,1.00,-168.00,-14.40,0
+-148.80,-9.60,15.80,0.00,1.00,-168.00,-14.40,0
+-144.00,-14.40,15.84,0.00,1.00,-163.20,-14.40,0
+-139.20,-14.40,15.88,0.00,1.00,-163.20,-19.20,0
+-134.40,-14.40,15.92,0.00,1.00,-158.40,-19.20,0
+-129.60,-19.20,15.96,0.00,1.00,-153.60,-19.20,0
+-124.80,-19.20,16.00,0.00,1.00,-148.80,-19.20,0
+-120.00,-19.20,16.00,0.00,1.00,-144.00,-19.20,0
+-115.20,-19.20,15.96,0.00,1.00,-139.20,-24.00,0
+-110.40,-19.20,15.92,0.00,1.00,-134.40,-24.00,0
+-105.60,-24.00,15.88,0.00,1.00,-124.80,-24.00,0
+-100.80,-24.00,15.84,0.00,1.00,-115.20,-24.00,0
+-96.00,-24.00,15.80,0.00,1.00,-105.60,-24.00,0
+-91.20,-24.00,15.76,0.00,1.00,-91.20,-24.00,0
+-86.40,-24.00,15.72,0.00,1.00,-81.60,-24.00,0
+-81.60,-24.00,15.68,0.00,1.00,-67.20,-24.00,0
+-76.80,-24.00,15.64,0.00,1.00,-57.60,-24.00,0
+-72.00,-24.00,15.60,0.00,1.00,-48.00,-24.00,0
+-67.20,-19.20,15.56,0.00,1.00,-43.20,-19.20,0
+-62.40,-19.20,15.52,0.00,1.00,-38.40,-19.20,0
+-57.60,-19.20,15.48,0.00,1.00,-33.60,-19.20,0
+-52.80,-19.20,15.44,0.00,1.00,-28.80,-19.20,0
+-48.00,-14.40,15.40,0.00,1.00,-24.00,-14.40,0
+-43.20,-14.40,15.36,0.00,1.00,-19.20,-14.40,0
+-38.40,-14.40,15.32,0.00,1.00,-19.20,-14.40,0
+-33.60,-14.40,15.28,0.00,1.00,-14.40,-9.60,0
+-28.80,-9.60,15.24,0.00,1.00,-14.40,-9.60,0
+-24.00,-9.60,15.20,0.00,1.00,-9.60,-9.60,0
+-19.20,-9.60,15.16,0.00,1.00,-9.60,-4.80,0
+-14.40,-4.80,15.12,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,15.08,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,15.04,0.00,1.00,-0.00,0.00,0
+0.00,0.00,15.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,14.96,0.00,1.00,0.00,4.80,0
+9.60,4.80,14.92,0.00,1.00,4.80,4.80,0
+14.40,4.80,14.88,0.00,1.00,4.80,4.80,0
+19.20,4.80,14.84,0.00,1.00,4.80,9.60,0
+24.00,9.60,14.80,0.00,1.00,9.60,9.60,0
+28.80,9.60,14.76,0.00,1.00,9.60,9.60,0
+33.60,9.60,14.72,0.00,1.00,9.60,9.60,0
+38.40,9.60,14.68,0.00,1.00,14.40,14.40,0
+43.20,14.40,14.64,0.00,1.00,14.40,14.40,0
+48.00,14.40,14.60,0.00,1.00,19.20,14.40,0
+52.80,14.40,14.56,0.00,1.00,24.00,14.40,0
+57.60,14.40,14.52,0.00,1.00,24.00,19.20,0
+62.40,14.40,14.48,0.00,1.00,28.80,19.20,0
+67.20,14.40,14.44,0.00,1.00,38.40,19.20,0
+72.00,19.20,14.40,0.00,1.00,43.20,19.20,0
+76.80,19.20,14.36,0.00,1.00,52.80,19.20,0
+81.60,19.20,14.32,0.00,1.00,62.40,19.20,0
+86.40,19.20,14.28,0.00,1.00,76.80,19.20,0
+91.20,19.20,14.24,0.00,1.00,96.00,19.20,0
+96.00,19.20,14.20,0.00,1.00,110.40,19.20,0
+100.80,19.20,14.16,0.00,1.00,120.00,19.20,0
+105.60,19.20,14.12,0.00,1.00,134.40,19.20,0
+110.40,19.20,14.08,0.00,1.00,139.20,19.20,0
+115.20,14.40,14.04,0.00,1.00,148.80,14.40,0
+120.00,14.40,13.99,0.00,1.00,153.60,14.40,0
+124.80,14.40,13.95,0.00,1.00,158.40,14.40,0
+129.60,14.40,13.91,0.00,1.00,158.40,14.40,0
+134.40,14.40,13.87,0.00,1.00,163.20,14.40,0
+139.20,9.60,13.83,0.00,1.00,163.20,9.60,0
+144.00,9.60,13.79,0.00,1.00,168.00,9.60,0
+148.80,9.60,13.75,0.00,1.00,168.00,9.60,0
+153.60,9.60,13.71,0.00,1.00,172.80,4.80,0
+158.40,4.80,13.67,0.00,1.00,172.80,4.80,0
+163.20,4.80,13.63,0.00,1.00,172.80,4.80,0
+168.00,4.80,13.59,0.00,1.00,177.60,0.00,0
+172.80,0.00,13.55,0.00,1.00,177.60,0.00,0
+177.60,0.00,13.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.47,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,13.43,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,13.39,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,13.35,0.00,1.00,-172.80,-4.80,0
+-158.40,-4.80,13.31,0.00,1.00,-172.80,-9.60,0
+-153.60,-9.60,13.27,0.00,1.00,-172.80,-9.60,0
+-148.80,-9.60,13.23,0.00,1.00,-168.00,-9.60,0
+-144.00,-9.60,13.19,0.00,1.00,-168.00,-14.40,0
+-139.20,-9.60,13.15,0.00,1.00,-163.20,-14.40,0
+-134.40,-14.40,13.11,0.00,1.00,-163.20,-14.40,0
+-129.60,-14.40,13.07,0.00,1.00,-158.40,-14.40,0
+-124.80,-14.40,13.03,0.00,1.00,-158.40,-14.40,0
+-120.00,-14.40,12.99,0.00,1.00,-153.60,-19.20,0
+-115.20,-14.40,12.95,0.00,1.00,-148.80,-19.20,0
+-110.40,-19.20,12.91,0.00,1.00,-139.20,-19.20,0
+-105.60,-19.20,12.87,0.00,1.00,-134.40,-19.20,0
+-100.80,-19.20,12.83,0.00,1.00,-120.00,-19.20,0
+-96.00,-19.20,12.79,0.00,1.00,-110.40,-19.20,0
+-91.20,-19.20,12.75,0.00,1.00,-96.00,-19.20,0
+-86.40,-19.20,12.71,0.00,1.00,-76.80,-19.20,0
+-81.60,-19.20,12.67,0.00,1.00,-62.40,-19.20,0
+-76.80,-19.20,12.63,0.00,1.00,-52.80,-19.20,0
+-72.00,-19.20,12.59,0.00,1.00,-43.20,-19.20,0
+-67.20,-14.40,12.55,0.00,1.00,-38.40,-19.20,0
+-62.40,-14.40,12.51,0.00,1.00,-28.80,-14.40,0
+-57.60,-14.40,12.47,0.00,1.00,-24.00,-14.40,0
+-52.80,-14.40,12.43,0.00,1.00,-24.00,-14.40,0
+-48.00,-14.40,12.39,0.00,1.00,-19.20,-14.40,0
+-43.20,-14.40,12.35,0.00,1.00,-14.40,-9.60,0
+-38.40,-9.60,12.31,0.00,1.00,-14.40,-9.60,0
+-33.60,-9.60,12.27,0.00,1.00,-9.60,-9.60,0
+-28.80,-9.60,12.23,0.00,1.00,-9.60,-9.60,0
+-24.00,-9.60,12.19,0.00,1.00,-9.60,-4.80,0
+-19.20,-4.80,12.15,0.00,1.00,-4.80,-4.80,0
+-14.40,-4.80,12.11,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,12.07,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,12.03,0.00,1.00,-0.00,0.00,0
+0.00,0.00,11.99,0.00,1.00,0.00,0.00,0
+4.80,0.00,11.95,0.00,1.00,0.00,0.00,0
+9.60,0.00,11.91,0.00,1.00,0.00,4.80,0
+14.40,4.80,11.87,0.00,1.00,4.80,4.80,0
+19.20,4.80,11.83,0.00,1.00,4.80,4.80,0
+24.00,4.80,11.79,0.00,1.00,4.80,4.80,0
+28.80,4.80,11.75,0.00,1.00,4.80,9.60,0
+33.60,9.60,11.71,0.00,1.00,9.60,9.60,0
+38.40,9.60,11.67,0.00,1.00,9.60,9.60,0
+43.20,9.60,11.63,0.00,1.00,14.40,9.60,0
+48.00,9.60,11.59,0.00,1.00,14.40,9.60,0
+52.80,9.60,11.55,0.00,1.00,14.40,14.40,0
+57.60,9.60,11.51,0.00,1.00,19.20,14.40,0
+62.40,9.60,11.47,0.00,1.00,24.00,14.40,0
+67.20,14.40,11.43,0.00,1.00,28.80,14.40,0
+72.00,14.40,11.39,0.00,1.00,33.60,14.40,0
+76.80,14.40,11.35,0.00,1.00,43.20,14.40,0
+81.60,14.40,11.31,0.00,1.00,57.60,14.40,0
+86.40,14.40,11.27,0.00,1.00,76.80,14.40,0
+91.20,14.40,11.23,0.00,1.00,96.00,14.40,0
+96.00,14.40,11.19,0.00,1.00,115.20,14.40,0
+100.80,14.40,11.15,0.00,1.00,129.60,14.40,0
+105.60,14.40,11.11,0.00,1.00,139.20,14.40,0
+110.40,14.40,11.07,0.00,1.00,148.80,14.40,0
+115.20,9.60,11.03,0.00,1.00,153.60,14.40,0
+120.00,9.60,10.99,0.00,1.00,158.40,9.60,0
+124.80,9.60,10.95,0.00,1.00,163.20,9.60,0
+129.60,9.60,10.91,0.00,1.00,163.20,9.60,0
+134.40,9.60,10.87,0.00,1.00,168.00,9.60,0
+139.20,9.60,10.83,0.00,1.00,168.00,9.60,0
+144.00,9.60,10.79,0.00,1.00,172.80,9.60,0
+148.80,4.80,10.75,0.00,1.00,172.80,4.80,0
+153.60,4.80,10.71,0.00,1.00,172.80,4.80,0
+158.40,4.80,10.67,0.00,1.00,172.80,4.80,0
+163.20,4.80,10.63,0.00,1.00,177.60,4.80,0
+168.00,4.80,10.59,0.00,1.00,177.60,0.00,0
+172.80,0.00,10.55,0.00,1.00,177.60,0.00,0
+177.60,0.00,10.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.47,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,10.43,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,10.39,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,10.35,0.00,1.00,-177.60,-4.80,0
+-158.40,-4.80,10.31,0.00,1.00,-172.80,-4.80,0
+-153.60,-4.80,10.27,0.00,1.00,-172.80,-9.60,0
+-148.80,-4.80,10.23,0.00,1.00,-172.80,-9.60,0
+-144.00,-9.60,10.19,0.00,1.00,-172.80,-9.60,0
+-139.20,-9.60,10.15,0.00,1.00,-168.00,-9.60,0
+-134.40,-9.60,10.11,0.00,1.00,-168.00,-9.60,0
+-129.60,-9.60,10.07,0.00,1.00,-163.20,-9.60,0
+-124.80,-9.60,10.03,0.00,1.00,-163.20,-14.40,0
+-120.00,-9.60,9.98,0.00,1.00,-158.40,-14.40,0
+-115.20,-9.60,9.94,0.00,1.00,-153.60,-14.40,0
+-110.40,-14.40,9.90,0.00,1.00,-148.80,-14.40,0
+-105.60,-14.40,9.86,0.00,1.00,-139.20,-14.40,0
+-100.80,-14.40,9.82,0.00,1.00,-129.60,-14.40,0
+-96.00,-14.40,9.78,0.00,1.00,-115.20,-14.40,0
+-91.20,-14.40,9.74,0.00,1.00,-96.00,-14.40,0
+-86.40,-14.40,9.70,0.00,1.00,-76.80,-14.40,0
+-81.60,-14.40,9.66,0.00,1.00,-57.60,-14.40,0
+-76.80,-14.40,9.62,0.00,1.00,-43.20,-14.40,0
+-72.00,-14.40,9.58,0.00,1.00,-33.60,-14.40,0
+-67.20,-14.40,9.54,0.00,1.00,-28.80,-14.40,0
+-62.40,-9.60,9.50,0.00,1.00,-24.00,-14.40,0
+-57.60,-9.60,9.46,0.00,1.00,-19.20,-9.60,0
+-52.80,-9.60,9.42,0.00,1.00,-14.40,-9.60,0
+-48.00,-9.60,9.38,0.00,1.00,-14.40,-9.60,0
+-43.20,-9.60,9.34,0.00,1.00,-14.40,-9.60,0
+-38.40,-9.60,9.30,0.00,1.00,-9.60,-9.60,0
+-33.60,-9.60,9.26,0.00,1.00,-9.60,-4.80,0
+-28.80,-4.80,9.22,0.00,1.00,-4.80,-4.80,0
+-24.00,-4.80,9.18,0.00,1.00,-4.80,-4.80,0
+-19.20,-4.80,9.14,0.00,1.00,-4.80,-4.80,0
+-14.40,-4.80,9.10,0.00,1.00,-4.80,-0.00,0
+-9.60,-0.00,9.06,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,9.02,0.00,1.00,-0.00,0.00,0
+0.00,0.00,8.98,0.00,1.00,0.00,0.00,0
+4.80,0.00,8.94,0.00,1.00,0.00,0.00,0
+9.60,0.00,8.90,0.00,1.00,0.00,0.00,0
+14.40,0.00,8.86,0.00,1.00,0.00,4.80,0
+19.20,4.80,8.82,0.00,1.00,4.80,4.80,0
+24.00,4.80,8.78,0.00,1.00,4.80,4.80,0
+28.80,4.80,8.74,0.00,1.00,4.80,4.80,0
+33.60,4.80,8.70,0.00,1.00,4.80,4.80,0
+38.40,4.80,8.66,0.00,1.00,4.80,4.80,0
+43.20,4.80,8.62,0.00,1.00,9.60,4.80,0
+48.00,4.80,8.58,0.00,1.00,9.60,9.60,0
+52.80,4.80,8.54,0.00,1.00,9.60,9.60,0
+57.60,4.80,8.50,0.00,1.00,14.40,9.60,0
+62.40,9.60,8.46,0.00,1.00,14.40,9.60,0
+67.20,9.60,8.42,0.00,1.00,19.20,9.60,0
+72.00,9.60,8.38,0.00,1.00,24.00,9.60,0
+76.80,9.60,8.34,0.00,1.00,33.60,9.60,0
+81.60,9.60,8.30,0.00,1.00,43.20,9.60,0
+86.40,9.60,8.26,0.00,1.00,67.20,9.60,0
+91.20,9.60,8.22,0.00,1.00,96.00,9.60,0
+96.00,9.60,8.18,0.00,1.00,124.80,9.60,0
+100.80,9.60,8.14,0.00,1.00,144.00,9.60,0
+105.60,9.60,8.10,0.00,1.00,153.60,9.60,0
+110.40,9.60,8.06,0.00,1.00,158.40,9.60,0
+115.20,9.60,8.02,0.00,1.00,163.20,9.60,0
+120.00,9.60,7.98,0.00,1.00,168.00,9.60,0
+124.80,4.80,7.94,0.00,1.00,168.00,9.60,0
+129.60,4.80,7.90,0.00,1.00,168.00,4.80,0
+134.40,4.80,7.86,0.00,1.00,172.80,4.80,0
+139.20,4.80,7.82,0.00,1.00,172.80,4.80,0
+144.00,4.80,7.78,0.00,1.00,172.80,4.80,0
+148.80,4.80,7.74,0.00,1.00,172.80,4.80,0
+153.60,4.80,7.70,0.00,1.00,177.60,4.80,0
+158.40,4.80,7.66,0.00,1.00,177.60,4.80,0
+163.20,4.80,7.62,0.00,1.00,177.60,0.00,0
+168.00,0.00,7.58,0.00,1.00,177.60,0.00,0
+172.80,0.00,7.54,0.00,1.00,177.60,0.00,0
+177.60,0.00,7.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,7.46,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,7.42,0.00,1.00,-177.60,-0.00,0
+-168.00,-0.00,7.38,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,7.34,0.00,1.00,-177.60,-4.80,0
+-158.40,-4.80,7.30,0.00,1.00,-177.60,-4.80,0
+-153.60,-4.80,7.26,0.00,1.00,-177.60,-4.80,0
+-148.80,-4.80,7.22,0.00,1.00,-172.80,-4.80,0
+-144.00,-4.80,7.18,0.00,1.00,-172.80,-4.80,0
+-139.20,-4.80,7.14,0.00,1.00,-172.80,-4.80,0
+-134.40,-4.80,7.10,0.00,1.00,-172.80,-9.60,0
+-129.60,-4.80,7.06,0.00,1.00,-168.00,-9.60,0
+-124.80,-4.80,7.02,0.00,1.00,-168.00,-9.60,0
+-120.00,-9.60,6.98,0.00,1.00,-168.00,-9.60,0
+-115.20,-9.60,6.94,0.00,1.00,-163.20,-9.60,0
+-110.40,-9.60,6.90,0.00,1.00,-158.40,-9.60,0
+-105.60,-9.60,6.86,0.00,1.00,-153.60,-9.60,0
+-100.80,-9.60,6.82,0.00,1.00,-144.00,-9.60,0
+-96.00,-9.60,6.78,0.00,1.00,-124.80,-9.60,0
+-91.20,-9.60,6.74,0.00,1.00,-96.00,-9.60,0
+-86.40,-9.60,6.70,0.00,1.00,-67.20,-9.60,0
+-81.60,-9.60,6.66,0.00,1.00,-43.20,-9.60,0
+-76.80,-9.60,6.62,0.00,1.00,-33.60,-9.60,0
+-72.00,-9.60,6.58,0.00,1.00,-24.00,-9.60,0
+-67.20,-9.60,6.54,0.00,1.00,-19.20,-9.60,0
+-62.40,-9.60,6.50,0.00,1.00,-14.40,-9.60,0
+-57.60,-4.80,6.46,0.00,1.00,-14.40,-9.60,0
+-52.80,-4.80,6.42,0.00,1.00,-9.60,-4.80,0
+-48.00,-4.80,6.38,0.00,1.00,-9.60,-4.80,0
+-43.20,-4.80,6.34,0.00,1.00,-9.60,-4.80,0
+-38.40,-4.80,6.30,0.00,1.00,-4.80,-4.80,0
+-33.60,-4.80,6.26,0.00,1.00,-4.80,-4.80,0
+-28.80,-4.80,6.22,0.00,1.00,-4.80,-4.80,0
+-24.00,-4.80,6.18,0.00,1.00,-4.80,-4.80,0
+-19.20,-4.80,6.14,0.00,1.00,-4.80,-0.00,0
+-14.40,-0.00,6.10,0.00,1.00,-0.00,-0.00,0
+-9.60,-0.00,6.06,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,6.02,0.00,1.00,-0.00,0.00,0
+0.00,0.00,5.97,0.00,1.00,0.00,0.00,0
+4.80,0.00,5.93,0.00,1.00,0.00,0.00,0
+9.60,0.00,5.89,0.00,1.00,0.00,0.00,0
+14.40,0.00,5.85,0.00,1.00,0.00,0.00,0
+19.20,0.00,5.81,0.00,1.00,0.00,0.00,0
+24.00,0.00,5.77,0.00,1.00,0.00,0.00,0
+28.80,0.00,5.73,0.00,1.00,0.00,4.80,0
+33.60,0.00,5.69,0.00,1.00,0.00,4.80,0
+38.40,0.00,5.65,0.00,1.00,4.80,4.80,0
+43.20,4.80,5.61,0.00,1.00,4.80,4.80,0
+48.00,4.80,5.57,0.00,1.00,4.80,4.80,0
+52.80,4.80,5.53,0.00,1.00,4.80,4.80,0
+57.60,4.80,5.49,0.00,1.00,4.80,4.80,0
+62.40,4.80,5.45,0.00,1.00,4.80,4.80,0
+67.20,4.80,5.41,0.00,1.00,9.60,4.80,0
+72.00,4.80,5.37,0.00,1.00,9.60,4.80,0
+76.80,4.80,5.33,0.00,1.00,14.40,4.80,0
+81.60,4.80,5.29,0.00,1.00,24.00,4.80,0
+86.40,4.80,5.25,0.00,1.00,43.20,4.80,0
+91.20,4.80,5.21,0.00,1.00,110.40,4.80,0
+96.00,4.80,5.17,0.00,1.00,148.80,4.80,0
+100.80,4.80,5.13,0.00,1.00,163.20,4.80,0
+105.60,4.80,5.09,0.00,1.00,168.00,4.80,0
+110.40,4.80,5.05,0.00,1.00,172.80,4.80,0
+115.20,4.80,5.01,0.00,1.00,172.80,4.80,0
+120.00,4.80,4.97,0.00,1.00,172.80,4.80,0
+124.80,4.80,4.93,0.00,1.00,172.80,4.80,0
+129.60,4.80,4.89,0.00,1.00,177.60,4.80,0
+134.40,4.80,4.85,0.00,1.00,177.60,4.80,0
+139.20,0.00,4.81,0.00,1.00,177.60,4.80,0
+144.00,0.00,4.77,0.00,1.00,177.60,4.80,0
+148.80,0.00,4.73,0.00,1.00,177.60,0.00,0
+153.60,0.00,4.69,0.00,1.00,177.60,0.00,0
+158.40,0.00,4.65,0.00,1.00,177.60,0.00,0
+163.20,0.00,4.61,0.00,1.00,177.60,0.00,0
+168.00,0.00,4.57,0.00,1.00,177.60,0.00,0
+172.80,0.00,4.53,0.00,1.00,177.60,0.00,0
+177.60,0.00,4.49,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,4.45,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,4.41,0.00,1.00,-177.60,-0.00,0
+-168.00,-0.00,4.37,0.00,1.00,-177.60,-0.00,0
+-163.20,-0.00,4.33,0.00,1.00,-177.60,-0.00,0
+-158.40,-0.00,4.29,0.00,1.00,-177.60,-0.00,0
+-153.60,-0.00,4.25,0.00,1.00,-177.60,-4.80,0
+-148.80,-0.00,4.21,0.00,1.00,-177.60,-4.80,0
+-144.00,-0.00,4.17,0.00,1.00,-177.60,-4.80,0
+-139.20,-0.00,4.13,0.00,1.00,-177.60,-4.80,0
+-134.40,-4.80,4.09,0.00,1.00,-177.60,-4.80,0
+-129.60,-4.80,4.05,0.00,1.00,-177.60,-4.80,0
+-124.80,-4.80,4.01,0.00,1.00,-172.80,-4.80,0
+-120.00,-4.80,3.97,0.00,1.00,-172.80,-4.80,0
+-115.20,-4.80,3.93,0.00,1.00,-172.80,-4.80,0
+-110.40,-4.80,3.89,0.00,1.00,-172.80,-4.80,0
+-105.60,-4.80,3.85,0.00,1.00,-168.00,-4.80,0
+-100.80,-4.80,3.81,0.00,1.00,-163.20,-4.80,0
+-96.00,-4.80,3.77,0.00,1.00,-148.80,-4.80,0
+-91.20,-4.80,3.73,0.00,1.00,-110.40,-4.80,0
+-86.40,-4.80,3.69,0.00,1.00,-43.20,-4.80,0
+-81.60,-4.80,3.65,0.00,1.00,-24.00,-4.80,0
+-76.80,-4.80,3.61,0.00,1.00,-14.40,-4.80,0
+-72.00,-4.80,3.57,0.00,1.00,-9.60,-4.80,0
+-67.20,-4.80,3.53,0.00,1.00,-9.60,-4.80,0
+-62.40,-4.80,3.49,0.00,1.00,-4.80,-4.80,0
+-57.60,-4.80,3.45,0.00,1.00,-4.80,-4.80,0
+-52.80,-4.80,3.41,0.00,1.00,-4.80,-4.80,0
+-48.00,-4.80,3.37,0.00,1.00,-4.80,-4.80,0
+-43.20,-4.80,3.33,0.00,1.00,-4.80,-4.80,0
+-38.40,-0.00,3.29,0.00,1.00,-4.80,-4.80,0
+-33.60,-0.00,3.25,0.00,1.00,-0.00,-0.00,0
+-28.80,-0.00,3.21,0.00,1.00,-0.00,-0.00,0
+-24.00,-0.00,3.17,0.00,1.00,-0.00,-0.00,0
+-19.20,-0.00,3.13,0.00,1.00,-0.00,-0.00,0
+-14.40,-0.00,3.09,0.00,1.00,-0.00,-0.00,0
+-9.60,-0.00,3.05,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,3.01,0.00,1.00,-0.00,0.00,0
+0.00,0.00,2.97,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,2.93,0.00,1.00,-0.00,0.00,0
+9.60,-0.00,2.89,0.00,1.00,-0.00,0.00,0
+14.40,-0.00,2.85,0.00,1.00,-0.00,0.00,0
+19.20,-0.00,2.81,0.00,1.00,-0.00,0.00,0
+24.00,-0.00,2.77,0.00,1.00,-0.00,0.00,0
+28.80,-0.00,2.73,0.00,1.00,-0.00,0.00,0
+33.60,-0.00,2.69,0.00,1.00,-0.00,0.00,0
+38.40,-0.00,2.65,0.00,1.00,-0.00,0.00,0
+43.20,-0.00,2.61,0.00,1.00,-0.00,0.00,0
+48.00,-0.00,2.57,0.00,1.00,-0.00,0.00,0
+52.80,-0.00,2.53,0.00,1.00,-0.00,0.00,0
+57.60,-0.00,2.49,0.00,1.00,-0.00,0.00,0
+62.40,-0.00,2.45,0.00,1.00,-0.00,0.00,0
+67.20,-0.00,2.41,0.00,1.00,-4.80,0.00,0
+72.00,-0.00,2.37,0.00,1.00,-4.80,0.00,0
+76.80,-0.00,2.33,0.00,1.00,-4.80,0.00,0
+81.60,-0.00,2.29,0.00,1.00,-9.60,0.00,0
+86.40,-0.00,2.25,0.00,1.00,-19.20,0.00,0
+91.20,-0.00,2.21,0.00,1.00,-134.40,0.00,0
+96.00,-0.00,2.17,0.00,1.00,-168.00,0.00,0
+100.80,-0.00,2.13,0.00,1.00,-172.80,0.00,0
+105.60,-0.00,2.09,0.00,1.00,-177.60,0.00,0
+110.40,-0.00,2.05,0.00,1.00,-177.60,0.00,0
+115.20,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+120.00,-0.00,1.96,0.00,1.00,-177.60,0.00,0
+124.80,-0.00,1.92,0.00,1.00,-177.60,0.00,0
+129.60,-0.00,1.88,0.00,1.00,-177.60,0.00,0
+134.40,-0.00,1.84,0.00,1.00,-177.60,0.00,0
+139.20,-0.00,1.80,0.00,1.00,-177.60,0.00,0
+144.00,-0.00,1.76,0.00,1.00,-177.60,0.00,0
+148.80,-0.00,1.72,0.00,1.00,-177.60,0.00,0
+153.60,-0.00,1.68,0.00,1.00,-177.60,0.00,0
+158.40,-0.00,1.64,0.00,1.00,-177.60,0.00,0
+163.20,-0.00,1.60,0.00,1.00,-177.60,0.00,0
+168.00,-0.00,1.56,0.00,1.00,-177.60,0.00,0
+172.80,-0.00,1.52,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,1.48,0.00,1.00,-177.60,0.00,0
+-177.60,0.00,1.44,0.00,1.00,177.60,0.00,0
+-172.80,0.00,1.40,0.00,1.00,177.60,0.00,0
+-168.00,0.00,1.36,0.00,1.00,177.60,0.00,0
+-163.20,0.00,1.32,0.00,1.00,177.60,0.00,0
+-158.40,0.00,1.28,0.00,1.00,177.60,0.00,0
+-153.60,0.00,1.24,0.00,1.00,177.60,0.00,0
+-148.80,0.00,1.20,0.00,1.00,177.60,0.00,0
+-144.00,0.00,1.16,0.00,1.00,177.60,0.00,0
+-139.20,0.00,1.12,0.00,1.00,177.60,0.00,0
+-134.40,0.00,1.08,0.00,1.00,177.60,0.00,0
+-129.60,0.00,1.04,0.00,1.00,177.60,0.00,0
+-124.80,0.00,1.00,0.00,1.00,177.60,0.00,0
+-120.00,0.00,0.96,0.00,1.00,177.60,0.00,0
+-115.20,0.00,0.92,0.00,1.00,177.60,0.00,0
+-110.40,0.00,0.88,0.00,1.00,177.60,0.00,0
+-105.60,0.00,0.84,0.00,1.00,177.60,0.00,0
+-100.80,0.00,0.80,0.00,1.00,172.80,0.00,0
+-96.00,0.00,0.76,0.00,1.00,168.00,0.00,0
+-91.20,0.00,0.72,0.00,1.00,134.40,0.00,0
+-86.40,0.00,0.68,0.00,1.00,19.20,0.00,0
+-81.60,0.00,0.64,0.00,1.00,9.60,0.00,0
+-76.80,0.00,0.60,0.00,1.00,4.80,0.00,0
+-72.00,0.00,0.56,0.00,1.00,4.80,0.00,0
+-67.20,0.00,0.52,0.00,1.00,4.80,0.00,0
+-62.40,0.00,0.48,0.00,1.00,0.00,0.00,0
+-57.60,0.00,0.44,0.00,1.00,0.00,0.00,0
+-52.80,0.00,0.40,0.00,1.00,0.00,0.00,0
+-48.00,0.00,0.36,0.00,1.00,0.00,0.00,0
+-43.20,0.00,0.32,0.00,1.00,0.00,0.00,0
+-38.40,0.00,0.28,0.00,1.00,0.00,0.00,0
+-33.60,0.00,0.24,0.00,1.00,0.00,0.00,0
+-28.80,0.00,0.20,0.00,1.00,0.00,0.00,0
+-24.00,0.00,0.16,0.00,1.00,0.00,0.00,0
+-19.20,0.00,0.12,0.00,1.00,0.00,0.00,0
+-14.40,0.00,0.08,0.00,1.00,0.00,0.00,0
+-9.60,0.00,0.04,0.00,1.00,0.00,0.00,0
+-4.80,0.00,0.00,0.00,1.00,0.00,0.00,0
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA2TC32c.met b/scripts/testv/stvOMASA_4ISM_2MASA2TC32c.met
new file mode 100644
index 0000000000000000000000000000000000000000..1b62022af572fc4f198e4212cca88d51913ec3c4
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA2TC32c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2eb412d646d7a32c77413dea54dc44cf45dc49e6d8c2de19abe4f4b93a91fa4a
+size 159900
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA2TC32c.wav b/scripts/testv/stvOMASA_4ISM_2MASA2TC32c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..1b1c0f8f09759d787279de60e87b6b7b085f1863
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA2TC32c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:797678b099e44e2ccbab7d2a8944c8a40d5fd3574c409c951cd81d7b7c6a37c4
+size 1152080
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA2TC32c_ISM1.csv b/scripts/testv/stvOMASA_4ISM_2MASA2TC32c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA2TC32c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA2TC32c_ISM2.csv b/scripts/testv/stvOMASA_4ISM_2MASA2TC32c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA2TC32c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA2TC32c_ISM3.csv b/scripts/testv/stvOMASA_4ISM_2MASA2TC32c_ISM3.csv
new file mode 100644
index 0000000000000000000000000000000000000000..14eee9b693b536fa2fd22d2813d7f588b8930b06
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA2TC32c_ISM3.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0
+-177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0
+4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0
+-168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0
+14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0
+-163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0
+19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0
+-153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0
+28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0
+-148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0
+38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0
+-139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0
+48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0
+-124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0
+57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0
+-115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0
+72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0
+-100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0
+86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0
+-86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0
+100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0
+-76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0
+110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0
+-62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0
+124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0
+-52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0
+134.40,33.60,0.28,0.00,1.00,177.60,0.00,0
+-38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0
+144.00,28.80,0.30,0.00,1.00,177.60,0.00,0
+-33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0
+153.60,24.00,0.32,0.00,1.00,177.60,0.00,0
+-24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0
+158.40,19.20,0.34,0.00,1.00,177.60,0.00,0
+-14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0
+168.00,9.60,0.36,0.00,1.00,177.60,0.00,0
+-9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0
+172.80,4.80,0.38,0.00,1.00,177.60,0.00,0
+-0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0
+-177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0
+4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0
+14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0
+19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0
+-158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0
+28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0
+-148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0
+33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0
+-139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0
+43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0
+-129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0
+57.60,38.40,15.47,0.00,1.00,177.60,0.00,0
+-120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0
+67.20,43.20,15.44,0.00,1.00,177.60,0.00,0
+-105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0
+81.60,43.20,15.42,0.00,1.00,177.60,0.00,0
+-91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0
+96.00,43.20,15.40,0.00,1.00,0.00,0.00,0
+-76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0
+110.40,43.20,15.38,0.00,1.00,0.00,0.00,0
+-67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0
+120.00,38.40,15.36,0.00,1.00,0.00,0.00,0
+-52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0
+129.60,38.40,15.34,0.00,1.00,0.00,0.00,0
+-43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0
+144.00,33.60,15.32,0.00,1.00,0.00,0.00,0
+-33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0
+148.80,24.00,15.30,0.00,1.00,0.00,0.00,0
+-24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0
+158.40,19.20,15.27,0.00,1.00,0.00,0.00,0
+-19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0
+168.00,14.40,15.25,0.00,1.00,0.00,0.00,0
+-9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0
+172.80,4.80,15.23,0.00,1.00,0.00,0.00,0
+-4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0
+0.00,0.00,15.21,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0
+9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0
+14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0
+-163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0
+24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0
+-153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0
+28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0
+-144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0
+38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0
+-134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0
+48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0
+-124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0
+62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0
+-115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0
+72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0
+-100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0
+86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0
+-86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0
+96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0
+-76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0
+110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0
+-62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0
+120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0
+-52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0
+134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0
+-43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0
+144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0
+-33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0
+148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0
+-24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0
+158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0
+-19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0
+168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0
+-9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0
+172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0
+4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0
+14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0
+19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0
+-153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0
+28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0
+-148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0
+38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0
+-139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0
+48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0
+-124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0
+57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0
+-115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0
+72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0
+-105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0
+81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0
+-91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0
+96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0
+-76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0
+105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0
+-67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0
+120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0
+-57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0
+129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0
+-43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0
+139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0
+-33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0
+148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0
+-28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0
+158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0
+-19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0
+163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0
+-9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0
+172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0
+0.00,0.00,1.60,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0
+9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0
+14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0
+-158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0
+24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0
+-153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0
+33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0
+-144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0
+43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0
+-134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0
+52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0
+-124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0
+62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0
+-110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0
+72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0
+-100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0
+86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0
+-86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0
+96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0
+-76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0
+110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0
+-67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0
+120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0
+-52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0
+129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0
+-43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0
+139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0
+-33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0
+148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0
+-24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0
+158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0
+-19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0
+168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0
+172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0
+14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0
+-163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0
+24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0
+-153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0
+28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0
+-144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0
+38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0
+-134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0
+48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0
+-124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0
+62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0
+-115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0
+72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0
+-100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0
+81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0
+-91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0
+96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0
+-81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0
+105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0
+-67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0
+115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0
+-57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0
+129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0
+-48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0
+139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0
+-38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0
+148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0
+-28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0
+153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0
+-19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0
+163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0
+-9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0
+172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0
+0.00,0.00,13.61,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0
+9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0
+-168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0
+24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0
+-148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0
+33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0
+-139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0
+43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0
+-129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0
+52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0
+-120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0
+62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0
+-110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0
+76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0
+-100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0
+86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0
+-86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0
+96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0
+-76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0
+105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0
+-67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0
+120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0
+-57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0
+129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0
+-48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0
+139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0
+-38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0
+148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0
+158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0
+-19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0
+163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0
+172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0
+4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0
+14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0
+-163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0
+24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0
+-153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0
+33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0
+-144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0
+43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0
+-134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0
+52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0
+-124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0
+62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0
+-115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0
+72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0
+-100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0
+81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0
+-91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0
+96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0
+-81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0
+105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0
+-67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0
+115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0
+-57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0
+124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0
+-48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0
+134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0
+-38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0
+144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0
+-28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0
+153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0
+-19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0
+163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0
+-14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0
+172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0
+-4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0
+0.00,0.00,3.20,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0
+9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0
+19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0
+24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0
+-148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0
+33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0
+-139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0
+43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0
+-129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0
+52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0
+-120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0
+67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0
+-110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0
+76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0
+-100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0
+86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0
+-86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0
+96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0
+-76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0
+105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0
+-67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0
+115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0
+-57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0
+129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0
+-48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0
+139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0
+-38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0
+148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0
+153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0
+-19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0
+163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0
+172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0
+4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0
+14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0
+24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0
+-153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0
+33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0
+-144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0
+43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0
+-134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0
+52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0
+-124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0
+62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0
+-110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0
+72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0
+-100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0
+81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0
+-91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0
+96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0
+-81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0
+105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0
+-72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0
+115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0
+-57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0
+124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0
+-48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0
+134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0
+-38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0
+144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0
+-28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0
+153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0
+-24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0
+163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0
+-14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0
+172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,12.01,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0
+9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0
+-158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0
+28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0
+-148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0
+38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0
+-139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0
+48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0
+-129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0
+57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0
+-120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0
+67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0
+-110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0
+76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0
+-100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0
+86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0
+-86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0
+96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0
+-76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0
+105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0
+-67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0
+115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0
+-57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0
+124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0
+-48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0
+134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0
+-38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0
+144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0
+-28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0
+153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0
+-19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0
+163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0
+172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0
+4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0
+14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0
+24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0
+-148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0
+33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0
+-139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0
+43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0
+-129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0
+52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0
+-120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0
+62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0
+-110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0
+72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0
+-100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0
+81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0
+-91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0
+96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0
+-81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0
+105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0
+-72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0
+115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0
+-62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0
+124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0
+-52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0
+134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0
+-43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0
+144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0
+-33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0
+153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0
+-24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0
+163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0
+172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0
+0.00,0.00,4.81,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0
+9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0
+19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0
+28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0
+-148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0
+38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0
+-139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0
+48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0
+-129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0
+57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0
+-120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0
+67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0
+-110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0
+76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0
+-100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0
+86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0
+-86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0
+96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0
+-76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0
+105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0
+-67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0
+115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0
+-57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0
+124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0
+-48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0
+134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0
+-38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0
+144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0
+-28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0
+153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0
+-19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0
+163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0
+-9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0
+172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0
+4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0
+14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0
+24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0
+-148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0
+33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0
+-139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0
+43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0
+-129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0
+52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0
+-120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0
+62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0
+-110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0
+72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0
+-100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0
+81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0
+-91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0
+96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0
+-81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0
+105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0
+-72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0
+115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0
+-62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0
+124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0
+-52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0
+134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0
+-43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0
+144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0
+-33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0
+153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0
+-24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0
+163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0
+172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+0.00,0.00,10.40,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0
+9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0
+19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0
+28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0
+-148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0
+38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0
+-139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0
+48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0
+-129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0
+57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0
+-120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0
+67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0
+-110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0
+76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0
+-100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0
+86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0
+-86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0
+96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0
+-76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0
+105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0
+-67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0
+115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0
+-57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0
+124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0
+-48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0
+134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0
+-38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0
+144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0
+-28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0
+153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0
+163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0
+-9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0
+172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0
+4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0
+14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0
+24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0
+33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0
+-139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0
+43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0
+-129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0
+52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0
+-120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0
+62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0
+-110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0
+72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0
+-100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0
+81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0
+-91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0
+96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0
+-81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0
+105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0
+-72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0
+115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0
+-62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0
+124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0
+-52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0
+134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0
+-43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0
+144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0
+-33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0
+153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0
+-24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0
+163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0
+172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,6.41,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0
+9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0
+19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0
+-158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0
+28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0
+-148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0
+38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0
+-139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0
+48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0
+-129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0
+57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0
+-120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0
+67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0
+-110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0
+76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0
+-100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0
+86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0
+-86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0
+96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0
+-76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0
+105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0
+-67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0
+115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0
+-57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0
+124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0
+-48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0
+134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0
+-38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0
+144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0
+-28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0
+153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0
+163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0
+172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0
+4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0
+14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0
+-158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0
+24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0
+33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0
+-139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0
+43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0
+-129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0
+52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0
+-120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0
+62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0
+-110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0
+72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0
+-100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0
+81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0
+-91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0
+96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0
+-81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0
+105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0
+-72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0
+115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0
+-62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0
+124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0
+-52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0
+134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0
+-43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0
+144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0
+-33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0
+153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0
+-24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0
+163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0
+-14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0
+172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.80,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0
+9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0
+19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0
+-158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0
+28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0
+-148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0
+38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0
+-139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0
+48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0
+-129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0
+57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0
+-120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0
+67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0
+-110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0
+76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0
+-100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0
+86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0
+-86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0
+96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0
+-76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0
+105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0
+-67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0
+115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0
+-57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0
+124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0
+-48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0
+134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0
+-38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0
+144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0
+-28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0
+153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0
+-19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0
+163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0
+172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0
+-0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0
+4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0
+-168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0
+14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0
+-158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0
+24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0
+-148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0
+33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0
+-139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0
+43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0
+-129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0
+52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0
+-120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0
+62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0
+-110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0
+72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0
+-100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0
+81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0
+-91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0
+96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0
+-81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0
+105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0
+-72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0
+115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0
+-62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0
+124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0
+-52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0
+134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0
+-43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0
+144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0
+-33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0
+153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0
+-24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0
+163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0
+-14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0
+172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.01,0.00,1.00,0.00,0.00,0
+-177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0
+-168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0
+19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0
+-158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0
+28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0
+-148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0
+38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0
+-139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0
+48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0
+-129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0
+57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0
+-120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0
+67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0
+-110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0
+76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0
+-100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0
+86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0
+-86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0
+96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0
+-76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0
+105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0
+-67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0
+115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0
+-57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0
+124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0
+-48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0
+134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0
+-38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0
+144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0
+-28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0
+153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0
+-19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0
+163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0
+172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0
+14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0
+-158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0
+24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0
+-148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0
+33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0
+-139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0
+43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0
+-129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0
+52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0
+-120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0
+62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0
+-110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0
+72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0
+-100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0
+81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0
+-91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0
+96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0
+-81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0
+105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0
+-72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0
+115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0
+-62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0
+124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0
+-52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0
+134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0
+-43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0
+144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0
+-33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0
+153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0
+-24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0
+163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0
+-4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0
+0.00,0.00,7.20,0.00,1.00,0.00,0.00,0
+-177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0
+-168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0
+19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0
+38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0
+-139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0
+48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0
+-129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0
+57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0
+-120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0
+67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0
+-110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0
+76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0
+-100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0
+86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0
+-86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0
+96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0
+-76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0
+105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0
+-67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0
+115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0
+-57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0
+124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0
+-48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0
+134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0
+-38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0
+144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0
+-19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0
+163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0
+14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0
+-148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0
+33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0
+-139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0
+43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0
+-129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0
+52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0
+-120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0
+62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0
+72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0
+-100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0
+81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0
+-91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0
+96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0
+-81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0
+105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0
+-72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0
+115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0
+-62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0
+124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0
+-52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0
+134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0
+-43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0
+144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0
+-33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0
+153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0
+0.00,0.00,9.61,0.00,1.00,0.00,0.00,0
+-177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0
+48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0
+-129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0
+57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0
+-120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0
+67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0
+-110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0
+76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0
+-100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0
+86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0
+-86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0
+96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0
+-76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0
+105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0
+-67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0
+115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0
+-57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0
+124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0
+-48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0
+134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0
+163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0
+-9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0
+-148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0
+33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0
+-139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0
+43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0
+-129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0
+52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0
+-120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0
+62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0
+72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0
+-100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0
+81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0
+-91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0
+96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0
+-81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0
+105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0
+-72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0
+115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0
+-62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0
+124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0
+-52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0
+134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0
+-43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0
+144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0
+-33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0
+153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0
+-14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0
+172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0
+0.00,0.00,5.60,0.00,1.00,0.00,0.00,0
+-177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0
+-158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0
+28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0
+-148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0
+48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0
+-129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0
+57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0
+-120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0
+67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0
+-110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0
+76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0
+-100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0
+86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0
+-86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0
+96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0
+-76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0
+105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0
+-67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0
+115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0
+-57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0
+124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0
+-48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0
+134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0
+-28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0
+153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0
+-158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0
+-148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0
+33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0
+-139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0
+43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0
+-129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0
+52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0
+-120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0
+62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0
+-110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0
+72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0
+-100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0
+81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0
+-91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0
+96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0
+-81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0
+105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0
+-72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0
+115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0
+-62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0
+124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0
+-52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0
+134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0
+-43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0
+144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0
+-33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0
+153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0
+0.00,0.00,11.21,0.00,1.00,0.00,0.00,0
+-177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0
+28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0
+-148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0
+38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0
+-139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0
+48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0
+57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0
+-120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0
+67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0
+-110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0
+76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0
+-100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0
+86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0
+-86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0
+96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0
+-76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0
+105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0
+-67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0
+115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0
+-57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0
+124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0
+-48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0
+134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0
+-38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0
+144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0
+-28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0
+153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0
+-148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0
+-139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0
+43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0
+-129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0
+52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0
+-120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0
+62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0
+-110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0
+72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0
+-100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0
+81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0
+-91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0
+96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0
+-81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0
+105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0
+-72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0
+115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0
+-62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0
+124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0
+-52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0
+134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0
+-43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0
+-33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0
+153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0
+-24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0
+163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,3.99,0.00,1.00,0.00,0.00,0
+-177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0
+19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0
+-148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0
+33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0
+43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0
+52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0
+-120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0
+62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0
+-110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0
+76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0
+-100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0
+86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0
+-86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0
+96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0
+-76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0
+105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0
+-67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0
+120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0
+-57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0
+-48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0
+139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0
+148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0
+158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0
+163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0
+43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0
+-134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0
+-124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0
+62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0
+-110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0
+72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0
+-100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0
+81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0
+-91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0
+96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0
+-81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0
+105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0
+-72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0
+115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0
+-57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0
+124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0
+-48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0
+134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0
+-38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0
+-28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0
+-24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,12.82,0.00,1.00,0.00,0.00,0
+-177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0
+-148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0
+33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0
+-129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0
+-120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0
+62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0
+-110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0
+76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0
+-100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0
+86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0
+-86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0
+96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0
+-76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0
+110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0
+-67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0
+120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0
+-57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0
+-48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0
+-163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0
+33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0
+43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0
+-134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0
+62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0
+-115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0
+72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0
+-100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0
+81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0
+-91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0
+96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0
+-81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0
+105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0
+-67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0
+115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0
+-57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0
+124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0
+-48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0
+134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0
+-38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0
+144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0
+-14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,2.39,0.00,1.00,0.00,0.00,0
+-177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0
+33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0
+-144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0
+-134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0
+62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0
+-110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0
+72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0
+-100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0
+86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0
+-86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0
+96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0
+-76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0
+110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0
+-67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0
+120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0
+-52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0
+129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0
+-19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0
+28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0
+-144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0
+38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0
+-134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0
+48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0
+57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0
+-115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0
+72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0
+-105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0
+81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0
+-91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0
+96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0
+-81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0
+105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0
+-67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0
+120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0
+-57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0
+129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0
+-48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0
+139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0
+-38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0
+158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0
+0.00,0.00,14.42,0.00,1.00,0.00,0.00,0
+-177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0
+-163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0
+24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0
+28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0
+-144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0
+38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0
+-134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0
+48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0
+62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0
+-115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0
+72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0
+86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0
+-86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0
+96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0
+-76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0
+110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0
+-62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0
+120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0
+-52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0
+134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0
+158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0
+-148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0
+38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0
+-139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0
+48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0
+-129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0
+-115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0
+67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0
+-105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0
+81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0
+-91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0
+96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0
+105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0
+-67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0
+120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0
+-52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0
+129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0
+139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0
+163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0
+0.00,0.00,0.79,0.00,1.00,0.00,0.00,0
+-177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0
+4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0
+-163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0
+19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0
+-153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0
+28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0
+-148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0
+38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0
+-139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0
+48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0
+-124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0
+57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0
+-115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0
+72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0
+86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0
+-86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0
+100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0
+-76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0
+110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0
+-62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0
+124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0
+-48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0
+134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0
+-38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0
+-28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0
+-24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0
+163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0
+168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0
+9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0
+-158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0
+-148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0
+33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0
+-139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0
+43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0
+-129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0
+-120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0
+67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0
+-105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0
+81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0
+-91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0
+96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0
+110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0
+-67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0
+120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0
+-52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0
+134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0
+144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0
+153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0
+-24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0
+-19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0
+168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA2TC32c_ISM4.csv b/scripts/testv/stvOMASA_4ISM_2MASA2TC32c_ISM4.csv
new file mode 100644
index 0000000000000000000000000000000000000000..8a14c3413ddd2dd47415bf6de3e19631f65f8f6c
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA2TC32c_ISM4.csv
@@ -0,0 +1,1500 @@
+-0.00,0.00,0.00,0.00,1.00,0.00,4.80,0
+-0.00,4.80,0.06,0.00,1.00,4.80,9.60,0
+-0.00,9.60,0.13,0.00,1.00,9.60,14.40,0
+-0.00,14.40,0.19,0.00,1.00,14.40,19.20,0
+-0.00,19.20,0.26,0.00,1.00,19.20,24.00,0
+-0.00,24.00,0.32,0.00,1.00,24.00,28.80,0
+-0.00,28.80,0.39,0.00,1.00,28.80,33.60,0
+-0.00,33.60,0.45,0.00,1.00,33.60,38.40,0
+-0.00,38.40,0.51,0.00,1.00,38.40,43.20,0
+-0.00,43.20,0.58,0.00,1.00,43.20,48.00,0
+-0.00,48.00,0.64,0.00,1.00,48.00,52.80,0
+-0.00,52.80,0.71,0.00,1.00,52.80,57.60,0
+-0.00,57.60,0.77,0.00,1.00,57.60,62.40,0
+-0.00,62.40,0.84,0.00,1.00,62.40,67.20,0
+-0.00,67.20,0.90,0.00,1.00,67.20,72.00,0
+-0.00,72.00,0.96,0.00,1.00,72.00,76.80,0
+-0.00,76.80,1.03,0.00,1.00,76.80,81.60,0
+-0.00,81.60,1.09,0.00,1.00,81.60,86.40,0
+-0.00,86.40,1.16,0.00,1.00,86.40,86.40,0
+-177.60,89.20,1.22,0.00,1.00,91.20,81.60,0
+-177.60,86.40,1.29,0.00,1.00,96.00,76.80,0
+-177.60,81.60,1.35,0.00,1.00,100.80,72.00,0
+-177.60,76.80,1.41,0.00,1.00,105.60,67.20,0
+-177.60,72.00,1.48,0.00,1.00,110.40,62.40,0
+-177.60,67.20,1.54,0.00,1.00,115.20,57.60,0
+177.60,62.40,1.61,0.00,1.00,120.00,52.80,0
+177.60,57.60,1.67,0.00,1.00,124.80,48.00,0
+177.60,52.80,1.73,0.00,1.00,129.60,43.20,0
+177.60,48.00,1.80,0.00,1.00,134.40,38.40,0
+177.60,43.20,1.86,0.00,1.00,139.20,33.60,0
+177.60,38.40,1.93,0.00,1.00,144.00,28.80,0
+177.60,33.60,1.99,0.00,1.00,148.80,24.00,0
+177.60,28.80,2.06,0.00,1.00,153.60,19.20,0
+177.60,24.00,2.12,0.00,1.00,158.40,14.40,0
+177.60,19.20,2.18,0.00,1.00,163.20,9.60,0
+177.60,14.40,2.25,0.00,1.00,168.00,4.80,0
+177.60,9.60,2.31,0.00,1.00,172.80,0.00,0
+177.60,4.80,2.38,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.44,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,2.51,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,2.57,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,2.63,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,2.70,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,2.76,0.00,1.00,-153.60,-28.80,0
+-177.60,-28.80,2.83,0.00,1.00,-148.80,-33.60,0
+-177.60,-33.60,2.89,0.00,1.00,-144.00,-38.40,0
+-177.60,-38.40,2.96,0.00,1.00,-139.20,-43.20,0
+-177.60,-48.00,3.02,0.00,1.00,-134.40,-48.00,0
+-177.60,-48.00,3.08,0.00,1.00,-129.60,-52.80,0
+-177.60,-52.80,3.15,0.00,1.00,-124.80,-57.60,0
+-177.60,-57.60,3.21,0.00,1.00,-120.00,-62.40,0
+177.60,-62.40,3.28,0.00,1.00,-115.20,-67.20,0
+177.60,-67.20,3.34,0.00,1.00,-110.40,-72.00,0
+177.60,-76.80,3.41,0.00,1.00,-105.60,-76.80,0
+177.60,-76.80,3.47,0.00,1.00,-100.80,-81.60,0
+177.60,-86.40,3.53,0.00,1.00,-96.00,-86.40,0
+177.60,-89.20,3.60,0.00,1.00,-91.20,-86.40,0
+0.00,-86.40,3.66,0.00,1.00,-86.40,-81.60,0
+0.00,-81.60,3.73,0.00,1.00,-81.60,-76.80,0
+0.00,-76.80,3.79,0.00,1.00,-76.80,-72.00,0
+0.00,-72.00,3.86,0.00,1.00,-72.00,-67.20,0
+0.00,-67.20,3.92,0.00,1.00,-67.20,-62.40,0
+0.00,-62.40,3.98,0.00,1.00,-62.40,-57.60,0
+0.00,-57.60,4.05,0.00,1.00,-57.60,-52.80,0
+0.00,-52.80,4.11,0.00,1.00,-52.80,-48.00,0
+0.00,-48.00,4.18,0.00,1.00,-48.00,-43.20,0
+0.00,-43.20,4.24,0.00,1.00,-43.20,-38.40,0
+0.00,-38.40,4.31,0.00,1.00,-38.40,-33.60,0
+0.00,-33.60,4.37,0.00,1.00,-33.60,-28.80,0
+0.00,-28.80,4.43,0.00,1.00,-28.80,-24.00,0
+0.00,-24.00,4.50,0.00,1.00,-24.00,-19.20,0
+0.00,-19.20,4.56,0.00,1.00,-19.20,-14.40,0
+0.00,-14.40,4.63,0.00,1.00,-14.40,-9.60,0
+0.00,-9.60,4.69,0.00,1.00,-9.60,-4.80,0
+0.00,-4.80,4.76,0.00,1.00,-4.80,0.00,0
+0.00,0.00,4.82,0.00,1.00,0.00,4.80,0
+0.00,4.80,4.88,0.00,1.00,4.80,9.60,0
+0.00,9.60,4.95,0.00,1.00,9.60,14.40,0
+0.00,14.40,5.01,0.00,1.00,14.40,19.20,0
+0.00,19.20,5.08,0.00,1.00,19.20,24.00,0
+0.00,24.00,5.14,0.00,1.00,24.00,28.80,0
+4.80,28.80,5.20,0.00,1.00,28.80,33.60,0
+4.80,33.60,5.27,0.00,1.00,33.60,38.40,0
+4.80,38.40,5.33,0.00,1.00,38.40,43.20,0
+4.80,43.20,5.40,0.00,1.00,43.20,48.00,0
+4.80,48.00,5.46,0.00,1.00,48.00,52.80,0
+4.80,52.80,5.53,0.00,1.00,52.80,57.60,0
+9.60,57.60,5.59,0.00,1.00,57.60,62.40,0
+9.60,62.40,5.65,0.00,1.00,62.40,67.20,0
+9.60,67.20,5.72,0.00,1.00,67.20,72.00,0
+14.40,72.00,5.78,0.00,1.00,72.00,76.80,0
+19.20,76.80,5.85,0.00,1.00,76.80,81.60,0
+28.80,81.60,5.91,0.00,1.00,81.60,86.40,0
+52.80,86.40,5.98,0.00,1.00,86.40,86.40,0
+105.60,86.40,6.04,0.00,1.00,91.20,81.60,0
+139.20,81.60,6.10,0.00,1.00,96.00,76.80,0
+158.40,76.80,6.17,0.00,1.00,100.80,72.00,0
+163.20,72.00,6.23,0.00,1.00,105.60,67.20,0
+168.00,67.20,6.30,0.00,1.00,110.40,62.40,0
+168.00,62.40,6.36,0.00,1.00,115.20,57.60,0
+172.80,57.60,6.43,0.00,1.00,120.00,52.80,0
+172.80,52.80,6.49,0.00,1.00,124.80,48.00,0
+172.80,48.00,6.55,0.00,1.00,129.60,43.20,0
+172.80,43.20,6.62,0.00,1.00,134.40,38.40,0
+177.60,38.40,6.68,0.00,1.00,139.20,33.60,0
+177.60,33.60,6.75,0.00,1.00,144.00,28.80,0
+177.60,28.80,6.81,0.00,1.00,148.80,24.00,0
+177.60,24.00,6.88,0.00,1.00,153.60,19.20,0
+177.60,19.20,6.94,0.00,1.00,158.40,14.40,0
+177.60,14.40,7.00,0.00,1.00,163.20,9.60,0
+177.60,9.60,7.07,0.00,1.00,168.00,4.80,0
+177.60,4.80,7.13,0.00,1.00,172.80,0.00,0
+177.60,0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,7.26,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,7.33,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,7.39,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,7.45,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,7.52,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,7.58,0.00,1.00,-153.60,-28.80,0
+-177.60,-28.80,7.65,0.00,1.00,-148.80,-33.60,0
+-177.60,-33.60,7.71,0.00,1.00,-144.00,-38.40,0
+-177.60,-38.40,7.78,0.00,1.00,-139.20,-43.20,0
+-172.80,-43.20,7.84,0.00,1.00,-134.40,-48.00,0
+-172.80,-48.00,7.90,0.00,1.00,-129.60,-52.80,0
+-172.80,-52.80,7.97,0.00,1.00,-124.80,-57.60,0
+-172.80,-57.60,8.03,0.00,1.00,-120.00,-62.40,0
+-168.00,-62.40,8.10,0.00,1.00,-115.20,-67.20,0
+-168.00,-67.20,8.16,0.00,1.00,-110.40,-72.00,0
+-163.20,-72.00,8.22,0.00,1.00,-105.60,-76.80,0
+-158.40,-76.80,8.29,0.00,1.00,-100.80,-81.60,0
+-139.20,-81.60,8.35,0.00,1.00,-96.00,-86.40,0
+-105.60,-86.40,8.42,0.00,1.00,-91.20,-86.40,0
+-52.80,-86.40,8.48,0.00,1.00,-86.40,-81.60,0
+-28.80,-81.60,8.55,0.00,1.00,-81.60,-76.80,0
+-19.20,-76.80,8.61,0.00,1.00,-76.80,-72.00,0
+-14.40,-72.00,8.67,0.00,1.00,-72.00,-67.20,0
+-9.60,-67.20,8.74,0.00,1.00,-67.20,-62.40,0
+-9.60,-62.40,8.80,0.00,1.00,-62.40,-57.60,0
+-9.60,-57.60,8.87,0.00,1.00,-57.60,-52.80,0
+-4.80,-52.80,8.93,0.00,1.00,-52.80,-48.00,0
+-4.80,-48.00,9.00,0.00,1.00,-48.00,-43.20,0
+-4.80,-43.20,9.06,0.00,1.00,-43.20,-38.40,0
+-4.80,-38.40,9.12,0.00,1.00,-38.40,-33.60,0
+-4.80,-33.60,9.19,0.00,1.00,-33.60,-28.80,0
+-4.80,-28.80,9.25,0.00,1.00,-28.80,-24.00,0
+-0.00,-24.00,9.32,0.00,1.00,-24.00,-19.20,0
+-0.00,-19.20,9.38,0.00,1.00,-19.20,-14.40,0
+-0.00,-14.40,9.45,0.00,1.00,-14.40,-9.60,0
+-0.00,-9.60,9.51,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,9.57,0.00,1.00,-4.80,0.00,0
+0.00,0.00,9.64,0.00,1.00,0.00,4.80,0
+0.00,4.80,9.70,0.00,1.00,4.80,9.60,0
+0.00,9.60,9.77,0.00,1.00,9.60,14.40,0
+4.80,14.40,9.83,0.00,1.00,14.40,19.20,0
+4.80,19.20,9.90,0.00,1.00,19.20,24.00,0
+4.80,24.00,9.96,0.00,1.00,24.00,28.80,0
+4.80,28.80,10.02,0.00,1.00,28.80,33.60,0
+4.80,33.60,10.09,0.00,1.00,33.60,38.40,0
+9.60,38.40,10.15,0.00,1.00,38.40,43.20,0
+9.60,43.20,10.22,0.00,1.00,43.20,48.00,0
+9.60,48.00,10.28,0.00,1.00,48.00,52.80,0
+14.40,52.80,10.35,0.00,1.00,52.80,57.60,0
+14.40,57.60,10.41,0.00,1.00,57.60,62.40,0
+19.20,62.40,10.47,0.00,1.00,62.40,67.20,0
+24.00,67.20,10.54,0.00,1.00,67.20,72.00,0
+28.80,72.00,10.60,0.00,1.00,72.00,72.00,0
+33.60,72.00,10.67,0.00,1.00,76.80,76.80,0
+48.00,76.80,10.73,0.00,1.00,81.60,81.60,0
+67.20,81.60,10.80,0.00,1.00,86.40,81.60,0
+96.00,81.60,10.86,0.00,1.00,91.20,81.60,0
+120.00,76.80,10.92,0.00,1.00,96.00,76.80,0
+139.20,76.80,10.99,0.00,1.00,100.80,72.00,0
+148.80,72.00,11.05,0.00,1.00,105.60,67.20,0
+153.60,67.20,11.12,0.00,1.00,110.40,62.40,0
+158.40,62.40,11.18,0.00,1.00,115.20,57.60,0
+163.20,57.60,11.24,0.00,1.00,120.00,52.80,0
+168.00,52.80,11.31,0.00,1.00,124.80,48.00,0
+168.00,48.00,11.37,0.00,1.00,129.60,43.20,0
+168.00,43.20,11.44,0.00,1.00,134.40,38.40,0
+172.80,38.40,11.50,0.00,1.00,139.20,33.60,0
+172.80,33.60,11.57,0.00,1.00,144.00,28.80,0
+172.80,28.80,11.63,0.00,1.00,148.80,24.00,0
+177.60,24.00,11.69,0.00,1.00,153.60,19.20,0
+177.60,19.20,11.76,0.00,1.00,158.40,14.40,0
+177.60,14.40,11.82,0.00,1.00,163.20,9.60,0
+177.60,9.60,11.89,0.00,1.00,168.00,4.80,0
+177.60,4.80,11.95,0.00,1.00,172.80,0.00,0
+177.60,0.00,12.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,12.08,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,12.14,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,12.21,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,12.27,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,12.34,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,12.40,0.00,1.00,-153.60,-28.80,0
+-172.80,-28.80,12.47,0.00,1.00,-148.80,-33.60,0
+-172.80,-33.60,12.53,0.00,1.00,-144.00,-38.40,0
+-172.80,-38.40,12.59,0.00,1.00,-139.20,-43.20,0
+-168.00,-43.20,12.66,0.00,1.00,-134.40,-48.00,0
+-168.00,-48.00,12.72,0.00,1.00,-129.60,-52.80,0
+-168.00,-52.80,12.79,0.00,1.00,-124.80,-57.60,0
+-163.20,-57.60,12.85,0.00,1.00,-120.00,-62.40,0
+-158.40,-62.40,12.92,0.00,1.00,-115.20,-67.20,0
+-153.60,-67.20,12.98,0.00,1.00,-110.40,-72.00,0
+-148.80,-72.00,13.04,0.00,1.00,-105.60,-76.80,0
+-139.20,-76.80,13.11,0.00,1.00,-100.80,-81.60,0
+-120.00,-76.80,13.17,0.00,1.00,-96.00,-81.60,0
+-96.00,-81.60,13.24,0.00,1.00,-91.20,-81.60,0
+-67.20,-81.60,13.30,0.00,1.00,-86.40,-76.80,0
+-48.00,-76.80,13.37,0.00,1.00,-81.60,-72.00,0
+-33.60,-72.00,13.43,0.00,1.00,-76.80,-72.00,0
+-28.80,-72.00,13.49,0.00,1.00,-72.00,-67.20,0
+-24.00,-67.20,13.56,0.00,1.00,-67.20,-62.40,0
+-19.20,-62.40,13.62,0.00,1.00,-62.40,-57.60,0
+-14.40,-57.60,13.69,0.00,1.00,-57.60,-52.80,0
+-14.40,-52.80,13.75,0.00,1.00,-52.80,-48.00,0
+-9.60,-48.00,13.82,0.00,1.00,-48.00,-43.20,0
+-9.60,-43.20,13.88,0.00,1.00,-43.20,-38.40,0
+-9.60,-38.40,13.94,0.00,1.00,-38.40,-33.60,0
+-4.80,-33.60,14.01,0.00,1.00,-33.60,-28.80,0
+-4.80,-28.80,14.07,0.00,1.00,-28.80,-24.00,0
+-4.80,-24.00,14.14,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,14.20,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,14.27,0.00,1.00,-14.40,-9.60,0
+-0.00,-9.60,14.33,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,14.39,0.00,1.00,-4.80,0.00,0
+0.00,0.00,14.46,0.00,1.00,0.00,4.80,0
+0.00,4.80,14.52,0.00,1.00,4.80,9.60,0
+4.80,9.60,14.59,0.00,1.00,9.60,14.40,0
+4.80,14.40,14.65,0.00,1.00,14.40,19.20,0
+4.80,19.20,14.71,0.00,1.00,19.20,24.00,0
+4.80,24.00,14.78,0.00,1.00,24.00,28.80,0
+9.60,28.80,14.84,0.00,1.00,28.80,33.60,0
+9.60,33.60,14.91,0.00,1.00,33.60,38.40,0
+9.60,38.40,14.97,0.00,1.00,38.40,43.20,0
+14.40,43.20,15.04,0.00,1.00,43.20,48.00,0
+14.40,48.00,15.10,0.00,1.00,48.00,52.80,0
+19.20,52.80,15.16,0.00,1.00,52.80,57.60,0
+19.20,52.80,15.23,0.00,1.00,57.60,57.60,0
+24.00,57.60,15.29,0.00,1.00,62.40,62.40,0
+28.80,62.40,15.36,0.00,1.00,67.20,67.20,0
+38.40,67.20,15.42,0.00,1.00,72.00,72.00,0
+48.00,72.00,15.49,0.00,1.00,76.80,72.00,0
+57.60,72.00,15.55,0.00,1.00,81.60,76.80,0
+76.80,76.80,15.61,0.00,1.00,86.40,76.80,0
+96.00,76.80,15.68,0.00,1.00,91.20,76.80,0
+115.20,76.80,15.74,0.00,1.00,96.00,72.00,0
+129.60,72.00,15.81,0.00,1.00,100.80,72.00,0
+139.20,67.20,15.87,0.00,1.00,105.60,67.20,0
+144.00,67.20,15.94,0.00,1.00,110.40,62.40,0
+153.60,62.40,16.00,0.00,1.00,115.20,57.60,0
+158.40,57.60,16.00,0.00,1.00,120.00,52.80,0
+158.40,52.80,15.94,0.00,1.00,124.80,48.00,0
+163.20,48.00,15.87,0.00,1.00,129.60,43.20,0
+168.00,43.20,15.81,0.00,1.00,134.40,38.40,0
+168.00,38.40,15.74,0.00,1.00,139.20,33.60,0
+168.00,33.60,15.68,0.00,1.00,144.00,28.80,0
+172.80,28.80,15.61,0.00,1.00,148.80,24.00,0
+172.80,24.00,15.55,0.00,1.00,153.60,19.20,0
+172.80,19.20,15.49,0.00,1.00,158.40,14.40,0
+177.60,14.40,15.42,0.00,1.00,163.20,9.60,0
+177.60,9.60,15.36,0.00,1.00,168.00,4.80,0
+177.60,4.80,15.29,0.00,1.00,172.80,0.00,0
+177.60,0.00,15.23,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,15.16,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,15.10,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,15.04,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,14.97,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,14.91,0.00,1.00,-158.40,-24.00,0
+-172.80,-24.00,14.84,0.00,1.00,-153.60,-28.80,0
+-172.80,-28.80,14.78,0.00,1.00,-148.80,-33.60,0
+-168.00,-33.60,14.71,0.00,1.00,-144.00,-38.40,0
+-168.00,-38.40,14.65,0.00,1.00,-139.20,-43.20,0
+-168.00,-43.20,14.59,0.00,1.00,-134.40,-48.00,0
+-163.20,-48.00,14.52,0.00,1.00,-129.60,-52.80,0
+-158.40,-52.80,14.46,0.00,1.00,-124.80,-57.60,0
+-158.40,-57.60,14.39,0.00,1.00,-120.00,-62.40,0
+-153.60,-62.40,14.33,0.00,1.00,-115.20,-67.20,0
+-144.00,-67.20,14.27,0.00,1.00,-110.40,-72.00,0
+-139.20,-67.20,14.20,0.00,1.00,-105.60,-72.00,0
+-129.60,-72.00,14.14,0.00,1.00,-100.80,-76.80,0
+-115.20,-76.80,14.07,0.00,1.00,-96.00,-76.80,0
+-96.00,-76.80,14.01,0.00,1.00,-91.20,-76.80,0
+-76.80,-76.80,13.94,0.00,1.00,-86.40,-72.00,0
+-57.60,-72.00,13.88,0.00,1.00,-81.60,-72.00,0
+-48.00,-72.00,13.82,0.00,1.00,-76.80,-67.20,0
+-38.40,-67.20,13.75,0.00,1.00,-72.00,-62.40,0
+-28.80,-62.40,13.69,0.00,1.00,-67.20,-57.60,0
+-24.00,-57.60,13.62,0.00,1.00,-62.40,-57.60,0
+-19.20,-52.80,13.56,0.00,1.00,-57.60,-52.80,0
+-19.20,-52.80,13.49,0.00,1.00,-52.80,-48.00,0
+-14.40,-48.00,13.43,0.00,1.00,-48.00,-43.20,0
+-14.40,-43.20,13.37,0.00,1.00,-43.20,-38.40,0
+-9.60,-38.40,13.30,0.00,1.00,-38.40,-33.60,0
+-9.60,-33.60,13.24,0.00,1.00,-33.60,-28.80,0
+-9.60,-28.80,13.17,0.00,1.00,-28.80,-24.00,0
+-4.80,-24.00,13.11,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,13.04,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,12.98,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,12.92,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,12.85,0.00,1.00,-4.80,0.00,0
+0.00,0.00,12.79,0.00,1.00,0.00,4.80,0
+0.00,4.80,12.72,0.00,1.00,4.80,9.60,0
+4.80,9.60,12.66,0.00,1.00,9.60,14.40,0
+4.80,14.40,12.59,0.00,1.00,14.40,19.20,0
+4.80,19.20,12.53,0.00,1.00,19.20,24.00,0
+9.60,24.00,12.47,0.00,1.00,24.00,28.80,0
+9.60,28.80,12.40,0.00,1.00,28.80,33.60,0
+14.40,33.60,12.34,0.00,1.00,33.60,38.40,0
+14.40,33.60,12.27,0.00,1.00,38.40,38.40,0
+19.20,38.40,12.21,0.00,1.00,43.20,43.20,0
+19.20,43.20,12.14,0.00,1.00,48.00,48.00,0
+24.00,48.00,12.08,0.00,1.00,52.80,52.80,0
+28.80,52.80,12.02,0.00,1.00,57.60,57.60,0
+33.60,57.60,11.95,0.00,1.00,62.40,62.40,0
+38.40,62.40,11.89,0.00,1.00,67.20,62.40,0
+43.20,62.40,11.82,0.00,1.00,72.00,67.20,0
+52.80,67.20,11.76,0.00,1.00,76.80,72.00,0
+67.20,67.20,11.69,0.00,1.00,81.60,72.00,0
+76.80,72.00,11.63,0.00,1.00,86.40,72.00,0
+96.00,72.00,11.57,0.00,1.00,91.20,72.00,0
+105.60,72.00,11.50,0.00,1.00,96.00,67.20,0
+120.00,67.20,11.44,0.00,1.00,100.80,67.20,0
+129.60,67.20,11.37,0.00,1.00,105.60,62.40,0
+139.20,62.40,11.31,0.00,1.00,110.40,57.60,0
+144.00,57.60,11.24,0.00,1.00,115.20,57.60,0
+148.80,52.80,11.18,0.00,1.00,120.00,52.80,0
+153.60,52.80,11.12,0.00,1.00,124.80,48.00,0
+158.40,48.00,11.05,0.00,1.00,129.60,43.20,0
+163.20,43.20,10.99,0.00,1.00,134.40,38.40,0
+163.20,38.40,10.92,0.00,1.00,139.20,33.60,0
+168.00,33.60,10.86,0.00,1.00,144.00,28.80,0
+168.00,28.80,10.80,0.00,1.00,148.80,24.00,0
+172.80,24.00,10.73,0.00,1.00,153.60,19.20,0
+172.80,19.20,10.67,0.00,1.00,158.40,14.40,0
+172.80,14.40,10.60,0.00,1.00,163.20,9.60,0
+177.60,9.60,10.54,0.00,1.00,168.00,4.80,0
+177.60,4.80,10.47,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.35,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,10.28,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,10.22,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,10.15,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,10.09,0.00,1.00,-158.40,-24.00,0
+-172.80,-24.00,10.02,0.00,1.00,-153.60,-28.80,0
+-168.00,-28.80,9.96,0.00,1.00,-148.80,-33.60,0
+-168.00,-33.60,9.90,0.00,1.00,-144.00,-38.40,0
+-163.20,-38.40,9.83,0.00,1.00,-139.20,-43.20,0
+-163.20,-43.20,9.77,0.00,1.00,-134.40,-48.00,0
+-158.40,-48.00,9.70,0.00,1.00,-129.60,-52.80,0
+-153.60,-52.80,9.64,0.00,1.00,-124.80,-57.60,0
+-148.80,-52.80,9.57,0.00,1.00,-120.00,-57.60,0
+-144.00,-57.60,9.51,0.00,1.00,-115.20,-62.40,0
+-139.20,-62.40,9.45,0.00,1.00,-110.40,-67.20,0
+-129.60,-67.20,9.38,0.00,1.00,-105.60,-67.20,0
+-120.00,-67.20,9.32,0.00,1.00,-100.80,-72.00,0
+-105.60,-72.00,9.25,0.00,1.00,-96.00,-72.00,0
+-96.00,-72.00,9.19,0.00,1.00,-91.20,-72.00,0
+-76.80,-72.00,9.12,0.00,1.00,-86.40,-72.00,0
+-67.20,-67.20,9.06,0.00,1.00,-81.60,-67.20,0
+-52.80,-67.20,9.00,0.00,1.00,-76.80,-62.40,0
+-43.20,-62.40,8.93,0.00,1.00,-72.00,-62.40,0
+-38.40,-62.40,8.87,0.00,1.00,-67.20,-57.60,0
+-33.60,-57.60,8.80,0.00,1.00,-62.40,-52.80,0
+-28.80,-52.80,8.74,0.00,1.00,-57.60,-48.00,0
+-24.00,-48.00,8.67,0.00,1.00,-52.80,-43.20,0
+-19.20,-43.20,8.61,0.00,1.00,-48.00,-38.40,0
+-19.20,-38.40,8.55,0.00,1.00,-43.20,-38.40,0
+-14.40,-33.60,8.48,0.00,1.00,-38.40,-33.60,0
+-14.40,-33.60,8.42,0.00,1.00,-33.60,-28.80,0
+-9.60,-28.80,8.35,0.00,1.00,-28.80,-24.00,0
+-9.60,-24.00,8.29,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,8.22,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,8.16,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,8.10,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,8.03,0.00,1.00,-4.80,0.00,0
+0.00,0.00,7.97,0.00,1.00,0.00,4.80,0
+0.00,4.80,7.90,0.00,1.00,4.80,9.60,0
+4.80,9.60,7.84,0.00,1.00,9.60,14.40,0
+4.80,14.40,7.78,0.00,1.00,14.40,19.20,0
+9.60,19.20,7.71,0.00,1.00,19.20,24.00,0
+9.60,24.00,7.65,0.00,1.00,24.00,24.00,0
+14.40,24.00,7.58,0.00,1.00,28.80,28.80,0
+14.40,28.80,7.52,0.00,1.00,33.60,33.60,0
+19.20,33.60,7.45,0.00,1.00,33.60,38.40,0
+19.20,38.40,7.39,0.00,1.00,38.40,43.20,0
+24.00,43.20,7.33,0.00,1.00,43.20,48.00,0
+28.80,48.00,7.26,0.00,1.00,48.00,52.80,0
+33.60,52.80,7.20,0.00,1.00,57.60,52.80,0
+38.40,52.80,7.13,0.00,1.00,62.40,57.60,0
+43.20,57.60,7.07,0.00,1.00,67.20,62.40,0
+52.80,62.40,7.00,0.00,1.00,72.00,62.40,0
+62.40,62.40,6.94,0.00,1.00,76.80,67.20,0
+72.00,62.40,6.88,0.00,1.00,81.60,67.20,0
+81.60,67.20,6.81,0.00,1.00,86.40,67.20,0
+91.20,67.20,6.75,0.00,1.00,91.20,67.20,0
+105.60,67.20,6.68,0.00,1.00,96.00,67.20,0
+115.20,62.40,6.62,0.00,1.00,100.80,62.40,0
+124.80,62.40,6.55,0.00,1.00,105.60,57.60,0
+134.40,57.60,6.49,0.00,1.00,110.40,57.60,0
+139.20,57.60,6.43,0.00,1.00,115.20,52.80,0
+144.00,52.80,6.36,0.00,1.00,120.00,48.00,0
+148.80,48.00,6.30,0.00,1.00,129.60,43.20,0
+153.60,43.20,6.23,0.00,1.00,134.40,43.20,0
+158.40,38.40,6.17,0.00,1.00,139.20,38.40,0
+158.40,38.40,6.10,0.00,1.00,144.00,33.60,0
+163.20,33.60,6.04,0.00,1.00,148.80,28.80,0
+168.00,28.80,5.98,0.00,1.00,148.80,24.00,0
+168.00,24.00,5.91,0.00,1.00,153.60,19.20,0
+172.80,19.20,5.85,0.00,1.00,158.40,14.40,0
+172.80,14.40,5.78,0.00,1.00,163.20,9.60,0
+172.80,9.60,5.72,0.00,1.00,168.00,4.80,0
+177.60,4.80,5.65,0.00,1.00,172.80,0.00,0
+177.60,0.00,5.59,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.53,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,5.46,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,5.40,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,5.33,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,5.27,0.00,1.00,-158.40,-24.00,0
+-168.00,-24.00,5.20,0.00,1.00,-153.60,-28.80,0
+-168.00,-28.80,5.14,0.00,1.00,-148.80,-33.60,0
+-163.20,-33.60,5.08,0.00,1.00,-148.80,-38.40,0
+-158.40,-38.40,5.01,0.00,1.00,-144.00,-43.20,0
+-158.40,-38.40,4.95,0.00,1.00,-139.20,-43.20,0
+-153.60,-43.20,4.88,0.00,1.00,-134.40,-48.00,0
+-148.80,-48.00,4.82,0.00,1.00,-129.60,-52.80,0
+-144.00,-52.80,4.76,0.00,1.00,-120.00,-57.60,0
+-139.20,-57.60,4.69,0.00,1.00,-115.20,-57.60,0
+-134.40,-57.60,4.63,0.00,1.00,-110.40,-62.40,0
+-124.80,-62.40,4.56,0.00,1.00,-105.60,-67.20,0
+-115.20,-62.40,4.50,0.00,1.00,-100.80,-67.20,0
+-105.60,-67.20,4.43,0.00,1.00,-96.00,-67.20,0
+-91.20,-67.20,4.37,0.00,1.00,-91.20,-67.20,0
+-81.60,-67.20,4.31,0.00,1.00,-86.40,-67.20,0
+-72.00,-62.40,4.24,0.00,1.00,-81.60,-62.40,0
+-62.40,-62.40,4.18,0.00,1.00,-76.80,-62.40,0
+-52.80,-62.40,4.11,0.00,1.00,-72.00,-57.60,0
+-43.20,-57.60,4.05,0.00,1.00,-67.20,-52.80,0
+-38.40,-52.80,3.98,0.00,1.00,-62.40,-52.80,0
+-33.60,-52.80,3.92,0.00,1.00,-57.60,-48.00,0
+-28.80,-48.00,3.86,0.00,1.00,-48.00,-43.20,0
+-24.00,-43.20,3.79,0.00,1.00,-43.20,-38.40,0
+-19.20,-38.40,3.73,0.00,1.00,-38.40,-33.60,0
+-19.20,-33.60,3.66,0.00,1.00,-33.60,-28.80,0
+-14.40,-28.80,3.60,0.00,1.00,-33.60,-24.00,0
+-14.40,-24.00,3.53,0.00,1.00,-28.80,-24.00,0
+-9.60,-24.00,3.47,0.00,1.00,-24.00,-19.20,0
+-9.60,-19.20,3.41,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,3.34,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,3.28,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,3.21,0.00,1.00,-4.80,0.00,0
+0.00,0.00,3.15,0.00,1.00,0.00,4.80,0
+0.00,4.80,3.08,0.00,1.00,4.80,9.60,0
+4.80,9.60,3.02,0.00,1.00,9.60,14.40,0
+4.80,14.40,2.96,0.00,1.00,14.40,19.20,0
+9.60,14.40,2.89,0.00,1.00,19.20,19.20,0
+14.40,19.20,2.83,0.00,1.00,19.20,24.00,0
+14.40,24.00,2.76,0.00,1.00,24.00,28.80,0
+19.20,28.80,2.70,0.00,1.00,28.80,33.60,0
+19.20,33.60,2.63,0.00,1.00,33.60,38.40,0
+24.00,38.40,2.57,0.00,1.00,38.40,43.20,0
+28.80,38.40,2.51,0.00,1.00,43.20,43.20,0
+33.60,43.20,2.44,0.00,1.00,48.00,48.00,0
+38.40,48.00,2.38,0.00,1.00,52.80,52.80,0
+43.20,52.80,2.31,0.00,1.00,57.60,52.80,0
+48.00,52.80,2.25,0.00,1.00,62.40,57.60,0
+57.60,57.60,2.18,0.00,1.00,72.00,57.60,0
+62.40,57.60,2.12,0.00,1.00,76.80,62.40,0
+72.00,62.40,2.06,0.00,1.00,81.60,62.40,0
+81.60,62.40,1.99,0.00,1.00,86.40,62.40,0
+91.20,62.40,1.93,0.00,1.00,91.20,62.40,0
+100.80,62.40,1.86,0.00,1.00,96.00,62.40,0
+110.40,57.60,1.80,0.00,1.00,100.80,57.60,0
+120.00,57.60,1.73,0.00,1.00,105.60,57.60,0
+129.60,57.60,1.67,0.00,1.00,115.20,52.80,0
+134.40,52.80,1.61,0.00,1.00,120.00,48.00,0
+139.20,48.00,1.54,0.00,1.00,124.80,48.00,0
+144.00,48.00,1.48,0.00,1.00,129.60,43.20,0
+148.80,43.20,1.41,0.00,1.00,134.40,38.40,0
+153.60,38.40,1.35,0.00,1.00,139.20,33.60,0
+158.40,33.60,1.29,0.00,1.00,144.00,33.60,0
+158.40,28.80,1.22,0.00,1.00,148.80,28.80,0
+163.20,28.80,1.16,0.00,1.00,153.60,24.00,0
+168.00,24.00,1.09,0.00,1.00,158.40,19.20,0
+168.00,19.20,1.03,0.00,1.00,163.20,14.40,0
+172.80,14.40,0.96,0.00,1.00,163.20,9.60,0
+172.80,9.60,0.90,0.00,1.00,168.00,4.80,0
+177.60,4.80,0.84,0.00,1.00,172.80,0.00,0
+177.60,0.00,0.77,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,0.71,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,0.64,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,0.58,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,0.51,0.00,1.00,-163.20,-19.20,0
+-168.00,-19.20,0.45,0.00,1.00,-163.20,-24.00,0
+-168.00,-24.00,0.39,0.00,1.00,-158.40,-28.80,0
+-163.20,-28.80,0.32,0.00,1.00,-153.60,-33.60,0
+-158.40,-28.80,0.26,0.00,1.00,-148.80,-33.60,0
+-158.40,-33.60,0.19,0.00,1.00,-144.00,-38.40,0
+-153.60,-38.40,0.13,0.00,1.00,-139.20,-43.20,0
+-148.80,-43.20,0.06,0.00,1.00,-134.40,-48.00,0
+-144.00,-48.00,0.00,0.00,1.00,-129.60,-48.00,0
+-139.20,-48.00,0.00,0.00,1.00,-124.80,-52.80,0
+-134.40,-52.80,0.16,0.00,1.00,-120.00,-57.60,0
+-129.60,-57.60,0.32,0.00,1.00,-115.20,-57.60,0
+-120.00,-57.60,0.48,0.00,1.00,-105.60,-62.40,0
+-110.40,-57.60,0.65,0.00,1.00,-100.80,-62.40,0
+-100.80,-62.40,0.81,0.00,1.00,-96.00,-62.40,0
+-91.20,-62.40,0.97,0.00,1.00,-91.20,-62.40,0
+-81.60,-62.40,1.13,0.00,1.00,-86.40,-62.40,0
+-72.00,-62.40,1.29,0.00,1.00,-81.60,-57.60,0
+-62.40,-57.60,1.45,0.00,1.00,-76.80,-57.60,0
+-57.60,-57.60,1.62,0.00,1.00,-72.00,-52.80,0
+-48.00,-52.80,1.78,0.00,1.00,-62.40,-52.80,0
+-43.20,-52.80,1.94,0.00,1.00,-57.60,-48.00,0
+-38.40,-48.00,2.10,0.00,1.00,-52.80,-43.20,0
+-33.60,-43.20,2.26,0.00,1.00,-48.00,-43.20,0
+-28.80,-38.40,2.42,0.00,1.00,-43.20,-38.40,0
+-24.00,-38.40,2.59,0.00,1.00,-38.40,-33.60,0
+-19.20,-33.60,2.75,0.00,1.00,-33.60,-28.80,0
+-19.20,-28.80,2.91,0.00,1.00,-28.80,-24.00,0
+-14.40,-24.00,3.07,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,3.23,0.00,1.00,-19.20,-19.20,0
+-9.60,-14.40,3.39,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,3.56,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,3.72,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,3.88,0.00,1.00,-4.80,0.00,0
+0.00,0.00,4.04,0.00,1.00,0.00,4.80,0
+4.80,4.80,4.20,0.00,1.00,4.80,9.60,0
+4.80,9.60,4.36,0.00,1.00,9.60,14.40,0
+9.60,9.60,4.53,0.00,1.00,14.40,14.40,0
+9.60,14.40,4.69,0.00,1.00,14.40,19.20,0
+14.40,19.20,4.85,0.00,1.00,19.20,24.00,0
+19.20,24.00,5.01,0.00,1.00,24.00,28.80,0
+19.20,28.80,5.17,0.00,1.00,28.80,33.60,0
+24.00,28.80,5.33,0.00,1.00,33.60,33.60,0
+28.80,33.60,5.49,0.00,1.00,38.40,38.40,0
+33.60,38.40,5.66,0.00,1.00,43.20,43.20,0
+38.40,43.20,5.82,0.00,1.00,48.00,43.20,0
+43.20,43.20,5.98,0.00,1.00,52.80,48.00,0
+48.00,48.00,6.14,0.00,1.00,57.60,52.80,0
+52.80,48.00,6.30,0.00,1.00,62.40,52.80,0
+57.60,52.80,6.46,0.00,1.00,67.20,57.60,0
+67.20,52.80,6.63,0.00,1.00,72.00,57.60,0
+76.80,57.60,6.79,0.00,1.00,81.60,57.60,0
+81.60,57.60,6.95,0.00,1.00,86.40,57.60,0
+91.20,57.60,7.11,0.00,1.00,91.20,57.60,0
+100.80,57.60,7.27,0.00,1.00,96.00,57.60,0
+110.40,52.80,7.43,0.00,1.00,100.80,52.80,0
+115.20,52.80,7.60,0.00,1.00,110.40,52.80,0
+124.80,52.80,7.76,0.00,1.00,115.20,48.00,0
+129.60,48.00,7.92,0.00,1.00,120.00,48.00,0
+134.40,48.00,8.08,0.00,1.00,124.80,43.20,0
+139.20,43.20,8.24,0.00,1.00,129.60,38.40,0
+144.00,38.40,8.40,0.00,1.00,134.40,38.40,0
+148.80,38.40,8.57,0.00,1.00,139.20,33.60,0
+153.60,33.60,8.73,0.00,1.00,144.00,28.80,0
+158.40,28.80,8.89,0.00,1.00,148.80,24.00,0
+163.20,24.00,9.05,0.00,1.00,153.60,24.00,0
+163.20,24.00,9.21,0.00,1.00,158.40,19.20,0
+168.00,19.20,9.37,0.00,1.00,163.20,14.40,0
+172.80,14.40,9.54,0.00,1.00,168.00,9.60,0
+172.80,9.60,9.70,0.00,1.00,168.00,4.80,0
+177.60,4.80,9.86,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.18,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,10.34,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,10.51,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,10.67,0.00,1.00,-168.00,-19.20,0
+-168.00,-19.20,10.83,0.00,1.00,-163.20,-24.00,0
+-163.20,-24.00,10.99,0.00,1.00,-158.40,-24.00,0
+-163.20,-24.00,11.15,0.00,1.00,-153.60,-28.80,0
+-158.40,-28.80,11.31,0.00,1.00,-148.80,-33.60,0
+-153.60,-33.60,11.47,0.00,1.00,-144.00,-38.40,0
+-148.80,-38.40,11.64,0.00,1.00,-139.20,-38.40,0
+-144.00,-38.40,11.80,0.00,1.00,-134.40,-43.20,0
+-139.20,-43.20,11.96,0.00,1.00,-129.60,-48.00,0
+-134.40,-48.00,12.12,0.00,1.00,-124.80,-48.00,0
+-129.60,-48.00,12.28,0.00,1.00,-120.00,-52.80,0
+-124.80,-52.80,12.44,0.00,1.00,-115.20,-52.80,0
+-115.20,-52.80,12.61,0.00,1.00,-110.40,-57.60,0
+-110.40,-52.80,12.77,0.00,1.00,-100.80,-57.60,0
+-100.80,-57.60,12.93,0.00,1.00,-96.00,-57.60,0
+-91.20,-57.60,13.09,0.00,1.00,-91.20,-57.60,0
+-81.60,-57.60,13.25,0.00,1.00,-86.40,-57.60,0
+-76.80,-57.60,13.41,0.00,1.00,-81.60,-57.60,0
+-67.20,-52.80,13.58,0.00,1.00,-72.00,-52.80,0
+-57.60,-52.80,13.74,0.00,1.00,-67.20,-52.80,0
+-52.80,-48.00,13.90,0.00,1.00,-62.40,-48.00,0
+-48.00,-48.00,14.06,0.00,1.00,-57.60,-43.20,0
+-43.20,-43.20,14.22,0.00,1.00,-52.80,-43.20,0
+-38.40,-43.20,14.38,0.00,1.00,-48.00,-38.40,0
+-33.60,-38.40,14.55,0.00,1.00,-43.20,-33.60,0
+-28.80,-33.60,14.71,0.00,1.00,-38.40,-33.60,0
+-24.00,-28.80,14.87,0.00,1.00,-33.60,-28.80,0
+-19.20,-28.80,15.03,0.00,1.00,-28.80,-24.00,0
+-19.20,-24.00,15.19,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,15.35,0.00,1.00,-19.20,-14.40,0
+-9.60,-14.40,15.52,0.00,1.00,-14.40,-14.40,0
+-9.60,-9.60,15.68,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,15.84,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,16.00,0.00,1.00,-4.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,0.00,4.80,0
+4.80,4.80,15.84,0.00,1.00,4.80,9.60,0
+4.80,9.60,15.68,0.00,1.00,9.60,9.60,0
+9.60,9.60,15.52,0.00,1.00,9.60,14.40,0
+14.40,14.40,15.35,0.00,1.00,14.40,19.20,0
+14.40,19.20,15.19,0.00,1.00,19.20,24.00,0
+19.20,24.00,15.03,0.00,1.00,24.00,24.00,0
+24.00,24.00,14.87,0.00,1.00,28.80,28.80,0
+24.00,28.80,14.71,0.00,1.00,33.60,33.60,0
+28.80,33.60,14.55,0.00,1.00,38.40,38.40,0
+33.60,33.60,14.38,0.00,1.00,43.20,38.40,0
+38.40,38.40,14.22,0.00,1.00,48.00,43.20,0
+43.20,43.20,14.06,0.00,1.00,52.80,43.20,0
+48.00,43.20,13.90,0.00,1.00,57.60,48.00,0
+57.60,48.00,13.74,0.00,1.00,62.40,48.00,0
+62.40,48.00,13.58,0.00,1.00,67.20,52.80,0
+67.20,48.00,13.41,0.00,1.00,72.00,52.80,0
+76.80,52.80,13.25,0.00,1.00,81.60,52.80,0
+86.40,52.80,13.09,0.00,1.00,86.40,52.80,0
+91.20,52.80,12.93,0.00,1.00,91.20,52.80,0
+100.80,52.80,12.77,0.00,1.00,96.00,52.80,0
+105.60,48.00,12.61,0.00,1.00,105.60,48.00,0
+115.20,48.00,12.44,0.00,1.00,110.40,48.00,0
+120.00,48.00,12.28,0.00,1.00,115.20,48.00,0
+124.80,43.20,12.12,0.00,1.00,120.00,43.20,0
+134.40,43.20,11.96,0.00,1.00,124.80,43.20,0
+139.20,38.40,11.80,0.00,1.00,129.60,38.40,0
+144.00,38.40,11.64,0.00,1.00,134.40,33.60,0
+148.80,33.60,11.47,0.00,1.00,139.20,33.60,0
+153.60,28.80,11.31,0.00,1.00,144.00,28.80,0
+153.60,28.80,11.15,0.00,1.00,148.80,24.00,0
+158.40,24.00,10.99,0.00,1.00,153.60,19.20,0
+163.20,19.20,10.83,0.00,1.00,158.40,19.20,0
+168.00,14.40,10.67,0.00,1.00,163.20,14.40,0
+168.00,14.40,10.51,0.00,1.00,168.00,9.60,0
+172.80,9.60,10.34,0.00,1.00,172.80,4.80,0
+177.60,4.80,10.18,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,9.86,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,9.70,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,9.54,0.00,1.00,-172.80,-14.40,0
+-168.00,-14.40,9.37,0.00,1.00,-168.00,-19.20,0
+-168.00,-14.40,9.21,0.00,1.00,-163.20,-19.20,0
+-163.20,-19.20,9.05,0.00,1.00,-158.40,-24.00,0
+-158.40,-24.00,8.89,0.00,1.00,-153.60,-28.80,0
+-153.60,-28.80,8.73,0.00,1.00,-148.80,-33.60,0
+-153.60,-28.80,8.57,0.00,1.00,-144.00,-33.60,0
+-148.80,-33.60,8.40,0.00,1.00,-139.20,-38.40,0
+-144.00,-38.40,8.24,0.00,1.00,-134.40,-43.20,0
+-139.20,-38.40,8.08,0.00,1.00,-129.60,-43.20,0
+-134.40,-43.20,7.92,0.00,1.00,-124.80,-48.00,0
+-124.80,-43.20,7.76,0.00,1.00,-120.00,-48.00,0
+-120.00,-48.00,7.60,0.00,1.00,-115.20,-48.00,0
+-115.20,-48.00,7.43,0.00,1.00,-110.40,-52.80,0
+-105.60,-48.00,7.27,0.00,1.00,-105.60,-52.80,0
+-100.80,-52.80,7.11,0.00,1.00,-96.00,-52.80,0
+-91.20,-52.80,6.95,0.00,1.00,-91.20,-52.80,0
+-86.40,-52.80,6.79,0.00,1.00,-86.40,-52.80,0
+-76.80,-52.80,6.63,0.00,1.00,-81.60,-52.80,0
+-67.20,-48.00,6.46,0.00,1.00,-72.00,-48.00,0
+-62.40,-48.00,6.30,0.00,1.00,-67.20,-48.00,0
+-57.60,-48.00,6.14,0.00,1.00,-62.40,-43.20,0
+-48.00,-43.20,5.98,0.00,1.00,-57.60,-43.20,0
+-43.20,-43.20,5.82,0.00,1.00,-52.80,-38.40,0
+-38.40,-38.40,5.66,0.00,1.00,-48.00,-38.40,0
+-33.60,-33.60,5.49,0.00,1.00,-43.20,-33.60,0
+-28.80,-33.60,5.33,0.00,1.00,-38.40,-28.80,0
+-24.00,-28.80,5.17,0.00,1.00,-33.60,-24.00,0
+-24.00,-24.00,5.01,0.00,1.00,-28.80,-24.00,0
+-19.20,-24.00,4.85,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,4.69,0.00,1.00,-19.20,-14.40,0
+-14.40,-14.40,4.53,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,4.36,0.00,1.00,-9.60,-9.60,0
+-4.80,-9.60,4.20,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,4.04,0.00,1.00,-4.80,0.00,0
+0.00,0.00,3.88,0.00,1.00,0.00,4.80,0
+4.80,4.80,3.72,0.00,1.00,4.80,4.80,0
+4.80,4.80,3.56,0.00,1.00,4.80,9.60,0
+9.60,9.60,3.39,0.00,1.00,9.60,14.40,0
+14.40,14.40,3.23,0.00,1.00,14.40,19.20,0
+19.20,19.20,3.07,0.00,1.00,19.20,19.20,0
+19.20,19.20,2.91,0.00,1.00,24.00,24.00,0
+24.00,24.00,2.75,0.00,1.00,24.00,28.80,0
+28.80,28.80,2.59,0.00,1.00,28.80,28.80,0
+33.60,28.80,2.42,0.00,1.00,33.60,33.60,0
+38.40,33.60,2.26,0.00,1.00,38.40,38.40,0
+43.20,33.60,2.10,0.00,1.00,43.20,38.40,0
+48.00,38.40,1.94,0.00,1.00,48.00,43.20,0
+52.80,38.40,1.78,0.00,1.00,52.80,43.20,0
+57.60,43.20,1.62,0.00,1.00,62.40,43.20,0
+62.40,43.20,1.45,0.00,1.00,67.20,48.00,0
+72.00,43.20,1.29,0.00,1.00,72.00,48.00,0
+76.80,48.00,1.13,0.00,1.00,76.80,48.00,0
+86.40,48.00,0.97,0.00,1.00,86.40,48.00,0
+91.20,48.00,0.81,0.00,1.00,91.20,48.00,0
+100.80,48.00,0.65,0.00,1.00,96.00,48.00,0
+105.60,48.00,0.48,0.00,1.00,105.60,48.00,0
+110.40,43.20,0.32,0.00,1.00,110.40,43.20,0
+120.00,43.20,0.16,0.00,1.00,115.20,43.20,0
+124.80,43.20,0.00,0.00,1.00,124.80,38.40,0
+129.60,38.40,0.00,0.00,1.00,129.60,38.40,0
+134.40,38.40,0.04,0.00,1.00,134.40,33.60,0
+139.20,33.60,0.08,0.00,1.00,139.20,33.60,0
+144.00,33.60,0.12,0.00,1.00,144.00,28.80,0
+148.80,28.80,0.16,0.00,1.00,148.80,24.00,0
+153.60,24.00,0.20,0.00,1.00,153.60,24.00,0
+158.40,24.00,0.24,0.00,1.00,158.40,19.20,0
+163.20,19.20,0.28,0.00,1.00,158.40,14.40,0
+163.20,14.40,0.32,0.00,1.00,163.20,14.40,0
+168.00,14.40,0.36,0.00,1.00,168.00,9.60,0
+172.80,9.60,0.40,0.00,1.00,172.80,4.80,0
+172.80,4.80,0.44,0.00,1.00,172.80,0.00,0
+177.60,0.00,0.48,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,0.52,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,0.56,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,0.60,0.00,1.00,-172.80,-14.40,0
+-168.00,-14.40,0.64,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,0.68,0.00,1.00,-163.20,-19.20,0
+-163.20,-19.20,0.72,0.00,1.00,-158.40,-24.00,0
+-158.40,-24.00,0.76,0.00,1.00,-158.40,-24.00,0
+-153.60,-24.00,0.80,0.00,1.00,-153.60,-28.80,0
+-148.80,-28.80,0.84,0.00,1.00,-148.80,-33.60,0
+-144.00,-33.60,0.88,0.00,1.00,-144.00,-33.60,0
+-139.20,-33.60,0.92,0.00,1.00,-139.20,-38.40,0
+-134.40,-38.40,0.96,0.00,1.00,-134.40,-38.40,0
+-129.60,-38.40,1.00,0.00,1.00,-129.60,-43.20,0
+-124.80,-43.20,1.04,0.00,1.00,-124.80,-43.20,0
+-120.00,-43.20,1.08,0.00,1.00,-115.20,-48.00,0
+-110.40,-43.20,1.12,0.00,1.00,-110.40,-48.00,0
+-105.60,-48.00,1.16,0.00,1.00,-105.60,-48.00,0
+-100.80,-48.00,1.20,0.00,1.00,-96.00,-48.00,0
+-91.20,-48.00,1.24,0.00,1.00,-91.20,-48.00,0
+-86.40,-48.00,1.28,0.00,1.00,-86.40,-48.00,0
+-76.80,-48.00,1.32,0.00,1.00,-76.80,-48.00,0
+-72.00,-43.20,1.36,0.00,1.00,-72.00,-43.20,0
+-62.40,-43.20,1.40,0.00,1.00,-67.20,-43.20,0
+-57.60,-43.20,1.44,0.00,1.00,-62.40,-43.20,0
+-52.80,-38.40,1.48,0.00,1.00,-52.80,-38.40,0
+-48.00,-38.40,1.52,0.00,1.00,-48.00,-38.40,0
+-43.20,-33.60,1.56,0.00,1.00,-43.20,-33.60,0
+-38.40,-33.60,1.60,0.00,1.00,-38.40,-28.80,0
+-33.60,-28.80,1.64,0.00,1.00,-33.60,-28.80,0
+-28.80,-28.80,1.68,0.00,1.00,-28.80,-24.00,0
+-24.00,-24.00,1.72,0.00,1.00,-24.00,-19.20,0
+-19.20,-19.20,1.76,0.00,1.00,-24.00,-19.20,0
+-19.20,-19.20,1.80,0.00,1.00,-19.20,-14.40,0
+-14.40,-14.40,1.84,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,1.88,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,1.92,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,1.96,0.00,1.00,-4.80,0.00,0
+0.00,0.00,2.01,0.00,1.00,0.00,4.80,0
+4.80,4.80,2.05,0.00,1.00,4.80,4.80,0
+4.80,4.80,2.09,0.00,1.00,4.80,9.60,0
+9.60,9.60,2.13,0.00,1.00,9.60,14.40,0
+14.40,14.40,2.17,0.00,1.00,14.40,14.40,0
+19.20,14.40,2.21,0.00,1.00,14.40,19.20,0
+24.00,19.20,2.25,0.00,1.00,19.20,24.00,0
+24.00,24.00,2.29,0.00,1.00,24.00,24.00,0
+28.80,24.00,2.33,0.00,1.00,28.80,28.80,0
+33.60,28.80,2.37,0.00,1.00,33.60,28.80,0
+38.40,28.80,2.41,0.00,1.00,38.40,33.60,0
+43.20,33.60,2.45,0.00,1.00,43.20,33.60,0
+48.00,33.60,2.49,0.00,1.00,48.00,38.40,0
+52.80,38.40,2.53,0.00,1.00,52.80,38.40,0
+62.40,38.40,2.57,0.00,1.00,57.60,38.40,0
+67.20,38.40,2.61,0.00,1.00,62.40,43.20,0
+72.00,38.40,2.65,0.00,1.00,72.00,43.20,0
+76.80,43.20,2.69,0.00,1.00,76.80,43.20,0
+86.40,43.20,2.73,0.00,1.00,86.40,43.20,0
+91.20,43.20,2.77,0.00,1.00,91.20,43.20,0
+96.00,43.20,2.81,0.00,1.00,100.80,43.20,0
+105.60,43.20,2.85,0.00,1.00,105.60,43.20,0
+110.40,38.40,2.89,0.00,1.00,110.40,38.40,0
+115.20,38.40,2.93,0.00,1.00,120.00,38.40,0
+120.00,38.40,2.97,0.00,1.00,124.80,38.40,0
+129.60,33.60,3.01,0.00,1.00,129.60,33.60,0
+134.40,33.60,3.05,0.00,1.00,134.40,33.60,0
+139.20,28.80,3.09,0.00,1.00,139.20,28.80,0
+144.00,28.80,3.13,0.00,1.00,144.00,28.80,0
+148.80,24.00,3.17,0.00,1.00,148.80,24.00,0
+153.60,24.00,3.21,0.00,1.00,153.60,19.20,0
+153.60,19.20,3.25,0.00,1.00,158.40,19.20,0
+158.40,19.20,3.29,0.00,1.00,163.20,14.40,0
+163.20,14.40,3.33,0.00,1.00,163.20,9.60,0
+168.00,9.60,3.37,0.00,1.00,168.00,9.60,0
+172.80,9.60,3.41,0.00,1.00,172.80,4.80,0
+172.80,4.80,3.45,0.00,1.00,172.80,0.00,0
+177.60,0.00,3.49,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.53,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,3.57,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,3.61,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,3.65,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,3.69,0.00,1.00,-163.20,-19.20,0
+-158.40,-19.20,3.73,0.00,1.00,-163.20,-19.20,0
+-153.60,-19.20,3.77,0.00,1.00,-158.40,-24.00,0
+-153.60,-24.00,3.81,0.00,1.00,-153.60,-28.80,0
+-148.80,-24.00,3.85,0.00,1.00,-148.80,-28.80,0
+-144.00,-28.80,3.89,0.00,1.00,-144.00,-33.60,0
+-139.20,-28.80,3.93,0.00,1.00,-139.20,-33.60,0
+-134.40,-33.60,3.97,0.00,1.00,-134.40,-38.40,0
+-129.60,-33.60,4.01,0.00,1.00,-129.60,-38.40,0
+-120.00,-38.40,4.05,0.00,1.00,-124.80,-38.40,0
+-115.20,-38.40,4.09,0.00,1.00,-120.00,-43.20,0
+-110.40,-38.40,4.13,0.00,1.00,-110.40,-43.20,0
+-105.60,-43.20,4.17,0.00,1.00,-105.60,-43.20,0
+-96.00,-43.20,4.21,0.00,1.00,-100.80,-43.20,0
+-91.20,-43.20,4.25,0.00,1.00,-91.20,-43.20,0
+-86.40,-43.20,4.29,0.00,1.00,-86.40,-43.20,0
+-76.80,-43.20,4.33,0.00,1.00,-76.80,-43.20,0
+-72.00,-38.40,4.37,0.00,1.00,-72.00,-38.40,0
+-67.20,-38.40,4.41,0.00,1.00,-62.40,-38.40,0
+-62.40,-38.40,4.45,0.00,1.00,-57.60,-38.40,0
+-52.80,-38.40,4.49,0.00,1.00,-52.80,-33.60,0
+-48.00,-33.60,4.53,0.00,1.00,-48.00,-33.60,0
+-43.20,-33.60,4.57,0.00,1.00,-43.20,-28.80,0
+-38.40,-28.80,4.61,0.00,1.00,-38.40,-28.80,0
+-33.60,-28.80,4.65,0.00,1.00,-33.60,-24.00,0
+-28.80,-24.00,4.69,0.00,1.00,-28.80,-24.00,0
+-24.00,-24.00,4.73,0.00,1.00,-24.00,-19.20,0
+-24.00,-19.20,4.77,0.00,1.00,-19.20,-14.40,0
+-19.20,-14.40,4.81,0.00,1.00,-14.40,-14.40,0
+-14.40,-14.40,4.85,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,4.89,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,4.93,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,4.97,0.00,1.00,-4.80,0.00,0
+0.00,0.00,5.01,0.00,1.00,0.00,4.80,0
+4.80,4.80,5.05,0.00,1.00,4.80,4.80,0
+9.60,4.80,5.09,0.00,1.00,4.80,9.60,0
+9.60,9.60,5.13,0.00,1.00,9.60,9.60,0
+14.40,9.60,5.17,0.00,1.00,9.60,14.40,0
+19.20,14.40,5.21,0.00,1.00,14.40,19.20,0
+24.00,19.20,5.25,0.00,1.00,19.20,19.20,0
+28.80,19.20,5.29,0.00,1.00,24.00,24.00,0
+33.60,24.00,5.33,0.00,1.00,24.00,24.00,0
+38.40,24.00,5.37,0.00,1.00,28.80,28.80,0
+43.20,28.80,5.41,0.00,1.00,33.60,28.80,0
+48.00,28.80,5.45,0.00,1.00,38.40,33.60,0
+52.80,28.80,5.49,0.00,1.00,43.20,33.60,0
+57.60,33.60,5.53,0.00,1.00,48.00,33.60,0
+62.40,33.60,5.57,0.00,1.00,52.80,38.40,0
+67.20,33.60,5.61,0.00,1.00,62.40,38.40,0
+72.00,38.40,5.65,0.00,1.00,67.20,38.40,0
+81.60,38.40,5.69,0.00,1.00,76.80,38.40,0
+86.40,38.40,5.73,0.00,1.00,86.40,38.40,0
+91.20,38.40,5.77,0.00,1.00,91.20,38.40,0
+96.00,38.40,5.81,0.00,1.00,100.80,38.40,0
+105.60,38.40,5.85,0.00,1.00,105.60,38.40,0
+110.40,33.60,5.89,0.00,1.00,115.20,33.60,0
+115.20,33.60,5.93,0.00,1.00,120.00,33.60,0
+120.00,33.60,5.97,0.00,1.00,129.60,33.60,0
+124.80,33.60,6.02,0.00,1.00,134.40,28.80,0
+129.60,28.80,6.06,0.00,1.00,139.20,28.80,0
+134.40,28.80,6.10,0.00,1.00,144.00,24.00,0
+139.20,24.00,6.14,0.00,1.00,148.80,24.00,0
+144.00,24.00,6.18,0.00,1.00,153.60,19.20,0
+148.80,19.20,6.22,0.00,1.00,158.40,19.20,0
+153.60,19.20,6.26,0.00,1.00,158.40,14.40,0
+158.40,14.40,6.30,0.00,1.00,163.20,14.40,0
+163.20,14.40,6.34,0.00,1.00,168.00,9.60,0
+168.00,9.60,6.38,0.00,1.00,168.00,9.60,0
+168.00,9.60,6.42,0.00,1.00,172.80,4.80,0
+172.80,4.80,6.46,0.00,1.00,177.60,0.00,0
+177.60,0.00,6.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.54,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,6.58,0.00,1.00,-177.60,-9.60,0
+-168.00,-9.60,6.62,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,6.66,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,6.70,0.00,1.00,-168.00,-14.40,0
+-158.40,-14.40,6.74,0.00,1.00,-163.20,-19.20,0
+-153.60,-19.20,6.78,0.00,1.00,-158.40,-19.20,0
+-148.80,-19.20,6.82,0.00,1.00,-158.40,-24.00,0
+-144.00,-24.00,6.86,0.00,1.00,-153.60,-24.00,0
+-139.20,-24.00,6.90,0.00,1.00,-148.80,-28.80,0
+-134.40,-28.80,6.94,0.00,1.00,-144.00,-28.80,0
+-129.60,-28.80,6.98,0.00,1.00,-139.20,-33.60,0
+-124.80,-33.60,7.02,0.00,1.00,-134.40,-33.60,0
+-120.00,-33.60,7.06,0.00,1.00,-129.60,-33.60,0
+-115.20,-33.60,7.10,0.00,1.00,-120.00,-38.40,0
+-110.40,-33.60,7.14,0.00,1.00,-115.20,-38.40,0
+-105.60,-38.40,7.18,0.00,1.00,-105.60,-38.40,0
+-96.00,-38.40,7.22,0.00,1.00,-100.80,-38.40,0
+-91.20,-38.40,7.26,0.00,1.00,-91.20,-38.40,0
+-86.40,-38.40,7.30,0.00,1.00,-86.40,-38.40,0
+-81.60,-38.40,7.34,0.00,1.00,-76.80,-38.40,0
+-72.00,-38.40,7.38,0.00,1.00,-67.20,-38.40,0
+-67.20,-33.60,7.42,0.00,1.00,-62.40,-33.60,0
+-62.40,-33.60,7.46,0.00,1.00,-52.80,-33.60,0
+-57.60,-33.60,7.50,0.00,1.00,-48.00,-33.60,0
+-52.80,-28.80,7.54,0.00,1.00,-43.20,-28.80,0
+-48.00,-28.80,7.58,0.00,1.00,-38.40,-28.80,0
+-43.20,-28.80,7.62,0.00,1.00,-33.60,-24.00,0
+-38.40,-24.00,7.66,0.00,1.00,-28.80,-24.00,0
+-33.60,-24.00,7.70,0.00,1.00,-24.00,-19.20,0
+-28.80,-19.20,7.74,0.00,1.00,-24.00,-19.20,0
+-24.00,-19.20,7.78,0.00,1.00,-19.20,-14.40,0
+-19.20,-14.40,7.82,0.00,1.00,-14.40,-9.60,0
+-14.40,-9.60,7.86,0.00,1.00,-9.60,-9.60,0
+-9.60,-9.60,7.90,0.00,1.00,-9.60,-4.80,0
+-9.60,-4.80,7.94,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,7.98,0.00,1.00,-4.80,0.00,0
+0.00,0.00,8.02,0.00,1.00,0.00,4.80,0
+4.80,4.80,8.06,0.00,1.00,4.80,4.80,0
+9.60,4.80,8.10,0.00,1.00,4.80,9.60,0
+14.40,9.60,8.14,0.00,1.00,9.60,9.60,0
+14.40,9.60,8.18,0.00,1.00,9.60,14.40,0
+19.20,14.40,8.22,0.00,1.00,14.40,14.40,0
+24.00,14.40,8.26,0.00,1.00,14.40,19.20,0
+28.80,19.20,8.30,0.00,1.00,19.20,19.20,0
+33.60,19.20,8.34,0.00,1.00,24.00,24.00,0
+38.40,19.20,8.38,0.00,1.00,28.80,24.00,0
+43.20,24.00,8.42,0.00,1.00,28.80,24.00,0
+48.00,24.00,8.46,0.00,1.00,33.60,28.80,0
+52.80,28.80,8.50,0.00,1.00,38.40,28.80,0
+57.60,28.80,8.54,0.00,1.00,48.00,28.80,0
+62.40,28.80,8.58,0.00,1.00,52.80,33.60,0
+67.20,28.80,8.62,0.00,1.00,57.60,33.60,0
+76.80,33.60,8.66,0.00,1.00,67.20,33.60,0
+81.60,33.60,8.70,0.00,1.00,76.80,33.60,0
+86.40,33.60,8.74,0.00,1.00,81.60,33.60,0
+91.20,33.60,8.78,0.00,1.00,91.20,33.60,0
+96.00,33.60,8.82,0.00,1.00,100.80,33.60,0
+100.80,33.60,8.86,0.00,1.00,110.40,33.60,0
+110.40,28.80,8.90,0.00,1.00,115.20,33.60,0
+115.20,28.80,8.94,0.00,1.00,124.80,28.80,0
+120.00,28.80,8.98,0.00,1.00,129.60,28.80,0
+124.80,28.80,9.02,0.00,1.00,139.20,28.80,0
+129.60,24.00,9.06,0.00,1.00,144.00,24.00,0
+134.40,24.00,9.10,0.00,1.00,148.80,24.00,0
+139.20,24.00,9.14,0.00,1.00,153.60,19.20,0
+144.00,19.20,9.18,0.00,1.00,153.60,19.20,0
+148.80,19.20,9.22,0.00,1.00,158.40,14.40,0
+153.60,14.40,9.26,0.00,1.00,163.20,14.40,0
+158.40,14.40,9.30,0.00,1.00,163.20,9.60,0
+163.20,9.60,9.34,0.00,1.00,168.00,9.60,0
+168.00,9.60,9.38,0.00,1.00,172.80,4.80,0
+168.00,4.80,9.42,0.00,1.00,172.80,4.80,0
+172.80,4.80,9.46,0.00,1.00,177.60,0.00,0
+177.60,0.00,9.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,9.54,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,9.58,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,9.62,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,9.66,0.00,1.00,-172.80,-9.60,0
+-163.20,-9.60,9.70,0.00,1.00,-168.00,-14.40,0
+-158.40,-14.40,9.74,0.00,1.00,-163.20,-14.40,0
+-153.60,-14.40,9.78,0.00,1.00,-163.20,-19.20,0
+-148.80,-19.20,9.82,0.00,1.00,-158.40,-19.20,0
+-144.00,-19.20,9.86,0.00,1.00,-153.60,-24.00,0
+-139.20,-24.00,9.90,0.00,1.00,-153.60,-24.00,0
+-134.40,-24.00,9.94,0.00,1.00,-148.80,-28.80,0
+-129.60,-24.00,9.98,0.00,1.00,-144.00,-28.80,0
+-124.80,-28.80,10.03,0.00,1.00,-139.20,-28.80,0
+-120.00,-28.80,10.07,0.00,1.00,-129.60,-33.60,0
+-115.20,-28.80,10.11,0.00,1.00,-124.80,-33.60,0
+-110.40,-28.80,10.15,0.00,1.00,-115.20,-33.60,0
+-100.80,-33.60,10.19,0.00,1.00,-110.40,-33.60,0
+-96.00,-33.60,10.23,0.00,1.00,-100.80,-33.60,0
+-91.20,-33.60,10.27,0.00,1.00,-91.20,-33.60,0
+-86.40,-33.60,10.31,0.00,1.00,-81.60,-33.60,0
+-81.60,-33.60,10.35,0.00,1.00,-76.80,-33.60,0
+-76.80,-33.60,10.39,0.00,1.00,-67.20,-33.60,0
+-67.20,-28.80,10.43,0.00,1.00,-57.60,-28.80,0
+-62.40,-28.80,10.47,0.00,1.00,-52.80,-28.80,0
+-57.60,-28.80,10.51,0.00,1.00,-48.00,-28.80,0
+-52.80,-28.80,10.55,0.00,1.00,-38.40,-24.00,0
+-48.00,-24.00,10.59,0.00,1.00,-33.60,-24.00,0
+-43.20,-24.00,10.63,0.00,1.00,-28.80,-24.00,0
+-38.40,-19.20,10.67,0.00,1.00,-28.80,-19.20,0
+-33.60,-19.20,10.71,0.00,1.00,-24.00,-19.20,0
+-28.80,-19.20,10.75,0.00,1.00,-19.20,-14.40,0
+-24.00,-14.40,10.79,0.00,1.00,-14.40,-14.40,0
+-19.20,-14.40,10.83,0.00,1.00,-14.40,-9.60,0
+-14.40,-9.60,10.87,0.00,1.00,-9.60,-9.60,0
+-14.40,-9.60,10.91,0.00,1.00,-9.60,-4.80,0
+-9.60,-4.80,10.95,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,10.99,0.00,1.00,-4.80,0.00,0
+0.00,0.00,11.03,0.00,1.00,0.00,0.00,0
+4.80,0.00,11.07,0.00,1.00,0.00,4.80,0
+9.60,4.80,11.11,0.00,1.00,4.80,4.80,0
+14.40,4.80,11.15,0.00,1.00,4.80,9.60,0
+19.20,9.60,11.19,0.00,1.00,9.60,9.60,0
+19.20,9.60,11.23,0.00,1.00,9.60,14.40,0
+24.00,14.40,11.27,0.00,1.00,14.40,14.40,0
+28.80,14.40,11.31,0.00,1.00,19.20,19.20,0
+33.60,14.40,11.35,0.00,1.00,19.20,19.20,0
+38.40,19.20,11.39,0.00,1.00,24.00,19.20,0
+43.20,19.20,11.43,0.00,1.00,28.80,24.00,0
+48.00,24.00,11.47,0.00,1.00,33.60,24.00,0
+52.80,24.00,11.51,0.00,1.00,38.40,24.00,0
+57.60,24.00,11.55,0.00,1.00,43.20,24.00,0
+62.40,24.00,11.59,0.00,1.00,48.00,28.80,0
+72.00,24.00,11.63,0.00,1.00,52.80,28.80,0
+76.80,28.80,11.67,0.00,1.00,62.40,28.80,0
+81.60,28.80,11.71,0.00,1.00,72.00,28.80,0
+86.40,28.80,11.75,0.00,1.00,81.60,28.80,0
+91.20,28.80,11.79,0.00,1.00,91.20,28.80,0
+96.00,28.80,11.83,0.00,1.00,100.80,28.80,0
+100.80,28.80,11.87,0.00,1.00,110.40,28.80,0
+105.60,28.80,11.91,0.00,1.00,120.00,28.80,0
+110.40,24.00,11.95,0.00,1.00,129.60,24.00,0
+120.00,24.00,11.99,0.00,1.00,134.40,24.00,0
+124.80,24.00,12.03,0.00,1.00,139.20,24.00,0
+129.60,24.00,12.07,0.00,1.00,144.00,24.00,0
+134.40,19.20,12.11,0.00,1.00,148.80,19.20,0
+139.20,19.20,12.15,0.00,1.00,153.60,19.20,0
+144.00,19.20,12.19,0.00,1.00,158.40,14.40,0
+148.80,14.40,12.23,0.00,1.00,163.20,14.40,0
+153.60,14.40,12.27,0.00,1.00,163.20,14.40,0
+158.40,9.60,12.31,0.00,1.00,168.00,9.60,0
+158.40,9.60,12.35,0.00,1.00,168.00,9.60,0
+163.20,9.60,12.39,0.00,1.00,172.80,4.80,0
+168.00,4.80,12.43,0.00,1.00,172.80,4.80,0
+172.80,4.80,12.47,0.00,1.00,177.60,0.00,0
+177.60,0.00,12.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,12.55,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,12.59,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,12.63,0.00,1.00,-172.80,-9.60,0
+-163.20,-9.60,12.67,0.00,1.00,-172.80,-9.60,0
+-158.40,-9.60,12.71,0.00,1.00,-168.00,-14.40,0
+-158.40,-9.60,12.75,0.00,1.00,-168.00,-14.40,0
+-153.60,-14.40,12.79,0.00,1.00,-163.20,-14.40,0
+-148.80,-14.40,12.83,0.00,1.00,-163.20,-19.20,0
+-144.00,-19.20,12.87,0.00,1.00,-158.40,-19.20,0
+-139.20,-19.20,12.91,0.00,1.00,-153.60,-24.00,0
+-134.40,-19.20,12.95,0.00,1.00,-148.80,-24.00,0
+-129.60,-24.00,12.99,0.00,1.00,-144.00,-24.00,0
+-124.80,-24.00,13.03,0.00,1.00,-139.20,-24.00,0
+-120.00,-24.00,13.07,0.00,1.00,-134.40,-28.80,0
+-110.40,-24.00,13.11,0.00,1.00,-129.60,-28.80,0
+-105.60,-28.80,13.15,0.00,1.00,-120.00,-28.80,0
+-100.80,-28.80,13.19,0.00,1.00,-110.40,-28.80,0
+-96.00,-28.80,13.23,0.00,1.00,-100.80,-28.80,0
+-91.20,-28.80,13.27,0.00,1.00,-91.20,-28.80,0
+-86.40,-28.80,13.31,0.00,1.00,-81.60,-28.80,0
+-81.60,-28.80,13.35,0.00,1.00,-72.00,-28.80,0
+-76.80,-28.80,13.39,0.00,1.00,-62.40,-28.80,0
+-72.00,-24.00,13.43,0.00,1.00,-52.80,-24.00,0
+-62.40,-24.00,13.47,0.00,1.00,-48.00,-24.00,0
+-57.60,-24.00,13.51,0.00,1.00,-43.20,-24.00,0
+-52.80,-24.00,13.55,0.00,1.00,-38.40,-24.00,0
+-48.00,-24.00,13.59,0.00,1.00,-33.60,-19.20,0
+-43.20,-19.20,13.63,0.00,1.00,-28.80,-19.20,0
+-38.40,-19.20,13.67,0.00,1.00,-24.00,-19.20,0
+-33.60,-14.40,13.71,0.00,1.00,-19.20,-14.40,0
+-28.80,-14.40,13.75,0.00,1.00,-19.20,-14.40,0
+-24.00,-14.40,13.79,0.00,1.00,-14.40,-9.60,0
+-19.20,-9.60,13.83,0.00,1.00,-9.60,-9.60,0
+-19.20,-9.60,13.87,0.00,1.00,-9.60,-4.80,0
+-14.40,-4.80,13.91,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,13.95,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,13.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,14.04,0.00,1.00,0.00,0.00,0
+4.80,0.00,14.08,0.00,1.00,0.00,4.80,0
+9.60,4.80,14.12,0.00,1.00,4.80,4.80,0
+14.40,4.80,14.16,0.00,1.00,4.80,9.60,0
+19.20,9.60,14.20,0.00,1.00,9.60,9.60,0
+24.00,9.60,14.24,0.00,1.00,9.60,9.60,0
+28.80,9.60,14.28,0.00,1.00,14.40,14.40,0
+33.60,14.40,14.32,0.00,1.00,14.40,14.40,0
+38.40,14.40,14.36,0.00,1.00,19.20,14.40,0
+43.20,14.40,14.40,0.00,1.00,19.20,19.20,0
+48.00,14.40,14.44,0.00,1.00,24.00,19.20,0
+52.80,19.20,14.48,0.00,1.00,28.80,19.20,0
+57.60,19.20,14.52,0.00,1.00,33.60,19.20,0
+62.40,19.20,14.56,0.00,1.00,38.40,24.00,0
+67.20,19.20,14.60,0.00,1.00,43.20,24.00,0
+72.00,24.00,14.64,0.00,1.00,48.00,24.00,0
+76.80,24.00,14.68,0.00,1.00,57.60,24.00,0
+81.60,24.00,14.72,0.00,1.00,67.20,24.00,0
+86.40,24.00,14.76,0.00,1.00,81.60,24.00,0
+91.20,24.00,14.80,0.00,1.00,91.20,24.00,0
+96.00,24.00,14.84,0.00,1.00,105.60,24.00,0
+100.80,24.00,14.88,0.00,1.00,115.20,24.00,0
+105.60,24.00,14.92,0.00,1.00,124.80,24.00,0
+110.40,19.20,14.96,0.00,1.00,134.40,19.20,0
+115.20,19.20,15.00,0.00,1.00,139.20,19.20,0
+120.00,19.20,15.04,0.00,1.00,144.00,19.20,0
+124.80,19.20,15.08,0.00,1.00,148.80,19.20,0
+129.60,19.20,15.12,0.00,1.00,153.60,19.20,0
+134.40,14.40,15.16,0.00,1.00,158.40,14.40,0
+139.20,14.40,15.20,0.00,1.00,163.20,14.40,0
+144.00,14.40,15.24,0.00,1.00,163.20,14.40,0
+148.80,9.60,15.28,0.00,1.00,168.00,9.60,0
+153.60,9.60,15.32,0.00,1.00,168.00,9.60,0
+158.40,9.60,15.36,0.00,1.00,172.80,4.80,0
+163.20,4.80,15.40,0.00,1.00,172.80,4.80,0
+168.00,4.80,15.44,0.00,1.00,177.60,4.80,0
+172.80,4.80,15.48,0.00,1.00,177.60,0.00,0
+177.60,0.00,15.52,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,15.56,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,15.60,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,15.64,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,15.68,0.00,1.00,-172.80,-9.60,0
+-158.40,-9.60,15.72,0.00,1.00,-172.80,-9.60,0
+-153.60,-9.60,15.76,0.00,1.00,-168.00,-14.40,0
+-148.80,-9.60,15.80,0.00,1.00,-168.00,-14.40,0
+-144.00,-14.40,15.84,0.00,1.00,-163.20,-14.40,0
+-139.20,-14.40,15.88,0.00,1.00,-163.20,-19.20,0
+-134.40,-14.40,15.92,0.00,1.00,-158.40,-19.20,0
+-129.60,-19.20,15.96,0.00,1.00,-153.60,-19.20,0
+-124.80,-19.20,16.00,0.00,1.00,-148.80,-19.20,0
+-120.00,-19.20,16.00,0.00,1.00,-144.00,-19.20,0
+-115.20,-19.20,15.96,0.00,1.00,-139.20,-24.00,0
+-110.40,-19.20,15.92,0.00,1.00,-134.40,-24.00,0
+-105.60,-24.00,15.88,0.00,1.00,-124.80,-24.00,0
+-100.80,-24.00,15.84,0.00,1.00,-115.20,-24.00,0
+-96.00,-24.00,15.80,0.00,1.00,-105.60,-24.00,0
+-91.20,-24.00,15.76,0.00,1.00,-91.20,-24.00,0
+-86.40,-24.00,15.72,0.00,1.00,-81.60,-24.00,0
+-81.60,-24.00,15.68,0.00,1.00,-67.20,-24.00,0
+-76.80,-24.00,15.64,0.00,1.00,-57.60,-24.00,0
+-72.00,-24.00,15.60,0.00,1.00,-48.00,-24.00,0
+-67.20,-19.20,15.56,0.00,1.00,-43.20,-19.20,0
+-62.40,-19.20,15.52,0.00,1.00,-38.40,-19.20,0
+-57.60,-19.20,15.48,0.00,1.00,-33.60,-19.20,0
+-52.80,-19.20,15.44,0.00,1.00,-28.80,-19.20,0
+-48.00,-14.40,15.40,0.00,1.00,-24.00,-14.40,0
+-43.20,-14.40,15.36,0.00,1.00,-19.20,-14.40,0
+-38.40,-14.40,15.32,0.00,1.00,-19.20,-14.40,0
+-33.60,-14.40,15.28,0.00,1.00,-14.40,-9.60,0
+-28.80,-9.60,15.24,0.00,1.00,-14.40,-9.60,0
+-24.00,-9.60,15.20,0.00,1.00,-9.60,-9.60,0
+-19.20,-9.60,15.16,0.00,1.00,-9.60,-4.80,0
+-14.40,-4.80,15.12,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,15.08,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,15.04,0.00,1.00,-0.00,0.00,0
+0.00,0.00,15.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,14.96,0.00,1.00,0.00,4.80,0
+9.60,4.80,14.92,0.00,1.00,4.80,4.80,0
+14.40,4.80,14.88,0.00,1.00,4.80,4.80,0
+19.20,4.80,14.84,0.00,1.00,4.80,9.60,0
+24.00,9.60,14.80,0.00,1.00,9.60,9.60,0
+28.80,9.60,14.76,0.00,1.00,9.60,9.60,0
+33.60,9.60,14.72,0.00,1.00,9.60,9.60,0
+38.40,9.60,14.68,0.00,1.00,14.40,14.40,0
+43.20,14.40,14.64,0.00,1.00,14.40,14.40,0
+48.00,14.40,14.60,0.00,1.00,19.20,14.40,0
+52.80,14.40,14.56,0.00,1.00,24.00,14.40,0
+57.60,14.40,14.52,0.00,1.00,24.00,19.20,0
+62.40,14.40,14.48,0.00,1.00,28.80,19.20,0
+67.20,14.40,14.44,0.00,1.00,38.40,19.20,0
+72.00,19.20,14.40,0.00,1.00,43.20,19.20,0
+76.80,19.20,14.36,0.00,1.00,52.80,19.20,0
+81.60,19.20,14.32,0.00,1.00,62.40,19.20,0
+86.40,19.20,14.28,0.00,1.00,76.80,19.20,0
+91.20,19.20,14.24,0.00,1.00,96.00,19.20,0
+96.00,19.20,14.20,0.00,1.00,110.40,19.20,0
+100.80,19.20,14.16,0.00,1.00,120.00,19.20,0
+105.60,19.20,14.12,0.00,1.00,134.40,19.20,0
+110.40,19.20,14.08,0.00,1.00,139.20,19.20,0
+115.20,14.40,14.04,0.00,1.00,148.80,14.40,0
+120.00,14.40,13.99,0.00,1.00,153.60,14.40,0
+124.80,14.40,13.95,0.00,1.00,158.40,14.40,0
+129.60,14.40,13.91,0.00,1.00,158.40,14.40,0
+134.40,14.40,13.87,0.00,1.00,163.20,14.40,0
+139.20,9.60,13.83,0.00,1.00,163.20,9.60,0
+144.00,9.60,13.79,0.00,1.00,168.00,9.60,0
+148.80,9.60,13.75,0.00,1.00,168.00,9.60,0
+153.60,9.60,13.71,0.00,1.00,172.80,4.80,0
+158.40,4.80,13.67,0.00,1.00,172.80,4.80,0
+163.20,4.80,13.63,0.00,1.00,172.80,4.80,0
+168.00,4.80,13.59,0.00,1.00,177.60,0.00,0
+172.80,0.00,13.55,0.00,1.00,177.60,0.00,0
+177.60,0.00,13.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.47,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,13.43,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,13.39,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,13.35,0.00,1.00,-172.80,-4.80,0
+-158.40,-4.80,13.31,0.00,1.00,-172.80,-9.60,0
+-153.60,-9.60,13.27,0.00,1.00,-172.80,-9.60,0
+-148.80,-9.60,13.23,0.00,1.00,-168.00,-9.60,0
+-144.00,-9.60,13.19,0.00,1.00,-168.00,-14.40,0
+-139.20,-9.60,13.15,0.00,1.00,-163.20,-14.40,0
+-134.40,-14.40,13.11,0.00,1.00,-163.20,-14.40,0
+-129.60,-14.40,13.07,0.00,1.00,-158.40,-14.40,0
+-124.80,-14.40,13.03,0.00,1.00,-158.40,-14.40,0
+-120.00,-14.40,12.99,0.00,1.00,-153.60,-19.20,0
+-115.20,-14.40,12.95,0.00,1.00,-148.80,-19.20,0
+-110.40,-19.20,12.91,0.00,1.00,-139.20,-19.20,0
+-105.60,-19.20,12.87,0.00,1.00,-134.40,-19.20,0
+-100.80,-19.20,12.83,0.00,1.00,-120.00,-19.20,0
+-96.00,-19.20,12.79,0.00,1.00,-110.40,-19.20,0
+-91.20,-19.20,12.75,0.00,1.00,-96.00,-19.20,0
+-86.40,-19.20,12.71,0.00,1.00,-76.80,-19.20,0
+-81.60,-19.20,12.67,0.00,1.00,-62.40,-19.20,0
+-76.80,-19.20,12.63,0.00,1.00,-52.80,-19.20,0
+-72.00,-19.20,12.59,0.00,1.00,-43.20,-19.20,0
+-67.20,-14.40,12.55,0.00,1.00,-38.40,-19.20,0
+-62.40,-14.40,12.51,0.00,1.00,-28.80,-14.40,0
+-57.60,-14.40,12.47,0.00,1.00,-24.00,-14.40,0
+-52.80,-14.40,12.43,0.00,1.00,-24.00,-14.40,0
+-48.00,-14.40,12.39,0.00,1.00,-19.20,-14.40,0
+-43.20,-14.40,12.35,0.00,1.00,-14.40,-9.60,0
+-38.40,-9.60,12.31,0.00,1.00,-14.40,-9.60,0
+-33.60,-9.60,12.27,0.00,1.00,-9.60,-9.60,0
+-28.80,-9.60,12.23,0.00,1.00,-9.60,-9.60,0
+-24.00,-9.60,12.19,0.00,1.00,-9.60,-4.80,0
+-19.20,-4.80,12.15,0.00,1.00,-4.80,-4.80,0
+-14.40,-4.80,12.11,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,12.07,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,12.03,0.00,1.00,-0.00,0.00,0
+0.00,0.00,11.99,0.00,1.00,0.00,0.00,0
+4.80,0.00,11.95,0.00,1.00,0.00,0.00,0
+9.60,0.00,11.91,0.00,1.00,0.00,4.80,0
+14.40,4.80,11.87,0.00,1.00,4.80,4.80,0
+19.20,4.80,11.83,0.00,1.00,4.80,4.80,0
+24.00,4.80,11.79,0.00,1.00,4.80,4.80,0
+28.80,4.80,11.75,0.00,1.00,4.80,9.60,0
+33.60,9.60,11.71,0.00,1.00,9.60,9.60,0
+38.40,9.60,11.67,0.00,1.00,9.60,9.60,0
+43.20,9.60,11.63,0.00,1.00,14.40,9.60,0
+48.00,9.60,11.59,0.00,1.00,14.40,9.60,0
+52.80,9.60,11.55,0.00,1.00,14.40,14.40,0
+57.60,9.60,11.51,0.00,1.00,19.20,14.40,0
+62.40,9.60,11.47,0.00,1.00,24.00,14.40,0
+67.20,14.40,11.43,0.00,1.00,28.80,14.40,0
+72.00,14.40,11.39,0.00,1.00,33.60,14.40,0
+76.80,14.40,11.35,0.00,1.00,43.20,14.40,0
+81.60,14.40,11.31,0.00,1.00,57.60,14.40,0
+86.40,14.40,11.27,0.00,1.00,76.80,14.40,0
+91.20,14.40,11.23,0.00,1.00,96.00,14.40,0
+96.00,14.40,11.19,0.00,1.00,115.20,14.40,0
+100.80,14.40,11.15,0.00,1.00,129.60,14.40,0
+105.60,14.40,11.11,0.00,1.00,139.20,14.40,0
+110.40,14.40,11.07,0.00,1.00,148.80,14.40,0
+115.20,9.60,11.03,0.00,1.00,153.60,14.40,0
+120.00,9.60,10.99,0.00,1.00,158.40,9.60,0
+124.80,9.60,10.95,0.00,1.00,163.20,9.60,0
+129.60,9.60,10.91,0.00,1.00,163.20,9.60,0
+134.40,9.60,10.87,0.00,1.00,168.00,9.60,0
+139.20,9.60,10.83,0.00,1.00,168.00,9.60,0
+144.00,9.60,10.79,0.00,1.00,172.80,9.60,0
+148.80,4.80,10.75,0.00,1.00,172.80,4.80,0
+153.60,4.80,10.71,0.00,1.00,172.80,4.80,0
+158.40,4.80,10.67,0.00,1.00,172.80,4.80,0
+163.20,4.80,10.63,0.00,1.00,177.60,4.80,0
+168.00,4.80,10.59,0.00,1.00,177.60,0.00,0
+172.80,0.00,10.55,0.00,1.00,177.60,0.00,0
+177.60,0.00,10.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.47,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,10.43,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,10.39,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,10.35,0.00,1.00,-177.60,-4.80,0
+-158.40,-4.80,10.31,0.00,1.00,-172.80,-4.80,0
+-153.60,-4.80,10.27,0.00,1.00,-172.80,-9.60,0
+-148.80,-4.80,10.23,0.00,1.00,-172.80,-9.60,0
+-144.00,-9.60,10.19,0.00,1.00,-172.80,-9.60,0
+-139.20,-9.60,10.15,0.00,1.00,-168.00,-9.60,0
+-134.40,-9.60,10.11,0.00,1.00,-168.00,-9.60,0
+-129.60,-9.60,10.07,0.00,1.00,-163.20,-9.60,0
+-124.80,-9.60,10.03,0.00,1.00,-163.20,-14.40,0
+-120.00,-9.60,9.98,0.00,1.00,-158.40,-14.40,0
+-115.20,-9.60,9.94,0.00,1.00,-153.60,-14.40,0
+-110.40,-14.40,9.90,0.00,1.00,-148.80,-14.40,0
+-105.60,-14.40,9.86,0.00,1.00,-139.20,-14.40,0
+-100.80,-14.40,9.82,0.00,1.00,-129.60,-14.40,0
+-96.00,-14.40,9.78,0.00,1.00,-115.20,-14.40,0
+-91.20,-14.40,9.74,0.00,1.00,-96.00,-14.40,0
+-86.40,-14.40,9.70,0.00,1.00,-76.80,-14.40,0
+-81.60,-14.40,9.66,0.00,1.00,-57.60,-14.40,0
+-76.80,-14.40,9.62,0.00,1.00,-43.20,-14.40,0
+-72.00,-14.40,9.58,0.00,1.00,-33.60,-14.40,0
+-67.20,-14.40,9.54,0.00,1.00,-28.80,-14.40,0
+-62.40,-9.60,9.50,0.00,1.00,-24.00,-14.40,0
+-57.60,-9.60,9.46,0.00,1.00,-19.20,-9.60,0
+-52.80,-9.60,9.42,0.00,1.00,-14.40,-9.60,0
+-48.00,-9.60,9.38,0.00,1.00,-14.40,-9.60,0
+-43.20,-9.60,9.34,0.00,1.00,-14.40,-9.60,0
+-38.40,-9.60,9.30,0.00,1.00,-9.60,-9.60,0
+-33.60,-9.60,9.26,0.00,1.00,-9.60,-4.80,0
+-28.80,-4.80,9.22,0.00,1.00,-4.80,-4.80,0
+-24.00,-4.80,9.18,0.00,1.00,-4.80,-4.80,0
+-19.20,-4.80,9.14,0.00,1.00,-4.80,-4.80,0
+-14.40,-4.80,9.10,0.00,1.00,-4.80,-0.00,0
+-9.60,-0.00,9.06,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,9.02,0.00,1.00,-0.00,0.00,0
+0.00,0.00,8.98,0.00,1.00,0.00,0.00,0
+4.80,0.00,8.94,0.00,1.00,0.00,0.00,0
+9.60,0.00,8.90,0.00,1.00,0.00,0.00,0
+14.40,0.00,8.86,0.00,1.00,0.00,4.80,0
+19.20,4.80,8.82,0.00,1.00,4.80,4.80,0
+24.00,4.80,8.78,0.00,1.00,4.80,4.80,0
+28.80,4.80,8.74,0.00,1.00,4.80,4.80,0
+33.60,4.80,8.70,0.00,1.00,4.80,4.80,0
+38.40,4.80,8.66,0.00,1.00,4.80,4.80,0
+43.20,4.80,8.62,0.00,1.00,9.60,4.80,0
+48.00,4.80,8.58,0.00,1.00,9.60,9.60,0
+52.80,4.80,8.54,0.00,1.00,9.60,9.60,0
+57.60,4.80,8.50,0.00,1.00,14.40,9.60,0
+62.40,9.60,8.46,0.00,1.00,14.40,9.60,0
+67.20,9.60,8.42,0.00,1.00,19.20,9.60,0
+72.00,9.60,8.38,0.00,1.00,24.00,9.60,0
+76.80,9.60,8.34,0.00,1.00,33.60,9.60,0
+81.60,9.60,8.30,0.00,1.00,43.20,9.60,0
+86.40,9.60,8.26,0.00,1.00,67.20,9.60,0
+91.20,9.60,8.22,0.00,1.00,96.00,9.60,0
+96.00,9.60,8.18,0.00,1.00,124.80,9.60,0
+100.80,9.60,8.14,0.00,1.00,144.00,9.60,0
+105.60,9.60,8.10,0.00,1.00,153.60,9.60,0
+110.40,9.60,8.06,0.00,1.00,158.40,9.60,0
+115.20,9.60,8.02,0.00,1.00,163.20,9.60,0
+120.00,9.60,7.98,0.00,1.00,168.00,9.60,0
+124.80,4.80,7.94,0.00,1.00,168.00,9.60,0
+129.60,4.80,7.90,0.00,1.00,168.00,4.80,0
+134.40,4.80,7.86,0.00,1.00,172.80,4.80,0
+139.20,4.80,7.82,0.00,1.00,172.80,4.80,0
+144.00,4.80,7.78,0.00,1.00,172.80,4.80,0
+148.80,4.80,7.74,0.00,1.00,172.80,4.80,0
+153.60,4.80,7.70,0.00,1.00,177.60,4.80,0
+158.40,4.80,7.66,0.00,1.00,177.60,4.80,0
+163.20,4.80,7.62,0.00,1.00,177.60,0.00,0
+168.00,0.00,7.58,0.00,1.00,177.60,0.00,0
+172.80,0.00,7.54,0.00,1.00,177.60,0.00,0
+177.60,0.00,7.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,7.46,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,7.42,0.00,1.00,-177.60,-0.00,0
+-168.00,-0.00,7.38,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,7.34,0.00,1.00,-177.60,-4.80,0
+-158.40,-4.80,7.30,0.00,1.00,-177.60,-4.80,0
+-153.60,-4.80,7.26,0.00,1.00,-177.60,-4.80,0
+-148.80,-4.80,7.22,0.00,1.00,-172.80,-4.80,0
+-144.00,-4.80,7.18,0.00,1.00,-172.80,-4.80,0
+-139.20,-4.80,7.14,0.00,1.00,-172.80,-4.80,0
+-134.40,-4.80,7.10,0.00,1.00,-172.80,-9.60,0
+-129.60,-4.80,7.06,0.00,1.00,-168.00,-9.60,0
+-124.80,-4.80,7.02,0.00,1.00,-168.00,-9.60,0
+-120.00,-9.60,6.98,0.00,1.00,-168.00,-9.60,0
+-115.20,-9.60,6.94,0.00,1.00,-163.20,-9.60,0
+-110.40,-9.60,6.90,0.00,1.00,-158.40,-9.60,0
+-105.60,-9.60,6.86,0.00,1.00,-153.60,-9.60,0
+-100.80,-9.60,6.82,0.00,1.00,-144.00,-9.60,0
+-96.00,-9.60,6.78,0.00,1.00,-124.80,-9.60,0
+-91.20,-9.60,6.74,0.00,1.00,-96.00,-9.60,0
+-86.40,-9.60,6.70,0.00,1.00,-67.20,-9.60,0
+-81.60,-9.60,6.66,0.00,1.00,-43.20,-9.60,0
+-76.80,-9.60,6.62,0.00,1.00,-33.60,-9.60,0
+-72.00,-9.60,6.58,0.00,1.00,-24.00,-9.60,0
+-67.20,-9.60,6.54,0.00,1.00,-19.20,-9.60,0
+-62.40,-9.60,6.50,0.00,1.00,-14.40,-9.60,0
+-57.60,-4.80,6.46,0.00,1.00,-14.40,-9.60,0
+-52.80,-4.80,6.42,0.00,1.00,-9.60,-4.80,0
+-48.00,-4.80,6.38,0.00,1.00,-9.60,-4.80,0
+-43.20,-4.80,6.34,0.00,1.00,-9.60,-4.80,0
+-38.40,-4.80,6.30,0.00,1.00,-4.80,-4.80,0
+-33.60,-4.80,6.26,0.00,1.00,-4.80,-4.80,0
+-28.80,-4.80,6.22,0.00,1.00,-4.80,-4.80,0
+-24.00,-4.80,6.18,0.00,1.00,-4.80,-4.80,0
+-19.20,-4.80,6.14,0.00,1.00,-4.80,-0.00,0
+-14.40,-0.00,6.10,0.00,1.00,-0.00,-0.00,0
+-9.60,-0.00,6.06,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,6.02,0.00,1.00,-0.00,0.00,0
+0.00,0.00,5.97,0.00,1.00,0.00,0.00,0
+4.80,0.00,5.93,0.00,1.00,0.00,0.00,0
+9.60,0.00,5.89,0.00,1.00,0.00,0.00,0
+14.40,0.00,5.85,0.00,1.00,0.00,0.00,0
+19.20,0.00,5.81,0.00,1.00,0.00,0.00,0
+24.00,0.00,5.77,0.00,1.00,0.00,0.00,0
+28.80,0.00,5.73,0.00,1.00,0.00,4.80,0
+33.60,0.00,5.69,0.00,1.00,0.00,4.80,0
+38.40,0.00,5.65,0.00,1.00,4.80,4.80,0
+43.20,4.80,5.61,0.00,1.00,4.80,4.80,0
+48.00,4.80,5.57,0.00,1.00,4.80,4.80,0
+52.80,4.80,5.53,0.00,1.00,4.80,4.80,0
+57.60,4.80,5.49,0.00,1.00,4.80,4.80,0
+62.40,4.80,5.45,0.00,1.00,4.80,4.80,0
+67.20,4.80,5.41,0.00,1.00,9.60,4.80,0
+72.00,4.80,5.37,0.00,1.00,9.60,4.80,0
+76.80,4.80,5.33,0.00,1.00,14.40,4.80,0
+81.60,4.80,5.29,0.00,1.00,24.00,4.80,0
+86.40,4.80,5.25,0.00,1.00,43.20,4.80,0
+91.20,4.80,5.21,0.00,1.00,110.40,4.80,0
+96.00,4.80,5.17,0.00,1.00,148.80,4.80,0
+100.80,4.80,5.13,0.00,1.00,163.20,4.80,0
+105.60,4.80,5.09,0.00,1.00,168.00,4.80,0
+110.40,4.80,5.05,0.00,1.00,172.80,4.80,0
+115.20,4.80,5.01,0.00,1.00,172.80,4.80,0
+120.00,4.80,4.97,0.00,1.00,172.80,4.80,0
+124.80,4.80,4.93,0.00,1.00,172.80,4.80,0
+129.60,4.80,4.89,0.00,1.00,177.60,4.80,0
+134.40,4.80,4.85,0.00,1.00,177.60,4.80,0
+139.20,0.00,4.81,0.00,1.00,177.60,4.80,0
+144.00,0.00,4.77,0.00,1.00,177.60,4.80,0
+148.80,0.00,4.73,0.00,1.00,177.60,0.00,0
+153.60,0.00,4.69,0.00,1.00,177.60,0.00,0
+158.40,0.00,4.65,0.00,1.00,177.60,0.00,0
+163.20,0.00,4.61,0.00,1.00,177.60,0.00,0
+168.00,0.00,4.57,0.00,1.00,177.60,0.00,0
+172.80,0.00,4.53,0.00,1.00,177.60,0.00,0
+177.60,0.00,4.49,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,4.45,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,4.41,0.00,1.00,-177.60,-0.00,0
+-168.00,-0.00,4.37,0.00,1.00,-177.60,-0.00,0
+-163.20,-0.00,4.33,0.00,1.00,-177.60,-0.00,0
+-158.40,-0.00,4.29,0.00,1.00,-177.60,-0.00,0
+-153.60,-0.00,4.25,0.00,1.00,-177.60,-4.80,0
+-148.80,-0.00,4.21,0.00,1.00,-177.60,-4.80,0
+-144.00,-0.00,4.17,0.00,1.00,-177.60,-4.80,0
+-139.20,-0.00,4.13,0.00,1.00,-177.60,-4.80,0
+-134.40,-4.80,4.09,0.00,1.00,-177.60,-4.80,0
+-129.60,-4.80,4.05,0.00,1.00,-177.60,-4.80,0
+-124.80,-4.80,4.01,0.00,1.00,-172.80,-4.80,0
+-120.00,-4.80,3.97,0.00,1.00,-172.80,-4.80,0
+-115.20,-4.80,3.93,0.00,1.00,-172.80,-4.80,0
+-110.40,-4.80,3.89,0.00,1.00,-172.80,-4.80,0
+-105.60,-4.80,3.85,0.00,1.00,-168.00,-4.80,0
+-100.80,-4.80,3.81,0.00,1.00,-163.20,-4.80,0
+-96.00,-4.80,3.77,0.00,1.00,-148.80,-4.80,0
+-91.20,-4.80,3.73,0.00,1.00,-110.40,-4.80,0
+-86.40,-4.80,3.69,0.00,1.00,-43.20,-4.80,0
+-81.60,-4.80,3.65,0.00,1.00,-24.00,-4.80,0
+-76.80,-4.80,3.61,0.00,1.00,-14.40,-4.80,0
+-72.00,-4.80,3.57,0.00,1.00,-9.60,-4.80,0
+-67.20,-4.80,3.53,0.00,1.00,-9.60,-4.80,0
+-62.40,-4.80,3.49,0.00,1.00,-4.80,-4.80,0
+-57.60,-4.80,3.45,0.00,1.00,-4.80,-4.80,0
+-52.80,-4.80,3.41,0.00,1.00,-4.80,-4.80,0
+-48.00,-4.80,3.37,0.00,1.00,-4.80,-4.80,0
+-43.20,-4.80,3.33,0.00,1.00,-4.80,-4.80,0
+-38.40,-0.00,3.29,0.00,1.00,-4.80,-4.80,0
+-33.60,-0.00,3.25,0.00,1.00,-0.00,-0.00,0
+-28.80,-0.00,3.21,0.00,1.00,-0.00,-0.00,0
+-24.00,-0.00,3.17,0.00,1.00,-0.00,-0.00,0
+-19.20,-0.00,3.13,0.00,1.00,-0.00,-0.00,0
+-14.40,-0.00,3.09,0.00,1.00,-0.00,-0.00,0
+-9.60,-0.00,3.05,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,3.01,0.00,1.00,-0.00,0.00,0
+0.00,0.00,2.97,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,2.93,0.00,1.00,-0.00,0.00,0
+9.60,-0.00,2.89,0.00,1.00,-0.00,0.00,0
+14.40,-0.00,2.85,0.00,1.00,-0.00,0.00,0
+19.20,-0.00,2.81,0.00,1.00,-0.00,0.00,0
+24.00,-0.00,2.77,0.00,1.00,-0.00,0.00,0
+28.80,-0.00,2.73,0.00,1.00,-0.00,0.00,0
+33.60,-0.00,2.69,0.00,1.00,-0.00,0.00,0
+38.40,-0.00,2.65,0.00,1.00,-0.00,0.00,0
+43.20,-0.00,2.61,0.00,1.00,-0.00,0.00,0
+48.00,-0.00,2.57,0.00,1.00,-0.00,0.00,0
+52.80,-0.00,2.53,0.00,1.00,-0.00,0.00,0
+57.60,-0.00,2.49,0.00,1.00,-0.00,0.00,0
+62.40,-0.00,2.45,0.00,1.00,-0.00,0.00,0
+67.20,-0.00,2.41,0.00,1.00,-4.80,0.00,0
+72.00,-0.00,2.37,0.00,1.00,-4.80,0.00,0
+76.80,-0.00,2.33,0.00,1.00,-4.80,0.00,0
+81.60,-0.00,2.29,0.00,1.00,-9.60,0.00,0
+86.40,-0.00,2.25,0.00,1.00,-19.20,0.00,0
+91.20,-0.00,2.21,0.00,1.00,-134.40,0.00,0
+96.00,-0.00,2.17,0.00,1.00,-168.00,0.00,0
+100.80,-0.00,2.13,0.00,1.00,-172.80,0.00,0
+105.60,-0.00,2.09,0.00,1.00,-177.60,0.00,0
+110.40,-0.00,2.05,0.00,1.00,-177.60,0.00,0
+115.20,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+120.00,-0.00,1.96,0.00,1.00,-177.60,0.00,0
+124.80,-0.00,1.92,0.00,1.00,-177.60,0.00,0
+129.60,-0.00,1.88,0.00,1.00,-177.60,0.00,0
+134.40,-0.00,1.84,0.00,1.00,-177.60,0.00,0
+139.20,-0.00,1.80,0.00,1.00,-177.60,0.00,0
+144.00,-0.00,1.76,0.00,1.00,-177.60,0.00,0
+148.80,-0.00,1.72,0.00,1.00,-177.60,0.00,0
+153.60,-0.00,1.68,0.00,1.00,-177.60,0.00,0
+158.40,-0.00,1.64,0.00,1.00,-177.60,0.00,0
+163.20,-0.00,1.60,0.00,1.00,-177.60,0.00,0
+168.00,-0.00,1.56,0.00,1.00,-177.60,0.00,0
+172.80,-0.00,1.52,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,1.48,0.00,1.00,-177.60,0.00,0
+-177.60,0.00,1.44,0.00,1.00,177.60,0.00,0
+-172.80,0.00,1.40,0.00,1.00,177.60,0.00,0
+-168.00,0.00,1.36,0.00,1.00,177.60,0.00,0
+-163.20,0.00,1.32,0.00,1.00,177.60,0.00,0
+-158.40,0.00,1.28,0.00,1.00,177.60,0.00,0
+-153.60,0.00,1.24,0.00,1.00,177.60,0.00,0
+-148.80,0.00,1.20,0.00,1.00,177.60,0.00,0
+-144.00,0.00,1.16,0.00,1.00,177.60,0.00,0
+-139.20,0.00,1.12,0.00,1.00,177.60,0.00,0
+-134.40,0.00,1.08,0.00,1.00,177.60,0.00,0
+-129.60,0.00,1.04,0.00,1.00,177.60,0.00,0
+-124.80,0.00,1.00,0.00,1.00,177.60,0.00,0
+-120.00,0.00,0.96,0.00,1.00,177.60,0.00,0
+-115.20,0.00,0.92,0.00,1.00,177.60,0.00,0
+-110.40,0.00,0.88,0.00,1.00,177.60,0.00,0
+-105.60,0.00,0.84,0.00,1.00,177.60,0.00,0
+-100.80,0.00,0.80,0.00,1.00,172.80,0.00,0
+-96.00,0.00,0.76,0.00,1.00,168.00,0.00,0
+-91.20,0.00,0.72,0.00,1.00,134.40,0.00,0
+-86.40,0.00,0.68,0.00,1.00,19.20,0.00,0
+-81.60,0.00,0.64,0.00,1.00,9.60,0.00,0
+-76.80,0.00,0.60,0.00,1.00,4.80,0.00,0
+-72.00,0.00,0.56,0.00,1.00,4.80,0.00,0
+-67.20,0.00,0.52,0.00,1.00,4.80,0.00,0
+-62.40,0.00,0.48,0.00,1.00,0.00,0.00,0
+-57.60,0.00,0.44,0.00,1.00,0.00,0.00,0
+-52.80,0.00,0.40,0.00,1.00,0.00,0.00,0
+-48.00,0.00,0.36,0.00,1.00,0.00,0.00,0
+-43.20,0.00,0.32,0.00,1.00,0.00,0.00,0
+-38.40,0.00,0.28,0.00,1.00,0.00,0.00,0
+-33.60,0.00,0.24,0.00,1.00,0.00,0.00,0
+-28.80,0.00,0.20,0.00,1.00,0.00,0.00,0
+-24.00,0.00,0.16,0.00,1.00,0.00,0.00,0
+-19.20,0.00,0.12,0.00,1.00,0.00,0.00,0
+-14.40,0.00,0.08,0.00,1.00,0.00,0.00,0
+-9.60,0.00,0.04,0.00,1.00,0.00,0.00,0
+-4.80,0.00,0.00,0.00,1.00,0.00,0.00,0
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA2TC48c.met b/scripts/testv/stvOMASA_4ISM_2MASA2TC48c.met
new file mode 100644
index 0000000000000000000000000000000000000000..1b62022af572fc4f198e4212cca88d51913ec3c4
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA2TC48c.met
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2eb412d646d7a32c77413dea54dc44cf45dc49e6d8c2de19abe4f4b93a91fa4a
+size 159900
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA2TC48c_ISM1.csv b/scripts/testv/stvOMASA_4ISM_2MASA2TC48c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA2TC48c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA2TC48c_ISM2.csv b/scripts/testv/stvOMASA_4ISM_2MASA2TC48c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA2TC48c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA2TC48c_ISM3.csv b/scripts/testv/stvOMASA_4ISM_2MASA2TC48c_ISM3.csv
new file mode 100644
index 0000000000000000000000000000000000000000..14eee9b693b536fa2fd22d2813d7f588b8930b06
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA2TC48c_ISM3.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0
+-177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0
+4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0
+-168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0
+14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0
+-163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0
+19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0
+-153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0
+28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0
+-148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0
+38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0
+-139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0
+48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0
+-124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0
+57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0
+-115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0
+72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0
+-100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0
+86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0
+-86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0
+100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0
+-76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0
+110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0
+-62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0
+124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0
+-52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0
+134.40,33.60,0.28,0.00,1.00,177.60,0.00,0
+-38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0
+144.00,28.80,0.30,0.00,1.00,177.60,0.00,0
+-33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0
+153.60,24.00,0.32,0.00,1.00,177.60,0.00,0
+-24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0
+158.40,19.20,0.34,0.00,1.00,177.60,0.00,0
+-14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0
+168.00,9.60,0.36,0.00,1.00,177.60,0.00,0
+-9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0
+172.80,4.80,0.38,0.00,1.00,177.60,0.00,0
+-0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0
+-177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0
+4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0
+14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0
+19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0
+-158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0
+28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0
+-148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0
+33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0
+-139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0
+43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0
+-129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0
+57.60,38.40,15.47,0.00,1.00,177.60,0.00,0
+-120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0
+67.20,43.20,15.44,0.00,1.00,177.60,0.00,0
+-105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0
+81.60,43.20,15.42,0.00,1.00,177.60,0.00,0
+-91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0
+96.00,43.20,15.40,0.00,1.00,0.00,0.00,0
+-76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0
+110.40,43.20,15.38,0.00,1.00,0.00,0.00,0
+-67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0
+120.00,38.40,15.36,0.00,1.00,0.00,0.00,0
+-52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0
+129.60,38.40,15.34,0.00,1.00,0.00,0.00,0
+-43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0
+144.00,33.60,15.32,0.00,1.00,0.00,0.00,0
+-33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0
+148.80,24.00,15.30,0.00,1.00,0.00,0.00,0
+-24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0
+158.40,19.20,15.27,0.00,1.00,0.00,0.00,0
+-19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0
+168.00,14.40,15.25,0.00,1.00,0.00,0.00,0
+-9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0
+172.80,4.80,15.23,0.00,1.00,0.00,0.00,0
+-4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0
+0.00,0.00,15.21,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0
+9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0
+14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0
+-163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0
+24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0
+-153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0
+28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0
+-144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0
+38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0
+-134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0
+48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0
+-124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0
+62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0
+-115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0
+72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0
+-100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0
+86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0
+-86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0
+96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0
+-76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0
+110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0
+-62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0
+120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0
+-52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0
+134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0
+-43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0
+144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0
+-33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0
+148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0
+-24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0
+158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0
+-19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0
+168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0
+-9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0
+172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0
+4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0
+-172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0
+14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0
+-163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0
+19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0
+-153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0
+28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0
+-148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0
+38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0
+-139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0
+48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0
+-124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0
+57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0
+-115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0
+72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0
+-105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0
+81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0
+-91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0
+96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0
+-76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0
+105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0
+-67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0
+120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0
+-57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0
+129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0
+-43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0
+139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0
+-33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0
+148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0
+-28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0
+158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0
+-19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0
+163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0
+-9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0
+172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0
+0.00,0.00,1.60,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0
+9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0
+-168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0
+14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0
+-158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0
+24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0
+-153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0
+33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0
+-144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0
+43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0
+-134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0
+52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0
+-124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0
+62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0
+-110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0
+72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0
+-100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0
+86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0
+-86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0
+96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0
+-76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0
+110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0
+-67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0
+120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0
+-52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0
+129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0
+-43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0
+139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0
+-33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0
+148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0
+-24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0
+158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0
+-19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0
+168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0
+172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0
+14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0
+-163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0
+24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0
+-153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0
+28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0
+-144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0
+38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0
+-134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0
+48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0
+-124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0
+62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0
+-115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0
+72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0
+-100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0
+81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0
+-91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0
+96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0
+-81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0
+105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0
+-67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0
+115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0
+-57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0
+129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0
+-48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0
+139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0
+-38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0
+148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0
+-28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0
+153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0
+-19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0
+163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0
+-9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0
+172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0
+-4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0
+0.00,0.00,13.61,0.00,1.00,0.00,0.00,0
+-177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0
+9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0
+-168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0
+24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0
+-148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0
+33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0
+-139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0
+43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0
+-129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0
+52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0
+-120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0
+62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0
+-110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0
+76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0
+-100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0
+86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0
+-86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0
+96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0
+-76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0
+105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0
+-67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0
+120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0
+-57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0
+129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0
+-48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0
+139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0
+-38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0
+148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0
+158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0
+-19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0
+163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0
+-9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0
+172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0
+4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0
+14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0
+-163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0
+24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0
+-153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0
+33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0
+-144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0
+43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0
+-134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0
+52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0
+-124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0
+62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0
+-115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0
+72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0
+-100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0
+81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0
+-91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0
+96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0
+-81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0
+105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0
+-67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0
+115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0
+-57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0
+124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0
+-48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0
+134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0
+-38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0
+144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0
+-28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0
+153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0
+-19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0
+163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0
+-14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0
+172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0
+-4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0
+0.00,0.00,3.20,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0
+9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0
+19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0
+-158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0
+24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0
+-148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0
+33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0
+-139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0
+43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0
+-129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0
+52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0
+-120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0
+67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0
+-110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0
+76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0
+-100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0
+86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0
+-86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0
+96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0
+-76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0
+105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0
+-67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0
+115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0
+-57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0
+129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0
+-48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0
+139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0
+-38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0
+148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0
+-28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0
+153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0
+-19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0
+163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0
+172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0
+-0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0
+4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0
+-168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0
+14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0
+24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0
+-153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0
+33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0
+-144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0
+43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0
+-134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0
+52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0
+-124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0
+62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0
+-110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0
+72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0
+-100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0
+81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0
+-91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0
+96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0
+-81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0
+105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0
+-72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0
+115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0
+-57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0
+124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0
+-48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0
+134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0
+-38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0
+144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0
+-28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0
+153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0
+-24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0
+163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0
+-14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0
+172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,12.01,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0
+9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0
+-158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0
+28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0
+-148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0
+38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0
+-139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0
+48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0
+-129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0
+57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0
+-120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0
+67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0
+-110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0
+76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0
+-100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0
+86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0
+-86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0
+96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0
+-76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0
+105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0
+-67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0
+115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0
+-57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0
+124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0
+-48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0
+134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0
+-38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0
+144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0
+-28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0
+153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0
+-19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0
+163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0
+-9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0
+172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0
+4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0
+14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0
+-158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0
+24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0
+-148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0
+33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0
+-139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0
+43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0
+-129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0
+52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0
+-120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0
+62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0
+-110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0
+72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0
+-100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0
+81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0
+-91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0
+96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0
+-81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0
+105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0
+-72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0
+115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0
+-62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0
+124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0
+-52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0
+134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0
+-43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0
+144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0
+-33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0
+153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0
+-24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0
+163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0
+172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0
+0.00,0.00,4.81,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0
+9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0
+19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0
+28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0
+-148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0
+38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0
+-139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0
+48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0
+-129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0
+57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0
+-120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0
+67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0
+-110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0
+76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0
+-100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0
+86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0
+-86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0
+96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0
+-76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0
+105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0
+-67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0
+115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0
+-57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0
+124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0
+-48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0
+134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0
+-38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0
+144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0
+-28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0
+153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0
+-19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0
+163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0
+-9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0
+172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0
+4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0
+-168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0
+14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0
+24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0
+-148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0
+33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0
+-139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0
+43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0
+-129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0
+52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0
+-120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0
+62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0
+-110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0
+72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0
+-100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0
+81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0
+-91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0
+96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0
+-81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0
+105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0
+-72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0
+115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0
+-62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0
+124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0
+-52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0
+134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0
+-43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0
+144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0
+-33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0
+153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0
+-24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0
+163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0
+172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+0.00,0.00,10.40,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0
+9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0
+-168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0
+19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0
+-158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0
+28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0
+-148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0
+38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0
+-139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0
+48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0
+-129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0
+57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0
+-120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0
+67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0
+-110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0
+76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0
+-100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0
+86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0
+-86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0
+96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0
+-76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0
+105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0
+-67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0
+115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0
+-57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0
+124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0
+-48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0
+134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0
+-38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0
+144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0
+-28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0
+153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0
+163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0
+-9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0
+172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0
+4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0
+14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0
+-158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0
+24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0
+33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0
+-139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0
+43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0
+-129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0
+52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0
+-120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0
+62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0
+-110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0
+72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0
+-100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0
+81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0
+-91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0
+96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0
+-81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0
+105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0
+-72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0
+115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0
+-62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0
+124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0
+-52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0
+134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0
+-43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0
+144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0
+-33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0
+153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0
+-24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0
+163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0
+-14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0
+172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,6.41,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0
+9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0
+19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0
+-158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0
+28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0
+-148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0
+38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0
+-139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0
+48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0
+-129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0
+57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0
+-120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0
+67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0
+-110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0
+76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0
+-100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0
+86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0
+-86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0
+96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0
+-76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0
+105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0
+-67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0
+115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0
+-57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0
+124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0
+-48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0
+134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0
+-38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0
+144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0
+-28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0
+153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0
+-19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0
+163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0
+172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0
+-0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0
+4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0
+-168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0
+14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0
+-158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0
+24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0
+-148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0
+33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0
+-139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0
+43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0
+-129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0
+52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0
+-120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0
+62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0
+-110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0
+72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0
+-100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0
+81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0
+-91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0
+96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0
+-81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0
+105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0
+-72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0
+115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0
+-62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0
+124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0
+-52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0
+134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0
+-43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0
+144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0
+-33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0
+153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0
+-24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0
+163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0
+-14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0
+172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.80,0.00,1.00,0.00,0.00,0
+-177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0
+9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0
+-168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0
+19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0
+-158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0
+28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0
+-148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0
+38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0
+-139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0
+48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0
+-129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0
+57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0
+-120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0
+67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0
+-110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0
+76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0
+-100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0
+86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0
+-86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0
+96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0
+-76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0
+105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0
+-67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0
+115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0
+-57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0
+124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0
+-48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0
+134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0
+-38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0
+144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0
+-28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0
+153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0
+-19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0
+163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0
+-9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0
+172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0
+-0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0
+4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0
+-168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0
+14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0
+-158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0
+24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0
+-148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0
+33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0
+-139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0
+43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0
+-129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0
+52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0
+-120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0
+62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0
+-110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0
+72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0
+-100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0
+81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0
+-91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0
+96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0
+-81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0
+105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0
+-72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0
+115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0
+-62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0
+124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0
+-52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0
+134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0
+-43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0
+144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0
+-33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0
+153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0
+-24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0
+163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0
+-14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0
+172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0
+-4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,8.01,0.00,1.00,0.00,0.00,0
+-177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0
+-168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0
+19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0
+-158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0
+28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0
+-148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0
+38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0
+-139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0
+48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0
+-129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0
+57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0
+-120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0
+67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0
+-110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0
+76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0
+-100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0
+86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0
+-86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0
+96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0
+-76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0
+105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0
+-67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0
+115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0
+-57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0
+124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0
+-48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0
+134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0
+-38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0
+144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0
+-28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0
+153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0
+-19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0
+163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0
+172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0
+14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0
+-158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0
+24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0
+-148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0
+33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0
+-139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0
+43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0
+-129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0
+52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0
+-120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0
+62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0
+-110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0
+72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0
+-100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0
+81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0
+-91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0
+96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0
+-81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0
+105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0
+-72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0
+115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0
+-62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0
+124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0
+-52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0
+134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0
+-43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0
+144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0
+-33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0
+153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0
+-24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0
+163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0
+-4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0
+0.00,0.00,7.20,0.00,1.00,0.00,0.00,0
+-177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0
+-168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0
+19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0
+38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0
+-139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0
+48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0
+-129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0
+57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0
+-120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0
+67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0
+-110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0
+76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0
+-100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0
+86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0
+-86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0
+96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0
+-76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0
+105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0
+-67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0
+115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0
+-57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0
+124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0
+-48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0
+134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0
+-38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0
+144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0
+-19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0
+163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0
+-9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0
+-168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0
+14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0
+-148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0
+33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0
+-139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0
+43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0
+-129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0
+52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0
+-120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0
+62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0
+72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0
+-100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0
+81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0
+-91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0
+96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0
+-81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0
+105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0
+-72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0
+115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0
+-62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0
+124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0
+-52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0
+134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0
+-43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0
+144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0
+-33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0
+153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0
+-14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0
+172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0
+0.00,0.00,9.61,0.00,1.00,0.00,0.00,0
+-177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0
+9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0
+-158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0
+28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0
+-148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0
+48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0
+-129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0
+57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0
+-120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0
+67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0
+-110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0
+76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0
+-100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0
+86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0
+-86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0
+96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0
+-76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0
+105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0
+-67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0
+115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0
+-57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0
+124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0
+-48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0
+134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0
+-28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0
+153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0
+163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0
+-9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0
+-158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0
+24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0
+-148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0
+33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0
+-139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0
+43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0
+-129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0
+52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0
+-120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0
+62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0
+-110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0
+72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0
+-100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0
+81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0
+-91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0
+96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0
+-81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0
+105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0
+-72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0
+115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0
+-62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0
+124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0
+-52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0
+134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0
+-43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0
+144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0
+-33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0
+153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0
+-14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0
+172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0
+0.00,0.00,5.60,0.00,1.00,0.00,0.00,0
+-177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0
+-158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0
+28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0
+-148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0
+38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0
+-139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0
+48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0
+-129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0
+57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0
+-120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0
+67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0
+-110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0
+76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0
+-100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0
+86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0
+-86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0
+96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0
+-76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0
+105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0
+-67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0
+115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0
+-57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0
+124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0
+-48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0
+134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0
+-38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0
+144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0
+-28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0
+153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0
+-19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0
+172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0
+4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0
+-158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0
+-148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0
+33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0
+-139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0
+43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0
+-129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0
+52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0
+-120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0
+62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0
+-110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0
+72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0
+-100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0
+81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0
+-91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0
+96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0
+-81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0
+105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0
+-72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0
+115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0
+-62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0
+124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0
+-52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0
+134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0
+-43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0
+144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0
+-33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0
+153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0
+-24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0
+163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0
+0.00,0.00,11.21,0.00,1.00,0.00,0.00,0
+-177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0
+19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0
+28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0
+-148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0
+38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0
+-139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0
+48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0
+57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0
+-120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0
+67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0
+-110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0
+76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0
+-100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0
+86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0
+-86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0
+96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0
+-76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0
+105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0
+-67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0
+115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0
+-57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0
+124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0
+-48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0
+134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0
+-38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0
+144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0
+-28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0
+153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0
+163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0
+14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0
+-148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0
+-139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0
+43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0
+-129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0
+52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0
+-120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0
+62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0
+-110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0
+72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0
+-100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0
+81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0
+-91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0
+96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0
+-81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0
+105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0
+-72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0
+115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0
+-62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0
+124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0
+-52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0
+134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0
+-43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0
+-33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0
+153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0
+-24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0
+163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0
+0.00,0.00,3.99,0.00,1.00,0.00,0.00,0
+-177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0
+-168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0
+19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0
+-158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0
+-148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0
+33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0
+43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0
+-129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0
+52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0
+-120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0
+62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0
+-110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0
+76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0
+-100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0
+86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0
+-86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0
+96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0
+-76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0
+105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0
+-67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0
+120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0
+-57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0
+-48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0
+139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0
+148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0
+158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0
+163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0
+-158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0
+24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0
+33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0
+43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0
+-134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0
+-124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0
+62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0
+-110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0
+72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0
+-100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0
+81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0
+-91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0
+96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0
+-81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0
+105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0
+-72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0
+115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0
+-57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0
+124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0
+-48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0
+134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0
+-38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0
+144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0
+-28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0
+-24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0
+-14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0
+-4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0
+0.00,0.00,12.82,0.00,1.00,0.00,0.00,0
+-177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0
+-148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0
+33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0
+-139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0
+-129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0
+-120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0
+62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0
+-110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0
+76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0
+-100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0
+86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0
+-86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0
+96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0
+-76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0
+110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0
+-67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0
+120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0
+-57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0
+129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0
+-48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0
+-38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0
+-28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0
+-19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0
+-163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0
+-153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0
+33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0
+-144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0
+43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0
+-134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0
+52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0
+62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0
+-115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0
+72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0
+-100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0
+81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0
+-91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0
+96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0
+-81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0
+105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0
+-67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0
+115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0
+-57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0
+124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0
+-48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0
+134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0
+-38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0
+144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0
+153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0
+-14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0
+0.00,0.00,2.39,0.00,1.00,0.00,0.00,0
+-177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0
+14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0
+-158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0
+24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0
+33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0
+-144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0
+43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0
+-134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0
+52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0
+62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0
+-110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0
+72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0
+-100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0
+86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0
+-86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0
+96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0
+-76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0
+110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0
+-67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0
+120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0
+-52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0
+129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0
+139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0
+148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0
+158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0
+-19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0
+-9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0
+-168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0
+24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0
+28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0
+-144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0
+38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0
+-134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0
+48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0
+-124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0
+57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0
+-115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0
+72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0
+-105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0
+81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0
+-91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0
+96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0
+-81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0
+105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0
+-67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0
+120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0
+-57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0
+129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0
+-48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0
+139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0
+-38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0
+158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0
+163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0
+0.00,0.00,14.42,0.00,1.00,0.00,0.00,0
+-177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0
+9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0
+-163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0
+24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0
+-153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0
+28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0
+-144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0
+38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0
+-134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0
+48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0
+-124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0
+62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0
+-115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0
+72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0
+86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0
+-86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0
+96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0
+-76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0
+110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0
+-62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0
+120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0
+-52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0
+134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0
+-43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0
+-33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0
+-24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0
+158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0
+168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0
+14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0
+-153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0
+-148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0
+38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0
+-139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0
+48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0
+-129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0
+-115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0
+67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0
+-105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0
+81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0
+-91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0
+96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0
+105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0
+-67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0
+120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0
+-52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0
+129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0
+139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0
+148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0
+-28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0
+-19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0
+163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0
+0.00,0.00,0.79,0.00,1.00,0.00,0.00,0
+-177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0
+4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0
+-168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0
+14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0
+-163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0
+19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0
+-153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0
+28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0
+-148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0
+38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0
+-139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0
+48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0
+-124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0
+57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0
+-115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0
+72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0
+-100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0
+86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0
+-86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0
+100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0
+-76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0
+110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0
+-62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0
+124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0
+-48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0
+134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0
+-38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0
+144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0
+-28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0
+153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0
+-24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0
+163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0
+-14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0
+168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0
+-9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0
+172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0
+-0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0
+4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0
+-172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0
+9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0
+-163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0
+19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0
+-158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0
+28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0
+-148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0
+33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0
+-139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0
+43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0
+-129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0
+57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0
+-120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0
+67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0
+-105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0
+81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0
+-91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0
+96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0
+-76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0
+110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0
+-67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0
+120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0
+-52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0
+134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0
+-43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0
+144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0
+-33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0
+153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0
+-24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0
+158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0
+-19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0
+168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0
+-9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0
+172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0
+-4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0
diff --git a/scripts/testv/stvOMASA_4ISM_2MASA2TC48c_ISM4.csv b/scripts/testv/stvOMASA_4ISM_2MASA2TC48c_ISM4.csv
new file mode 100644
index 0000000000000000000000000000000000000000..8a14c3413ddd2dd47415bf6de3e19631f65f8f6c
--- /dev/null
+++ b/scripts/testv/stvOMASA_4ISM_2MASA2TC48c_ISM4.csv
@@ -0,0 +1,1500 @@
+-0.00,0.00,0.00,0.00,1.00,0.00,4.80,0
+-0.00,4.80,0.06,0.00,1.00,4.80,9.60,0
+-0.00,9.60,0.13,0.00,1.00,9.60,14.40,0
+-0.00,14.40,0.19,0.00,1.00,14.40,19.20,0
+-0.00,19.20,0.26,0.00,1.00,19.20,24.00,0
+-0.00,24.00,0.32,0.00,1.00,24.00,28.80,0
+-0.00,28.80,0.39,0.00,1.00,28.80,33.60,0
+-0.00,33.60,0.45,0.00,1.00,33.60,38.40,0
+-0.00,38.40,0.51,0.00,1.00,38.40,43.20,0
+-0.00,43.20,0.58,0.00,1.00,43.20,48.00,0
+-0.00,48.00,0.64,0.00,1.00,48.00,52.80,0
+-0.00,52.80,0.71,0.00,1.00,52.80,57.60,0
+-0.00,57.60,0.77,0.00,1.00,57.60,62.40,0
+-0.00,62.40,0.84,0.00,1.00,62.40,67.20,0
+-0.00,67.20,0.90,0.00,1.00,67.20,72.00,0
+-0.00,72.00,0.96,0.00,1.00,72.00,76.80,0
+-0.00,76.80,1.03,0.00,1.00,76.80,81.60,0
+-0.00,81.60,1.09,0.00,1.00,81.60,86.40,0
+-0.00,86.40,1.16,0.00,1.00,86.40,86.40,0
+-177.60,89.20,1.22,0.00,1.00,91.20,81.60,0
+-177.60,86.40,1.29,0.00,1.00,96.00,76.80,0
+-177.60,81.60,1.35,0.00,1.00,100.80,72.00,0
+-177.60,76.80,1.41,0.00,1.00,105.60,67.20,0
+-177.60,72.00,1.48,0.00,1.00,110.40,62.40,0
+-177.60,67.20,1.54,0.00,1.00,115.20,57.60,0
+177.60,62.40,1.61,0.00,1.00,120.00,52.80,0
+177.60,57.60,1.67,0.00,1.00,124.80,48.00,0
+177.60,52.80,1.73,0.00,1.00,129.60,43.20,0
+177.60,48.00,1.80,0.00,1.00,134.40,38.40,0
+177.60,43.20,1.86,0.00,1.00,139.20,33.60,0
+177.60,38.40,1.93,0.00,1.00,144.00,28.80,0
+177.60,33.60,1.99,0.00,1.00,148.80,24.00,0
+177.60,28.80,2.06,0.00,1.00,153.60,19.20,0
+177.60,24.00,2.12,0.00,1.00,158.40,14.40,0
+177.60,19.20,2.18,0.00,1.00,163.20,9.60,0
+177.60,14.40,2.25,0.00,1.00,168.00,4.80,0
+177.60,9.60,2.31,0.00,1.00,172.80,0.00,0
+177.60,4.80,2.38,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,2.44,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,2.51,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,2.57,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,2.63,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,2.70,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,2.76,0.00,1.00,-153.60,-28.80,0
+-177.60,-28.80,2.83,0.00,1.00,-148.80,-33.60,0
+-177.60,-33.60,2.89,0.00,1.00,-144.00,-38.40,0
+-177.60,-38.40,2.96,0.00,1.00,-139.20,-43.20,0
+-177.60,-48.00,3.02,0.00,1.00,-134.40,-48.00,0
+-177.60,-48.00,3.08,0.00,1.00,-129.60,-52.80,0
+-177.60,-52.80,3.15,0.00,1.00,-124.80,-57.60,0
+-177.60,-57.60,3.21,0.00,1.00,-120.00,-62.40,0
+177.60,-62.40,3.28,0.00,1.00,-115.20,-67.20,0
+177.60,-67.20,3.34,0.00,1.00,-110.40,-72.00,0
+177.60,-76.80,3.41,0.00,1.00,-105.60,-76.80,0
+177.60,-76.80,3.47,0.00,1.00,-100.80,-81.60,0
+177.60,-86.40,3.53,0.00,1.00,-96.00,-86.40,0
+177.60,-89.20,3.60,0.00,1.00,-91.20,-86.40,0
+0.00,-86.40,3.66,0.00,1.00,-86.40,-81.60,0
+0.00,-81.60,3.73,0.00,1.00,-81.60,-76.80,0
+0.00,-76.80,3.79,0.00,1.00,-76.80,-72.00,0
+0.00,-72.00,3.86,0.00,1.00,-72.00,-67.20,0
+0.00,-67.20,3.92,0.00,1.00,-67.20,-62.40,0
+0.00,-62.40,3.98,0.00,1.00,-62.40,-57.60,0
+0.00,-57.60,4.05,0.00,1.00,-57.60,-52.80,0
+0.00,-52.80,4.11,0.00,1.00,-52.80,-48.00,0
+0.00,-48.00,4.18,0.00,1.00,-48.00,-43.20,0
+0.00,-43.20,4.24,0.00,1.00,-43.20,-38.40,0
+0.00,-38.40,4.31,0.00,1.00,-38.40,-33.60,0
+0.00,-33.60,4.37,0.00,1.00,-33.60,-28.80,0
+0.00,-28.80,4.43,0.00,1.00,-28.80,-24.00,0
+0.00,-24.00,4.50,0.00,1.00,-24.00,-19.20,0
+0.00,-19.20,4.56,0.00,1.00,-19.20,-14.40,0
+0.00,-14.40,4.63,0.00,1.00,-14.40,-9.60,0
+0.00,-9.60,4.69,0.00,1.00,-9.60,-4.80,0
+0.00,-4.80,4.76,0.00,1.00,-4.80,0.00,0
+0.00,0.00,4.82,0.00,1.00,0.00,4.80,0
+0.00,4.80,4.88,0.00,1.00,4.80,9.60,0
+0.00,9.60,4.95,0.00,1.00,9.60,14.40,0
+0.00,14.40,5.01,0.00,1.00,14.40,19.20,0
+0.00,19.20,5.08,0.00,1.00,19.20,24.00,0
+0.00,24.00,5.14,0.00,1.00,24.00,28.80,0
+4.80,28.80,5.20,0.00,1.00,28.80,33.60,0
+4.80,33.60,5.27,0.00,1.00,33.60,38.40,0
+4.80,38.40,5.33,0.00,1.00,38.40,43.20,0
+4.80,43.20,5.40,0.00,1.00,43.20,48.00,0
+4.80,48.00,5.46,0.00,1.00,48.00,52.80,0
+4.80,52.80,5.53,0.00,1.00,52.80,57.60,0
+9.60,57.60,5.59,0.00,1.00,57.60,62.40,0
+9.60,62.40,5.65,0.00,1.00,62.40,67.20,0
+9.60,67.20,5.72,0.00,1.00,67.20,72.00,0
+14.40,72.00,5.78,0.00,1.00,72.00,76.80,0
+19.20,76.80,5.85,0.00,1.00,76.80,81.60,0
+28.80,81.60,5.91,0.00,1.00,81.60,86.40,0
+52.80,86.40,5.98,0.00,1.00,86.40,86.40,0
+105.60,86.40,6.04,0.00,1.00,91.20,81.60,0
+139.20,81.60,6.10,0.00,1.00,96.00,76.80,0
+158.40,76.80,6.17,0.00,1.00,100.80,72.00,0
+163.20,72.00,6.23,0.00,1.00,105.60,67.20,0
+168.00,67.20,6.30,0.00,1.00,110.40,62.40,0
+168.00,62.40,6.36,0.00,1.00,115.20,57.60,0
+172.80,57.60,6.43,0.00,1.00,120.00,52.80,0
+172.80,52.80,6.49,0.00,1.00,124.80,48.00,0
+172.80,48.00,6.55,0.00,1.00,129.60,43.20,0
+172.80,43.20,6.62,0.00,1.00,134.40,38.40,0
+177.60,38.40,6.68,0.00,1.00,139.20,33.60,0
+177.60,33.60,6.75,0.00,1.00,144.00,28.80,0
+177.60,28.80,6.81,0.00,1.00,148.80,24.00,0
+177.60,24.00,6.88,0.00,1.00,153.60,19.20,0
+177.60,19.20,6.94,0.00,1.00,158.40,14.40,0
+177.60,14.40,7.00,0.00,1.00,163.20,9.60,0
+177.60,9.60,7.07,0.00,1.00,168.00,4.80,0
+177.60,4.80,7.13,0.00,1.00,172.80,0.00,0
+177.60,0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,7.26,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,7.33,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,7.39,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,7.45,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,7.52,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,7.58,0.00,1.00,-153.60,-28.80,0
+-177.60,-28.80,7.65,0.00,1.00,-148.80,-33.60,0
+-177.60,-33.60,7.71,0.00,1.00,-144.00,-38.40,0
+-177.60,-38.40,7.78,0.00,1.00,-139.20,-43.20,0
+-172.80,-43.20,7.84,0.00,1.00,-134.40,-48.00,0
+-172.80,-48.00,7.90,0.00,1.00,-129.60,-52.80,0
+-172.80,-52.80,7.97,0.00,1.00,-124.80,-57.60,0
+-172.80,-57.60,8.03,0.00,1.00,-120.00,-62.40,0
+-168.00,-62.40,8.10,0.00,1.00,-115.20,-67.20,0
+-168.00,-67.20,8.16,0.00,1.00,-110.40,-72.00,0
+-163.20,-72.00,8.22,0.00,1.00,-105.60,-76.80,0
+-158.40,-76.80,8.29,0.00,1.00,-100.80,-81.60,0
+-139.20,-81.60,8.35,0.00,1.00,-96.00,-86.40,0
+-105.60,-86.40,8.42,0.00,1.00,-91.20,-86.40,0
+-52.80,-86.40,8.48,0.00,1.00,-86.40,-81.60,0
+-28.80,-81.60,8.55,0.00,1.00,-81.60,-76.80,0
+-19.20,-76.80,8.61,0.00,1.00,-76.80,-72.00,0
+-14.40,-72.00,8.67,0.00,1.00,-72.00,-67.20,0
+-9.60,-67.20,8.74,0.00,1.00,-67.20,-62.40,0
+-9.60,-62.40,8.80,0.00,1.00,-62.40,-57.60,0
+-9.60,-57.60,8.87,0.00,1.00,-57.60,-52.80,0
+-4.80,-52.80,8.93,0.00,1.00,-52.80,-48.00,0
+-4.80,-48.00,9.00,0.00,1.00,-48.00,-43.20,0
+-4.80,-43.20,9.06,0.00,1.00,-43.20,-38.40,0
+-4.80,-38.40,9.12,0.00,1.00,-38.40,-33.60,0
+-4.80,-33.60,9.19,0.00,1.00,-33.60,-28.80,0
+-4.80,-28.80,9.25,0.00,1.00,-28.80,-24.00,0
+-0.00,-24.00,9.32,0.00,1.00,-24.00,-19.20,0
+-0.00,-19.20,9.38,0.00,1.00,-19.20,-14.40,0
+-0.00,-14.40,9.45,0.00,1.00,-14.40,-9.60,0
+-0.00,-9.60,9.51,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,9.57,0.00,1.00,-4.80,0.00,0
+0.00,0.00,9.64,0.00,1.00,0.00,4.80,0
+0.00,4.80,9.70,0.00,1.00,4.80,9.60,0
+0.00,9.60,9.77,0.00,1.00,9.60,14.40,0
+4.80,14.40,9.83,0.00,1.00,14.40,19.20,0
+4.80,19.20,9.90,0.00,1.00,19.20,24.00,0
+4.80,24.00,9.96,0.00,1.00,24.00,28.80,0
+4.80,28.80,10.02,0.00,1.00,28.80,33.60,0
+4.80,33.60,10.09,0.00,1.00,33.60,38.40,0
+9.60,38.40,10.15,0.00,1.00,38.40,43.20,0
+9.60,43.20,10.22,0.00,1.00,43.20,48.00,0
+9.60,48.00,10.28,0.00,1.00,48.00,52.80,0
+14.40,52.80,10.35,0.00,1.00,52.80,57.60,0
+14.40,57.60,10.41,0.00,1.00,57.60,62.40,0
+19.20,62.40,10.47,0.00,1.00,62.40,67.20,0
+24.00,67.20,10.54,0.00,1.00,67.20,72.00,0
+28.80,72.00,10.60,0.00,1.00,72.00,72.00,0
+33.60,72.00,10.67,0.00,1.00,76.80,76.80,0
+48.00,76.80,10.73,0.00,1.00,81.60,81.60,0
+67.20,81.60,10.80,0.00,1.00,86.40,81.60,0
+96.00,81.60,10.86,0.00,1.00,91.20,81.60,0
+120.00,76.80,10.92,0.00,1.00,96.00,76.80,0
+139.20,76.80,10.99,0.00,1.00,100.80,72.00,0
+148.80,72.00,11.05,0.00,1.00,105.60,67.20,0
+153.60,67.20,11.12,0.00,1.00,110.40,62.40,0
+158.40,62.40,11.18,0.00,1.00,115.20,57.60,0
+163.20,57.60,11.24,0.00,1.00,120.00,52.80,0
+168.00,52.80,11.31,0.00,1.00,124.80,48.00,0
+168.00,48.00,11.37,0.00,1.00,129.60,43.20,0
+168.00,43.20,11.44,0.00,1.00,134.40,38.40,0
+172.80,38.40,11.50,0.00,1.00,139.20,33.60,0
+172.80,33.60,11.57,0.00,1.00,144.00,28.80,0
+172.80,28.80,11.63,0.00,1.00,148.80,24.00,0
+177.60,24.00,11.69,0.00,1.00,153.60,19.20,0
+177.60,19.20,11.76,0.00,1.00,158.40,14.40,0
+177.60,14.40,11.82,0.00,1.00,163.20,9.60,0
+177.60,9.60,11.89,0.00,1.00,168.00,4.80,0
+177.60,4.80,11.95,0.00,1.00,172.80,0.00,0
+177.60,0.00,12.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,12.08,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,12.14,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,12.21,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,12.27,0.00,1.00,-163.20,-19.20,0
+-177.60,-19.20,12.34,0.00,1.00,-158.40,-24.00,0
+-177.60,-24.00,12.40,0.00,1.00,-153.60,-28.80,0
+-172.80,-28.80,12.47,0.00,1.00,-148.80,-33.60,0
+-172.80,-33.60,12.53,0.00,1.00,-144.00,-38.40,0
+-172.80,-38.40,12.59,0.00,1.00,-139.20,-43.20,0
+-168.00,-43.20,12.66,0.00,1.00,-134.40,-48.00,0
+-168.00,-48.00,12.72,0.00,1.00,-129.60,-52.80,0
+-168.00,-52.80,12.79,0.00,1.00,-124.80,-57.60,0
+-163.20,-57.60,12.85,0.00,1.00,-120.00,-62.40,0
+-158.40,-62.40,12.92,0.00,1.00,-115.20,-67.20,0
+-153.60,-67.20,12.98,0.00,1.00,-110.40,-72.00,0
+-148.80,-72.00,13.04,0.00,1.00,-105.60,-76.80,0
+-139.20,-76.80,13.11,0.00,1.00,-100.80,-81.60,0
+-120.00,-76.80,13.17,0.00,1.00,-96.00,-81.60,0
+-96.00,-81.60,13.24,0.00,1.00,-91.20,-81.60,0
+-67.20,-81.60,13.30,0.00,1.00,-86.40,-76.80,0
+-48.00,-76.80,13.37,0.00,1.00,-81.60,-72.00,0
+-33.60,-72.00,13.43,0.00,1.00,-76.80,-72.00,0
+-28.80,-72.00,13.49,0.00,1.00,-72.00,-67.20,0
+-24.00,-67.20,13.56,0.00,1.00,-67.20,-62.40,0
+-19.20,-62.40,13.62,0.00,1.00,-62.40,-57.60,0
+-14.40,-57.60,13.69,0.00,1.00,-57.60,-52.80,0
+-14.40,-52.80,13.75,0.00,1.00,-52.80,-48.00,0
+-9.60,-48.00,13.82,0.00,1.00,-48.00,-43.20,0
+-9.60,-43.20,13.88,0.00,1.00,-43.20,-38.40,0
+-9.60,-38.40,13.94,0.00,1.00,-38.40,-33.60,0
+-4.80,-33.60,14.01,0.00,1.00,-33.60,-28.80,0
+-4.80,-28.80,14.07,0.00,1.00,-28.80,-24.00,0
+-4.80,-24.00,14.14,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,14.20,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,14.27,0.00,1.00,-14.40,-9.60,0
+-0.00,-9.60,14.33,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,14.39,0.00,1.00,-4.80,0.00,0
+0.00,0.00,14.46,0.00,1.00,0.00,4.80,0
+0.00,4.80,14.52,0.00,1.00,4.80,9.60,0
+4.80,9.60,14.59,0.00,1.00,9.60,14.40,0
+4.80,14.40,14.65,0.00,1.00,14.40,19.20,0
+4.80,19.20,14.71,0.00,1.00,19.20,24.00,0
+4.80,24.00,14.78,0.00,1.00,24.00,28.80,0
+9.60,28.80,14.84,0.00,1.00,28.80,33.60,0
+9.60,33.60,14.91,0.00,1.00,33.60,38.40,0
+9.60,38.40,14.97,0.00,1.00,38.40,43.20,0
+14.40,43.20,15.04,0.00,1.00,43.20,48.00,0
+14.40,48.00,15.10,0.00,1.00,48.00,52.80,0
+19.20,52.80,15.16,0.00,1.00,52.80,57.60,0
+19.20,52.80,15.23,0.00,1.00,57.60,57.60,0
+24.00,57.60,15.29,0.00,1.00,62.40,62.40,0
+28.80,62.40,15.36,0.00,1.00,67.20,67.20,0
+38.40,67.20,15.42,0.00,1.00,72.00,72.00,0
+48.00,72.00,15.49,0.00,1.00,76.80,72.00,0
+57.60,72.00,15.55,0.00,1.00,81.60,76.80,0
+76.80,76.80,15.61,0.00,1.00,86.40,76.80,0
+96.00,76.80,15.68,0.00,1.00,91.20,76.80,0
+115.20,76.80,15.74,0.00,1.00,96.00,72.00,0
+129.60,72.00,15.81,0.00,1.00,100.80,72.00,0
+139.20,67.20,15.87,0.00,1.00,105.60,67.20,0
+144.00,67.20,15.94,0.00,1.00,110.40,62.40,0
+153.60,62.40,16.00,0.00,1.00,115.20,57.60,0
+158.40,57.60,16.00,0.00,1.00,120.00,52.80,0
+158.40,52.80,15.94,0.00,1.00,124.80,48.00,0
+163.20,48.00,15.87,0.00,1.00,129.60,43.20,0
+168.00,43.20,15.81,0.00,1.00,134.40,38.40,0
+168.00,38.40,15.74,0.00,1.00,139.20,33.60,0
+168.00,33.60,15.68,0.00,1.00,144.00,28.80,0
+172.80,28.80,15.61,0.00,1.00,148.80,24.00,0
+172.80,24.00,15.55,0.00,1.00,153.60,19.20,0
+172.80,19.20,15.49,0.00,1.00,158.40,14.40,0
+177.60,14.40,15.42,0.00,1.00,163.20,9.60,0
+177.60,9.60,15.36,0.00,1.00,168.00,4.80,0
+177.60,4.80,15.29,0.00,1.00,172.80,0.00,0
+177.60,0.00,15.23,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,15.16,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,15.10,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,15.04,0.00,1.00,-168.00,-14.40,0
+-177.60,-14.40,14.97,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,14.91,0.00,1.00,-158.40,-24.00,0
+-172.80,-24.00,14.84,0.00,1.00,-153.60,-28.80,0
+-172.80,-28.80,14.78,0.00,1.00,-148.80,-33.60,0
+-168.00,-33.60,14.71,0.00,1.00,-144.00,-38.40,0
+-168.00,-38.40,14.65,0.00,1.00,-139.20,-43.20,0
+-168.00,-43.20,14.59,0.00,1.00,-134.40,-48.00,0
+-163.20,-48.00,14.52,0.00,1.00,-129.60,-52.80,0
+-158.40,-52.80,14.46,0.00,1.00,-124.80,-57.60,0
+-158.40,-57.60,14.39,0.00,1.00,-120.00,-62.40,0
+-153.60,-62.40,14.33,0.00,1.00,-115.20,-67.20,0
+-144.00,-67.20,14.27,0.00,1.00,-110.40,-72.00,0
+-139.20,-67.20,14.20,0.00,1.00,-105.60,-72.00,0
+-129.60,-72.00,14.14,0.00,1.00,-100.80,-76.80,0
+-115.20,-76.80,14.07,0.00,1.00,-96.00,-76.80,0
+-96.00,-76.80,14.01,0.00,1.00,-91.20,-76.80,0
+-76.80,-76.80,13.94,0.00,1.00,-86.40,-72.00,0
+-57.60,-72.00,13.88,0.00,1.00,-81.60,-72.00,0
+-48.00,-72.00,13.82,0.00,1.00,-76.80,-67.20,0
+-38.40,-67.20,13.75,0.00,1.00,-72.00,-62.40,0
+-28.80,-62.40,13.69,0.00,1.00,-67.20,-57.60,0
+-24.00,-57.60,13.62,0.00,1.00,-62.40,-57.60,0
+-19.20,-52.80,13.56,0.00,1.00,-57.60,-52.80,0
+-19.20,-52.80,13.49,0.00,1.00,-52.80,-48.00,0
+-14.40,-48.00,13.43,0.00,1.00,-48.00,-43.20,0
+-14.40,-43.20,13.37,0.00,1.00,-43.20,-38.40,0
+-9.60,-38.40,13.30,0.00,1.00,-38.40,-33.60,0
+-9.60,-33.60,13.24,0.00,1.00,-33.60,-28.80,0
+-9.60,-28.80,13.17,0.00,1.00,-28.80,-24.00,0
+-4.80,-24.00,13.11,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,13.04,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,12.98,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,12.92,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,12.85,0.00,1.00,-4.80,0.00,0
+0.00,0.00,12.79,0.00,1.00,0.00,4.80,0
+0.00,4.80,12.72,0.00,1.00,4.80,9.60,0
+4.80,9.60,12.66,0.00,1.00,9.60,14.40,0
+4.80,14.40,12.59,0.00,1.00,14.40,19.20,0
+4.80,19.20,12.53,0.00,1.00,19.20,24.00,0
+9.60,24.00,12.47,0.00,1.00,24.00,28.80,0
+9.60,28.80,12.40,0.00,1.00,28.80,33.60,0
+14.40,33.60,12.34,0.00,1.00,33.60,38.40,0
+14.40,33.60,12.27,0.00,1.00,38.40,38.40,0
+19.20,38.40,12.21,0.00,1.00,43.20,43.20,0
+19.20,43.20,12.14,0.00,1.00,48.00,48.00,0
+24.00,48.00,12.08,0.00,1.00,52.80,52.80,0
+28.80,52.80,12.02,0.00,1.00,57.60,57.60,0
+33.60,57.60,11.95,0.00,1.00,62.40,62.40,0
+38.40,62.40,11.89,0.00,1.00,67.20,62.40,0
+43.20,62.40,11.82,0.00,1.00,72.00,67.20,0
+52.80,67.20,11.76,0.00,1.00,76.80,72.00,0
+67.20,67.20,11.69,0.00,1.00,81.60,72.00,0
+76.80,72.00,11.63,0.00,1.00,86.40,72.00,0
+96.00,72.00,11.57,0.00,1.00,91.20,72.00,0
+105.60,72.00,11.50,0.00,1.00,96.00,67.20,0
+120.00,67.20,11.44,0.00,1.00,100.80,67.20,0
+129.60,67.20,11.37,0.00,1.00,105.60,62.40,0
+139.20,62.40,11.31,0.00,1.00,110.40,57.60,0
+144.00,57.60,11.24,0.00,1.00,115.20,57.60,0
+148.80,52.80,11.18,0.00,1.00,120.00,52.80,0
+153.60,52.80,11.12,0.00,1.00,124.80,48.00,0
+158.40,48.00,11.05,0.00,1.00,129.60,43.20,0
+163.20,43.20,10.99,0.00,1.00,134.40,38.40,0
+163.20,38.40,10.92,0.00,1.00,139.20,33.60,0
+168.00,33.60,10.86,0.00,1.00,144.00,28.80,0
+168.00,28.80,10.80,0.00,1.00,148.80,24.00,0
+172.80,24.00,10.73,0.00,1.00,153.60,19.20,0
+172.80,19.20,10.67,0.00,1.00,158.40,14.40,0
+172.80,14.40,10.60,0.00,1.00,163.20,9.60,0
+177.60,9.60,10.54,0.00,1.00,168.00,4.80,0
+177.60,4.80,10.47,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.41,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.35,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,10.28,0.00,1.00,-172.80,-9.60,0
+-177.60,-9.60,10.22,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,10.15,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,10.09,0.00,1.00,-158.40,-24.00,0
+-172.80,-24.00,10.02,0.00,1.00,-153.60,-28.80,0
+-168.00,-28.80,9.96,0.00,1.00,-148.80,-33.60,0
+-168.00,-33.60,9.90,0.00,1.00,-144.00,-38.40,0
+-163.20,-38.40,9.83,0.00,1.00,-139.20,-43.20,0
+-163.20,-43.20,9.77,0.00,1.00,-134.40,-48.00,0
+-158.40,-48.00,9.70,0.00,1.00,-129.60,-52.80,0
+-153.60,-52.80,9.64,0.00,1.00,-124.80,-57.60,0
+-148.80,-52.80,9.57,0.00,1.00,-120.00,-57.60,0
+-144.00,-57.60,9.51,0.00,1.00,-115.20,-62.40,0
+-139.20,-62.40,9.45,0.00,1.00,-110.40,-67.20,0
+-129.60,-67.20,9.38,0.00,1.00,-105.60,-67.20,0
+-120.00,-67.20,9.32,0.00,1.00,-100.80,-72.00,0
+-105.60,-72.00,9.25,0.00,1.00,-96.00,-72.00,0
+-96.00,-72.00,9.19,0.00,1.00,-91.20,-72.00,0
+-76.80,-72.00,9.12,0.00,1.00,-86.40,-72.00,0
+-67.20,-67.20,9.06,0.00,1.00,-81.60,-67.20,0
+-52.80,-67.20,9.00,0.00,1.00,-76.80,-62.40,0
+-43.20,-62.40,8.93,0.00,1.00,-72.00,-62.40,0
+-38.40,-62.40,8.87,0.00,1.00,-67.20,-57.60,0
+-33.60,-57.60,8.80,0.00,1.00,-62.40,-52.80,0
+-28.80,-52.80,8.74,0.00,1.00,-57.60,-48.00,0
+-24.00,-48.00,8.67,0.00,1.00,-52.80,-43.20,0
+-19.20,-43.20,8.61,0.00,1.00,-48.00,-38.40,0
+-19.20,-38.40,8.55,0.00,1.00,-43.20,-38.40,0
+-14.40,-33.60,8.48,0.00,1.00,-38.40,-33.60,0
+-14.40,-33.60,8.42,0.00,1.00,-33.60,-28.80,0
+-9.60,-28.80,8.35,0.00,1.00,-28.80,-24.00,0
+-9.60,-24.00,8.29,0.00,1.00,-24.00,-19.20,0
+-4.80,-19.20,8.22,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,8.16,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,8.10,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,8.03,0.00,1.00,-4.80,0.00,0
+0.00,0.00,7.97,0.00,1.00,0.00,4.80,0
+0.00,4.80,7.90,0.00,1.00,4.80,9.60,0
+4.80,9.60,7.84,0.00,1.00,9.60,14.40,0
+4.80,14.40,7.78,0.00,1.00,14.40,19.20,0
+9.60,19.20,7.71,0.00,1.00,19.20,24.00,0
+9.60,24.00,7.65,0.00,1.00,24.00,24.00,0
+14.40,24.00,7.58,0.00,1.00,28.80,28.80,0
+14.40,28.80,7.52,0.00,1.00,33.60,33.60,0
+19.20,33.60,7.45,0.00,1.00,33.60,38.40,0
+19.20,38.40,7.39,0.00,1.00,38.40,43.20,0
+24.00,43.20,7.33,0.00,1.00,43.20,48.00,0
+28.80,48.00,7.26,0.00,1.00,48.00,52.80,0
+33.60,52.80,7.20,0.00,1.00,57.60,52.80,0
+38.40,52.80,7.13,0.00,1.00,62.40,57.60,0
+43.20,57.60,7.07,0.00,1.00,67.20,62.40,0
+52.80,62.40,7.00,0.00,1.00,72.00,62.40,0
+62.40,62.40,6.94,0.00,1.00,76.80,67.20,0
+72.00,62.40,6.88,0.00,1.00,81.60,67.20,0
+81.60,67.20,6.81,0.00,1.00,86.40,67.20,0
+91.20,67.20,6.75,0.00,1.00,91.20,67.20,0
+105.60,67.20,6.68,0.00,1.00,96.00,67.20,0
+115.20,62.40,6.62,0.00,1.00,100.80,62.40,0
+124.80,62.40,6.55,0.00,1.00,105.60,57.60,0
+134.40,57.60,6.49,0.00,1.00,110.40,57.60,0
+139.20,57.60,6.43,0.00,1.00,115.20,52.80,0
+144.00,52.80,6.36,0.00,1.00,120.00,48.00,0
+148.80,48.00,6.30,0.00,1.00,129.60,43.20,0
+153.60,43.20,6.23,0.00,1.00,134.40,43.20,0
+158.40,38.40,6.17,0.00,1.00,139.20,38.40,0
+158.40,38.40,6.10,0.00,1.00,144.00,33.60,0
+163.20,33.60,6.04,0.00,1.00,148.80,28.80,0
+168.00,28.80,5.98,0.00,1.00,148.80,24.00,0
+168.00,24.00,5.91,0.00,1.00,153.60,19.20,0
+172.80,19.20,5.85,0.00,1.00,158.40,14.40,0
+172.80,14.40,5.78,0.00,1.00,163.20,9.60,0
+172.80,9.60,5.72,0.00,1.00,168.00,4.80,0
+177.60,4.80,5.65,0.00,1.00,172.80,0.00,0
+177.60,0.00,5.59,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,5.53,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,5.46,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,5.40,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,5.33,0.00,1.00,-163.20,-19.20,0
+-172.80,-19.20,5.27,0.00,1.00,-158.40,-24.00,0
+-168.00,-24.00,5.20,0.00,1.00,-153.60,-28.80,0
+-168.00,-28.80,5.14,0.00,1.00,-148.80,-33.60,0
+-163.20,-33.60,5.08,0.00,1.00,-148.80,-38.40,0
+-158.40,-38.40,5.01,0.00,1.00,-144.00,-43.20,0
+-158.40,-38.40,4.95,0.00,1.00,-139.20,-43.20,0
+-153.60,-43.20,4.88,0.00,1.00,-134.40,-48.00,0
+-148.80,-48.00,4.82,0.00,1.00,-129.60,-52.80,0
+-144.00,-52.80,4.76,0.00,1.00,-120.00,-57.60,0
+-139.20,-57.60,4.69,0.00,1.00,-115.20,-57.60,0
+-134.40,-57.60,4.63,0.00,1.00,-110.40,-62.40,0
+-124.80,-62.40,4.56,0.00,1.00,-105.60,-67.20,0
+-115.20,-62.40,4.50,0.00,1.00,-100.80,-67.20,0
+-105.60,-67.20,4.43,0.00,1.00,-96.00,-67.20,0
+-91.20,-67.20,4.37,0.00,1.00,-91.20,-67.20,0
+-81.60,-67.20,4.31,0.00,1.00,-86.40,-67.20,0
+-72.00,-62.40,4.24,0.00,1.00,-81.60,-62.40,0
+-62.40,-62.40,4.18,0.00,1.00,-76.80,-62.40,0
+-52.80,-62.40,4.11,0.00,1.00,-72.00,-57.60,0
+-43.20,-57.60,4.05,0.00,1.00,-67.20,-52.80,0
+-38.40,-52.80,3.98,0.00,1.00,-62.40,-52.80,0
+-33.60,-52.80,3.92,0.00,1.00,-57.60,-48.00,0
+-28.80,-48.00,3.86,0.00,1.00,-48.00,-43.20,0
+-24.00,-43.20,3.79,0.00,1.00,-43.20,-38.40,0
+-19.20,-38.40,3.73,0.00,1.00,-38.40,-33.60,0
+-19.20,-33.60,3.66,0.00,1.00,-33.60,-28.80,0
+-14.40,-28.80,3.60,0.00,1.00,-33.60,-24.00,0
+-14.40,-24.00,3.53,0.00,1.00,-28.80,-24.00,0
+-9.60,-24.00,3.47,0.00,1.00,-24.00,-19.20,0
+-9.60,-19.20,3.41,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,3.34,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,3.28,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,3.21,0.00,1.00,-4.80,0.00,0
+0.00,0.00,3.15,0.00,1.00,0.00,4.80,0
+0.00,4.80,3.08,0.00,1.00,4.80,9.60,0
+4.80,9.60,3.02,0.00,1.00,9.60,14.40,0
+4.80,14.40,2.96,0.00,1.00,14.40,19.20,0
+9.60,14.40,2.89,0.00,1.00,19.20,19.20,0
+14.40,19.20,2.83,0.00,1.00,19.20,24.00,0
+14.40,24.00,2.76,0.00,1.00,24.00,28.80,0
+19.20,28.80,2.70,0.00,1.00,28.80,33.60,0
+19.20,33.60,2.63,0.00,1.00,33.60,38.40,0
+24.00,38.40,2.57,0.00,1.00,38.40,43.20,0
+28.80,38.40,2.51,0.00,1.00,43.20,43.20,0
+33.60,43.20,2.44,0.00,1.00,48.00,48.00,0
+38.40,48.00,2.38,0.00,1.00,52.80,52.80,0
+43.20,52.80,2.31,0.00,1.00,57.60,52.80,0
+48.00,52.80,2.25,0.00,1.00,62.40,57.60,0
+57.60,57.60,2.18,0.00,1.00,72.00,57.60,0
+62.40,57.60,2.12,0.00,1.00,76.80,62.40,0
+72.00,62.40,2.06,0.00,1.00,81.60,62.40,0
+81.60,62.40,1.99,0.00,1.00,86.40,62.40,0
+91.20,62.40,1.93,0.00,1.00,91.20,62.40,0
+100.80,62.40,1.86,0.00,1.00,96.00,62.40,0
+110.40,57.60,1.80,0.00,1.00,100.80,57.60,0
+120.00,57.60,1.73,0.00,1.00,105.60,57.60,0
+129.60,57.60,1.67,0.00,1.00,115.20,52.80,0
+134.40,52.80,1.61,0.00,1.00,120.00,48.00,0
+139.20,48.00,1.54,0.00,1.00,124.80,48.00,0
+144.00,48.00,1.48,0.00,1.00,129.60,43.20,0
+148.80,43.20,1.41,0.00,1.00,134.40,38.40,0
+153.60,38.40,1.35,0.00,1.00,139.20,33.60,0
+158.40,33.60,1.29,0.00,1.00,144.00,33.60,0
+158.40,28.80,1.22,0.00,1.00,148.80,28.80,0
+163.20,28.80,1.16,0.00,1.00,153.60,24.00,0
+168.00,24.00,1.09,0.00,1.00,158.40,19.20,0
+168.00,19.20,1.03,0.00,1.00,163.20,14.40,0
+172.80,14.40,0.96,0.00,1.00,163.20,9.60,0
+172.80,9.60,0.90,0.00,1.00,168.00,4.80,0
+177.60,4.80,0.84,0.00,1.00,172.80,0.00,0
+177.60,0.00,0.77,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,0.71,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,0.64,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,0.58,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,0.51,0.00,1.00,-163.20,-19.20,0
+-168.00,-19.20,0.45,0.00,1.00,-163.20,-24.00,0
+-168.00,-24.00,0.39,0.00,1.00,-158.40,-28.80,0
+-163.20,-28.80,0.32,0.00,1.00,-153.60,-33.60,0
+-158.40,-28.80,0.26,0.00,1.00,-148.80,-33.60,0
+-158.40,-33.60,0.19,0.00,1.00,-144.00,-38.40,0
+-153.60,-38.40,0.13,0.00,1.00,-139.20,-43.20,0
+-148.80,-43.20,0.06,0.00,1.00,-134.40,-48.00,0
+-144.00,-48.00,0.00,0.00,1.00,-129.60,-48.00,0
+-139.20,-48.00,0.00,0.00,1.00,-124.80,-52.80,0
+-134.40,-52.80,0.16,0.00,1.00,-120.00,-57.60,0
+-129.60,-57.60,0.32,0.00,1.00,-115.20,-57.60,0
+-120.00,-57.60,0.48,0.00,1.00,-105.60,-62.40,0
+-110.40,-57.60,0.65,0.00,1.00,-100.80,-62.40,0
+-100.80,-62.40,0.81,0.00,1.00,-96.00,-62.40,0
+-91.20,-62.40,0.97,0.00,1.00,-91.20,-62.40,0
+-81.60,-62.40,1.13,0.00,1.00,-86.40,-62.40,0
+-72.00,-62.40,1.29,0.00,1.00,-81.60,-57.60,0
+-62.40,-57.60,1.45,0.00,1.00,-76.80,-57.60,0
+-57.60,-57.60,1.62,0.00,1.00,-72.00,-52.80,0
+-48.00,-52.80,1.78,0.00,1.00,-62.40,-52.80,0
+-43.20,-52.80,1.94,0.00,1.00,-57.60,-48.00,0
+-38.40,-48.00,2.10,0.00,1.00,-52.80,-43.20,0
+-33.60,-43.20,2.26,0.00,1.00,-48.00,-43.20,0
+-28.80,-38.40,2.42,0.00,1.00,-43.20,-38.40,0
+-24.00,-38.40,2.59,0.00,1.00,-38.40,-33.60,0
+-19.20,-33.60,2.75,0.00,1.00,-33.60,-28.80,0
+-19.20,-28.80,2.91,0.00,1.00,-28.80,-24.00,0
+-14.40,-24.00,3.07,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,3.23,0.00,1.00,-19.20,-19.20,0
+-9.60,-14.40,3.39,0.00,1.00,-19.20,-14.40,0
+-4.80,-14.40,3.56,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,3.72,0.00,1.00,-9.60,-4.80,0
+-0.00,-4.80,3.88,0.00,1.00,-4.80,0.00,0
+0.00,0.00,4.04,0.00,1.00,0.00,4.80,0
+4.80,4.80,4.20,0.00,1.00,4.80,9.60,0
+4.80,9.60,4.36,0.00,1.00,9.60,14.40,0
+9.60,9.60,4.53,0.00,1.00,14.40,14.40,0
+9.60,14.40,4.69,0.00,1.00,14.40,19.20,0
+14.40,19.20,4.85,0.00,1.00,19.20,24.00,0
+19.20,24.00,5.01,0.00,1.00,24.00,28.80,0
+19.20,28.80,5.17,0.00,1.00,28.80,33.60,0
+24.00,28.80,5.33,0.00,1.00,33.60,33.60,0
+28.80,33.60,5.49,0.00,1.00,38.40,38.40,0
+33.60,38.40,5.66,0.00,1.00,43.20,43.20,0
+38.40,43.20,5.82,0.00,1.00,48.00,43.20,0
+43.20,43.20,5.98,0.00,1.00,52.80,48.00,0
+48.00,48.00,6.14,0.00,1.00,57.60,52.80,0
+52.80,48.00,6.30,0.00,1.00,62.40,52.80,0
+57.60,52.80,6.46,0.00,1.00,67.20,57.60,0
+67.20,52.80,6.63,0.00,1.00,72.00,57.60,0
+76.80,57.60,6.79,0.00,1.00,81.60,57.60,0
+81.60,57.60,6.95,0.00,1.00,86.40,57.60,0
+91.20,57.60,7.11,0.00,1.00,91.20,57.60,0
+100.80,57.60,7.27,0.00,1.00,96.00,57.60,0
+110.40,52.80,7.43,0.00,1.00,100.80,52.80,0
+115.20,52.80,7.60,0.00,1.00,110.40,52.80,0
+124.80,52.80,7.76,0.00,1.00,115.20,48.00,0
+129.60,48.00,7.92,0.00,1.00,120.00,48.00,0
+134.40,48.00,8.08,0.00,1.00,124.80,43.20,0
+139.20,43.20,8.24,0.00,1.00,129.60,38.40,0
+144.00,38.40,8.40,0.00,1.00,134.40,38.40,0
+148.80,38.40,8.57,0.00,1.00,139.20,33.60,0
+153.60,33.60,8.73,0.00,1.00,144.00,28.80,0
+158.40,28.80,8.89,0.00,1.00,148.80,24.00,0
+163.20,24.00,9.05,0.00,1.00,153.60,24.00,0
+163.20,24.00,9.21,0.00,1.00,158.40,19.20,0
+168.00,19.20,9.37,0.00,1.00,163.20,14.40,0
+172.80,14.40,9.54,0.00,1.00,168.00,9.60,0
+172.80,9.60,9.70,0.00,1.00,168.00,4.80,0
+177.60,4.80,9.86,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.18,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,10.34,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,10.51,0.00,1.00,-168.00,-14.40,0
+-172.80,-14.40,10.67,0.00,1.00,-168.00,-19.20,0
+-168.00,-19.20,10.83,0.00,1.00,-163.20,-24.00,0
+-163.20,-24.00,10.99,0.00,1.00,-158.40,-24.00,0
+-163.20,-24.00,11.15,0.00,1.00,-153.60,-28.80,0
+-158.40,-28.80,11.31,0.00,1.00,-148.80,-33.60,0
+-153.60,-33.60,11.47,0.00,1.00,-144.00,-38.40,0
+-148.80,-38.40,11.64,0.00,1.00,-139.20,-38.40,0
+-144.00,-38.40,11.80,0.00,1.00,-134.40,-43.20,0
+-139.20,-43.20,11.96,0.00,1.00,-129.60,-48.00,0
+-134.40,-48.00,12.12,0.00,1.00,-124.80,-48.00,0
+-129.60,-48.00,12.28,0.00,1.00,-120.00,-52.80,0
+-124.80,-52.80,12.44,0.00,1.00,-115.20,-52.80,0
+-115.20,-52.80,12.61,0.00,1.00,-110.40,-57.60,0
+-110.40,-52.80,12.77,0.00,1.00,-100.80,-57.60,0
+-100.80,-57.60,12.93,0.00,1.00,-96.00,-57.60,0
+-91.20,-57.60,13.09,0.00,1.00,-91.20,-57.60,0
+-81.60,-57.60,13.25,0.00,1.00,-86.40,-57.60,0
+-76.80,-57.60,13.41,0.00,1.00,-81.60,-57.60,0
+-67.20,-52.80,13.58,0.00,1.00,-72.00,-52.80,0
+-57.60,-52.80,13.74,0.00,1.00,-67.20,-52.80,0
+-52.80,-48.00,13.90,0.00,1.00,-62.40,-48.00,0
+-48.00,-48.00,14.06,0.00,1.00,-57.60,-43.20,0
+-43.20,-43.20,14.22,0.00,1.00,-52.80,-43.20,0
+-38.40,-43.20,14.38,0.00,1.00,-48.00,-38.40,0
+-33.60,-38.40,14.55,0.00,1.00,-43.20,-33.60,0
+-28.80,-33.60,14.71,0.00,1.00,-38.40,-33.60,0
+-24.00,-28.80,14.87,0.00,1.00,-33.60,-28.80,0
+-19.20,-28.80,15.03,0.00,1.00,-28.80,-24.00,0
+-19.20,-24.00,15.19,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,15.35,0.00,1.00,-19.20,-14.40,0
+-9.60,-14.40,15.52,0.00,1.00,-14.40,-14.40,0
+-9.60,-9.60,15.68,0.00,1.00,-14.40,-9.60,0
+-4.80,-9.60,15.84,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,16.00,0.00,1.00,-4.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,0.00,4.80,0
+4.80,4.80,15.84,0.00,1.00,4.80,9.60,0
+4.80,9.60,15.68,0.00,1.00,9.60,9.60,0
+9.60,9.60,15.52,0.00,1.00,9.60,14.40,0
+14.40,14.40,15.35,0.00,1.00,14.40,19.20,0
+14.40,19.20,15.19,0.00,1.00,19.20,24.00,0
+19.20,24.00,15.03,0.00,1.00,24.00,24.00,0
+24.00,24.00,14.87,0.00,1.00,28.80,28.80,0
+24.00,28.80,14.71,0.00,1.00,33.60,33.60,0
+28.80,33.60,14.55,0.00,1.00,38.40,38.40,0
+33.60,33.60,14.38,0.00,1.00,43.20,38.40,0
+38.40,38.40,14.22,0.00,1.00,48.00,43.20,0
+43.20,43.20,14.06,0.00,1.00,52.80,43.20,0
+48.00,43.20,13.90,0.00,1.00,57.60,48.00,0
+57.60,48.00,13.74,0.00,1.00,62.40,48.00,0
+62.40,48.00,13.58,0.00,1.00,67.20,52.80,0
+67.20,48.00,13.41,0.00,1.00,72.00,52.80,0
+76.80,52.80,13.25,0.00,1.00,81.60,52.80,0
+86.40,52.80,13.09,0.00,1.00,86.40,52.80,0
+91.20,52.80,12.93,0.00,1.00,91.20,52.80,0
+100.80,52.80,12.77,0.00,1.00,96.00,52.80,0
+105.60,48.00,12.61,0.00,1.00,105.60,48.00,0
+115.20,48.00,12.44,0.00,1.00,110.40,48.00,0
+120.00,48.00,12.28,0.00,1.00,115.20,48.00,0
+124.80,43.20,12.12,0.00,1.00,120.00,43.20,0
+134.40,43.20,11.96,0.00,1.00,124.80,43.20,0
+139.20,38.40,11.80,0.00,1.00,129.60,38.40,0
+144.00,38.40,11.64,0.00,1.00,134.40,33.60,0
+148.80,33.60,11.47,0.00,1.00,139.20,33.60,0
+153.60,28.80,11.31,0.00,1.00,144.00,28.80,0
+153.60,28.80,11.15,0.00,1.00,148.80,24.00,0
+158.40,24.00,10.99,0.00,1.00,153.60,19.20,0
+163.20,19.20,10.83,0.00,1.00,158.40,19.20,0
+168.00,14.40,10.67,0.00,1.00,163.20,14.40,0
+168.00,14.40,10.51,0.00,1.00,168.00,9.60,0
+172.80,9.60,10.34,0.00,1.00,172.80,4.80,0
+177.60,4.80,10.18,0.00,1.00,172.80,0.00,0
+177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,9.86,0.00,1.00,-177.60,-4.80,0
+-177.60,-4.80,9.70,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,9.54,0.00,1.00,-172.80,-14.40,0
+-168.00,-14.40,9.37,0.00,1.00,-168.00,-19.20,0
+-168.00,-14.40,9.21,0.00,1.00,-163.20,-19.20,0
+-163.20,-19.20,9.05,0.00,1.00,-158.40,-24.00,0
+-158.40,-24.00,8.89,0.00,1.00,-153.60,-28.80,0
+-153.60,-28.80,8.73,0.00,1.00,-148.80,-33.60,0
+-153.60,-28.80,8.57,0.00,1.00,-144.00,-33.60,0
+-148.80,-33.60,8.40,0.00,1.00,-139.20,-38.40,0
+-144.00,-38.40,8.24,0.00,1.00,-134.40,-43.20,0
+-139.20,-38.40,8.08,0.00,1.00,-129.60,-43.20,0
+-134.40,-43.20,7.92,0.00,1.00,-124.80,-48.00,0
+-124.80,-43.20,7.76,0.00,1.00,-120.00,-48.00,0
+-120.00,-48.00,7.60,0.00,1.00,-115.20,-48.00,0
+-115.20,-48.00,7.43,0.00,1.00,-110.40,-52.80,0
+-105.60,-48.00,7.27,0.00,1.00,-105.60,-52.80,0
+-100.80,-52.80,7.11,0.00,1.00,-96.00,-52.80,0
+-91.20,-52.80,6.95,0.00,1.00,-91.20,-52.80,0
+-86.40,-52.80,6.79,0.00,1.00,-86.40,-52.80,0
+-76.80,-52.80,6.63,0.00,1.00,-81.60,-52.80,0
+-67.20,-48.00,6.46,0.00,1.00,-72.00,-48.00,0
+-62.40,-48.00,6.30,0.00,1.00,-67.20,-48.00,0
+-57.60,-48.00,6.14,0.00,1.00,-62.40,-43.20,0
+-48.00,-43.20,5.98,0.00,1.00,-57.60,-43.20,0
+-43.20,-43.20,5.82,0.00,1.00,-52.80,-38.40,0
+-38.40,-38.40,5.66,0.00,1.00,-48.00,-38.40,0
+-33.60,-33.60,5.49,0.00,1.00,-43.20,-33.60,0
+-28.80,-33.60,5.33,0.00,1.00,-38.40,-28.80,0
+-24.00,-28.80,5.17,0.00,1.00,-33.60,-24.00,0
+-24.00,-24.00,5.01,0.00,1.00,-28.80,-24.00,0
+-19.20,-24.00,4.85,0.00,1.00,-24.00,-19.20,0
+-14.40,-19.20,4.69,0.00,1.00,-19.20,-14.40,0
+-14.40,-14.40,4.53,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,4.36,0.00,1.00,-9.60,-9.60,0
+-4.80,-9.60,4.20,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,4.04,0.00,1.00,-4.80,0.00,0
+0.00,0.00,3.88,0.00,1.00,0.00,4.80,0
+4.80,4.80,3.72,0.00,1.00,4.80,4.80,0
+4.80,4.80,3.56,0.00,1.00,4.80,9.60,0
+9.60,9.60,3.39,0.00,1.00,9.60,14.40,0
+14.40,14.40,3.23,0.00,1.00,14.40,19.20,0
+19.20,19.20,3.07,0.00,1.00,19.20,19.20,0
+19.20,19.20,2.91,0.00,1.00,24.00,24.00,0
+24.00,24.00,2.75,0.00,1.00,24.00,28.80,0
+28.80,28.80,2.59,0.00,1.00,28.80,28.80,0
+33.60,28.80,2.42,0.00,1.00,33.60,33.60,0
+38.40,33.60,2.26,0.00,1.00,38.40,38.40,0
+43.20,33.60,2.10,0.00,1.00,43.20,38.40,0
+48.00,38.40,1.94,0.00,1.00,48.00,43.20,0
+52.80,38.40,1.78,0.00,1.00,52.80,43.20,0
+57.60,43.20,1.62,0.00,1.00,62.40,43.20,0
+62.40,43.20,1.45,0.00,1.00,67.20,48.00,0
+72.00,43.20,1.29,0.00,1.00,72.00,48.00,0
+76.80,48.00,1.13,0.00,1.00,76.80,48.00,0
+86.40,48.00,0.97,0.00,1.00,86.40,48.00,0
+91.20,48.00,0.81,0.00,1.00,91.20,48.00,0
+100.80,48.00,0.65,0.00,1.00,96.00,48.00,0
+105.60,48.00,0.48,0.00,1.00,105.60,48.00,0
+110.40,43.20,0.32,0.00,1.00,110.40,43.20,0
+120.00,43.20,0.16,0.00,1.00,115.20,43.20,0
+124.80,43.20,0.00,0.00,1.00,124.80,38.40,0
+129.60,38.40,0.00,0.00,1.00,129.60,38.40,0
+134.40,38.40,0.04,0.00,1.00,134.40,33.60,0
+139.20,33.60,0.08,0.00,1.00,139.20,33.60,0
+144.00,33.60,0.12,0.00,1.00,144.00,28.80,0
+148.80,28.80,0.16,0.00,1.00,148.80,24.00,0
+153.60,24.00,0.20,0.00,1.00,153.60,24.00,0
+158.40,24.00,0.24,0.00,1.00,158.40,19.20,0
+163.20,19.20,0.28,0.00,1.00,158.40,14.40,0
+163.20,14.40,0.32,0.00,1.00,163.20,14.40,0
+168.00,14.40,0.36,0.00,1.00,168.00,9.60,0
+172.80,9.60,0.40,0.00,1.00,172.80,4.80,0
+172.80,4.80,0.44,0.00,1.00,172.80,0.00,0
+177.60,0.00,0.48,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,0.52,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,0.56,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,0.60,0.00,1.00,-172.80,-14.40,0
+-168.00,-14.40,0.64,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,0.68,0.00,1.00,-163.20,-19.20,0
+-163.20,-19.20,0.72,0.00,1.00,-158.40,-24.00,0
+-158.40,-24.00,0.76,0.00,1.00,-158.40,-24.00,0
+-153.60,-24.00,0.80,0.00,1.00,-153.60,-28.80,0
+-148.80,-28.80,0.84,0.00,1.00,-148.80,-33.60,0
+-144.00,-33.60,0.88,0.00,1.00,-144.00,-33.60,0
+-139.20,-33.60,0.92,0.00,1.00,-139.20,-38.40,0
+-134.40,-38.40,0.96,0.00,1.00,-134.40,-38.40,0
+-129.60,-38.40,1.00,0.00,1.00,-129.60,-43.20,0
+-124.80,-43.20,1.04,0.00,1.00,-124.80,-43.20,0
+-120.00,-43.20,1.08,0.00,1.00,-115.20,-48.00,0
+-110.40,-43.20,1.12,0.00,1.00,-110.40,-48.00,0
+-105.60,-48.00,1.16,0.00,1.00,-105.60,-48.00,0
+-100.80,-48.00,1.20,0.00,1.00,-96.00,-48.00,0
+-91.20,-48.00,1.24,0.00,1.00,-91.20,-48.00,0
+-86.40,-48.00,1.28,0.00,1.00,-86.40,-48.00,0
+-76.80,-48.00,1.32,0.00,1.00,-76.80,-48.00,0
+-72.00,-43.20,1.36,0.00,1.00,-72.00,-43.20,0
+-62.40,-43.20,1.40,0.00,1.00,-67.20,-43.20,0
+-57.60,-43.20,1.44,0.00,1.00,-62.40,-43.20,0
+-52.80,-38.40,1.48,0.00,1.00,-52.80,-38.40,0
+-48.00,-38.40,1.52,0.00,1.00,-48.00,-38.40,0
+-43.20,-33.60,1.56,0.00,1.00,-43.20,-33.60,0
+-38.40,-33.60,1.60,0.00,1.00,-38.40,-28.80,0
+-33.60,-28.80,1.64,0.00,1.00,-33.60,-28.80,0
+-28.80,-28.80,1.68,0.00,1.00,-28.80,-24.00,0
+-24.00,-24.00,1.72,0.00,1.00,-24.00,-19.20,0
+-19.20,-19.20,1.76,0.00,1.00,-24.00,-19.20,0
+-19.20,-19.20,1.80,0.00,1.00,-19.20,-14.40,0
+-14.40,-14.40,1.84,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,1.88,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,1.92,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,1.96,0.00,1.00,-4.80,0.00,0
+0.00,0.00,2.01,0.00,1.00,0.00,4.80,0
+4.80,4.80,2.05,0.00,1.00,4.80,4.80,0
+4.80,4.80,2.09,0.00,1.00,4.80,9.60,0
+9.60,9.60,2.13,0.00,1.00,9.60,14.40,0
+14.40,14.40,2.17,0.00,1.00,14.40,14.40,0
+19.20,14.40,2.21,0.00,1.00,14.40,19.20,0
+24.00,19.20,2.25,0.00,1.00,19.20,24.00,0
+24.00,24.00,2.29,0.00,1.00,24.00,24.00,0
+28.80,24.00,2.33,0.00,1.00,28.80,28.80,0
+33.60,28.80,2.37,0.00,1.00,33.60,28.80,0
+38.40,28.80,2.41,0.00,1.00,38.40,33.60,0
+43.20,33.60,2.45,0.00,1.00,43.20,33.60,0
+48.00,33.60,2.49,0.00,1.00,48.00,38.40,0
+52.80,38.40,2.53,0.00,1.00,52.80,38.40,0
+62.40,38.40,2.57,0.00,1.00,57.60,38.40,0
+67.20,38.40,2.61,0.00,1.00,62.40,43.20,0
+72.00,38.40,2.65,0.00,1.00,72.00,43.20,0
+76.80,43.20,2.69,0.00,1.00,76.80,43.20,0
+86.40,43.20,2.73,0.00,1.00,86.40,43.20,0
+91.20,43.20,2.77,0.00,1.00,91.20,43.20,0
+96.00,43.20,2.81,0.00,1.00,100.80,43.20,0
+105.60,43.20,2.85,0.00,1.00,105.60,43.20,0
+110.40,38.40,2.89,0.00,1.00,110.40,38.40,0
+115.20,38.40,2.93,0.00,1.00,120.00,38.40,0
+120.00,38.40,2.97,0.00,1.00,124.80,38.40,0
+129.60,33.60,3.01,0.00,1.00,129.60,33.60,0
+134.40,33.60,3.05,0.00,1.00,134.40,33.60,0
+139.20,28.80,3.09,0.00,1.00,139.20,28.80,0
+144.00,28.80,3.13,0.00,1.00,144.00,28.80,0
+148.80,24.00,3.17,0.00,1.00,148.80,24.00,0
+153.60,24.00,3.21,0.00,1.00,153.60,19.20,0
+153.60,19.20,3.25,0.00,1.00,158.40,19.20,0
+158.40,19.20,3.29,0.00,1.00,163.20,14.40,0
+163.20,14.40,3.33,0.00,1.00,163.20,9.60,0
+168.00,9.60,3.37,0.00,1.00,168.00,9.60,0
+172.80,9.60,3.41,0.00,1.00,172.80,4.80,0
+172.80,4.80,3.45,0.00,1.00,172.80,0.00,0
+177.60,0.00,3.49,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,3.53,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,3.57,0.00,1.00,-172.80,-9.60,0
+-172.80,-9.60,3.61,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,3.65,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,3.69,0.00,1.00,-163.20,-19.20,0
+-158.40,-19.20,3.73,0.00,1.00,-163.20,-19.20,0
+-153.60,-19.20,3.77,0.00,1.00,-158.40,-24.00,0
+-153.60,-24.00,3.81,0.00,1.00,-153.60,-28.80,0
+-148.80,-24.00,3.85,0.00,1.00,-148.80,-28.80,0
+-144.00,-28.80,3.89,0.00,1.00,-144.00,-33.60,0
+-139.20,-28.80,3.93,0.00,1.00,-139.20,-33.60,0
+-134.40,-33.60,3.97,0.00,1.00,-134.40,-38.40,0
+-129.60,-33.60,4.01,0.00,1.00,-129.60,-38.40,0
+-120.00,-38.40,4.05,0.00,1.00,-124.80,-38.40,0
+-115.20,-38.40,4.09,0.00,1.00,-120.00,-43.20,0
+-110.40,-38.40,4.13,0.00,1.00,-110.40,-43.20,0
+-105.60,-43.20,4.17,0.00,1.00,-105.60,-43.20,0
+-96.00,-43.20,4.21,0.00,1.00,-100.80,-43.20,0
+-91.20,-43.20,4.25,0.00,1.00,-91.20,-43.20,0
+-86.40,-43.20,4.29,0.00,1.00,-86.40,-43.20,0
+-76.80,-43.20,4.33,0.00,1.00,-76.80,-43.20,0
+-72.00,-38.40,4.37,0.00,1.00,-72.00,-38.40,0
+-67.20,-38.40,4.41,0.00,1.00,-62.40,-38.40,0
+-62.40,-38.40,4.45,0.00,1.00,-57.60,-38.40,0
+-52.80,-38.40,4.49,0.00,1.00,-52.80,-33.60,0
+-48.00,-33.60,4.53,0.00,1.00,-48.00,-33.60,0
+-43.20,-33.60,4.57,0.00,1.00,-43.20,-28.80,0
+-38.40,-28.80,4.61,0.00,1.00,-38.40,-28.80,0
+-33.60,-28.80,4.65,0.00,1.00,-33.60,-24.00,0
+-28.80,-24.00,4.69,0.00,1.00,-28.80,-24.00,0
+-24.00,-24.00,4.73,0.00,1.00,-24.00,-19.20,0
+-24.00,-19.20,4.77,0.00,1.00,-19.20,-14.40,0
+-19.20,-14.40,4.81,0.00,1.00,-14.40,-14.40,0
+-14.40,-14.40,4.85,0.00,1.00,-14.40,-9.60,0
+-9.60,-9.60,4.89,0.00,1.00,-9.60,-4.80,0
+-4.80,-4.80,4.93,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,4.97,0.00,1.00,-4.80,0.00,0
+0.00,0.00,5.01,0.00,1.00,0.00,4.80,0
+4.80,4.80,5.05,0.00,1.00,4.80,4.80,0
+9.60,4.80,5.09,0.00,1.00,4.80,9.60,0
+9.60,9.60,5.13,0.00,1.00,9.60,9.60,0
+14.40,9.60,5.17,0.00,1.00,9.60,14.40,0
+19.20,14.40,5.21,0.00,1.00,14.40,19.20,0
+24.00,19.20,5.25,0.00,1.00,19.20,19.20,0
+28.80,19.20,5.29,0.00,1.00,24.00,24.00,0
+33.60,24.00,5.33,0.00,1.00,24.00,24.00,0
+38.40,24.00,5.37,0.00,1.00,28.80,28.80,0
+43.20,28.80,5.41,0.00,1.00,33.60,28.80,0
+48.00,28.80,5.45,0.00,1.00,38.40,33.60,0
+52.80,28.80,5.49,0.00,1.00,43.20,33.60,0
+57.60,33.60,5.53,0.00,1.00,48.00,33.60,0
+62.40,33.60,5.57,0.00,1.00,52.80,38.40,0
+67.20,33.60,5.61,0.00,1.00,62.40,38.40,0
+72.00,38.40,5.65,0.00,1.00,67.20,38.40,0
+81.60,38.40,5.69,0.00,1.00,76.80,38.40,0
+86.40,38.40,5.73,0.00,1.00,86.40,38.40,0
+91.20,38.40,5.77,0.00,1.00,91.20,38.40,0
+96.00,38.40,5.81,0.00,1.00,100.80,38.40,0
+105.60,38.40,5.85,0.00,1.00,105.60,38.40,0
+110.40,33.60,5.89,0.00,1.00,115.20,33.60,0
+115.20,33.60,5.93,0.00,1.00,120.00,33.60,0
+120.00,33.60,5.97,0.00,1.00,129.60,33.60,0
+124.80,33.60,6.02,0.00,1.00,134.40,28.80,0
+129.60,28.80,6.06,0.00,1.00,139.20,28.80,0
+134.40,28.80,6.10,0.00,1.00,144.00,24.00,0
+139.20,24.00,6.14,0.00,1.00,148.80,24.00,0
+144.00,24.00,6.18,0.00,1.00,153.60,19.20,0
+148.80,19.20,6.22,0.00,1.00,158.40,19.20,0
+153.60,19.20,6.26,0.00,1.00,158.40,14.40,0
+158.40,14.40,6.30,0.00,1.00,163.20,14.40,0
+163.20,14.40,6.34,0.00,1.00,168.00,9.60,0
+168.00,9.60,6.38,0.00,1.00,168.00,9.60,0
+168.00,9.60,6.42,0.00,1.00,172.80,4.80,0
+172.80,4.80,6.46,0.00,1.00,177.60,0.00,0
+177.60,0.00,6.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,6.54,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,6.58,0.00,1.00,-177.60,-9.60,0
+-168.00,-9.60,6.62,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,6.66,0.00,1.00,-168.00,-14.40,0
+-163.20,-14.40,6.70,0.00,1.00,-168.00,-14.40,0
+-158.40,-14.40,6.74,0.00,1.00,-163.20,-19.20,0
+-153.60,-19.20,6.78,0.00,1.00,-158.40,-19.20,0
+-148.80,-19.20,6.82,0.00,1.00,-158.40,-24.00,0
+-144.00,-24.00,6.86,0.00,1.00,-153.60,-24.00,0
+-139.20,-24.00,6.90,0.00,1.00,-148.80,-28.80,0
+-134.40,-28.80,6.94,0.00,1.00,-144.00,-28.80,0
+-129.60,-28.80,6.98,0.00,1.00,-139.20,-33.60,0
+-124.80,-33.60,7.02,0.00,1.00,-134.40,-33.60,0
+-120.00,-33.60,7.06,0.00,1.00,-129.60,-33.60,0
+-115.20,-33.60,7.10,0.00,1.00,-120.00,-38.40,0
+-110.40,-33.60,7.14,0.00,1.00,-115.20,-38.40,0
+-105.60,-38.40,7.18,0.00,1.00,-105.60,-38.40,0
+-96.00,-38.40,7.22,0.00,1.00,-100.80,-38.40,0
+-91.20,-38.40,7.26,0.00,1.00,-91.20,-38.40,0
+-86.40,-38.40,7.30,0.00,1.00,-86.40,-38.40,0
+-81.60,-38.40,7.34,0.00,1.00,-76.80,-38.40,0
+-72.00,-38.40,7.38,0.00,1.00,-67.20,-38.40,0
+-67.20,-33.60,7.42,0.00,1.00,-62.40,-33.60,0
+-62.40,-33.60,7.46,0.00,1.00,-52.80,-33.60,0
+-57.60,-33.60,7.50,0.00,1.00,-48.00,-33.60,0
+-52.80,-28.80,7.54,0.00,1.00,-43.20,-28.80,0
+-48.00,-28.80,7.58,0.00,1.00,-38.40,-28.80,0
+-43.20,-28.80,7.62,0.00,1.00,-33.60,-24.00,0
+-38.40,-24.00,7.66,0.00,1.00,-28.80,-24.00,0
+-33.60,-24.00,7.70,0.00,1.00,-24.00,-19.20,0
+-28.80,-19.20,7.74,0.00,1.00,-24.00,-19.20,0
+-24.00,-19.20,7.78,0.00,1.00,-19.20,-14.40,0
+-19.20,-14.40,7.82,0.00,1.00,-14.40,-9.60,0
+-14.40,-9.60,7.86,0.00,1.00,-9.60,-9.60,0
+-9.60,-9.60,7.90,0.00,1.00,-9.60,-4.80,0
+-9.60,-4.80,7.94,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,7.98,0.00,1.00,-4.80,0.00,0
+0.00,0.00,8.02,0.00,1.00,0.00,4.80,0
+4.80,4.80,8.06,0.00,1.00,4.80,4.80,0
+9.60,4.80,8.10,0.00,1.00,4.80,9.60,0
+14.40,9.60,8.14,0.00,1.00,9.60,9.60,0
+14.40,9.60,8.18,0.00,1.00,9.60,14.40,0
+19.20,14.40,8.22,0.00,1.00,14.40,14.40,0
+24.00,14.40,8.26,0.00,1.00,14.40,19.20,0
+28.80,19.20,8.30,0.00,1.00,19.20,19.20,0
+33.60,19.20,8.34,0.00,1.00,24.00,24.00,0
+38.40,19.20,8.38,0.00,1.00,28.80,24.00,0
+43.20,24.00,8.42,0.00,1.00,28.80,24.00,0
+48.00,24.00,8.46,0.00,1.00,33.60,28.80,0
+52.80,28.80,8.50,0.00,1.00,38.40,28.80,0
+57.60,28.80,8.54,0.00,1.00,48.00,28.80,0
+62.40,28.80,8.58,0.00,1.00,52.80,33.60,0
+67.20,28.80,8.62,0.00,1.00,57.60,33.60,0
+76.80,33.60,8.66,0.00,1.00,67.20,33.60,0
+81.60,33.60,8.70,0.00,1.00,76.80,33.60,0
+86.40,33.60,8.74,0.00,1.00,81.60,33.60,0
+91.20,33.60,8.78,0.00,1.00,91.20,33.60,0
+96.00,33.60,8.82,0.00,1.00,100.80,33.60,0
+100.80,33.60,8.86,0.00,1.00,110.40,33.60,0
+110.40,28.80,8.90,0.00,1.00,115.20,33.60,0
+115.20,28.80,8.94,0.00,1.00,124.80,28.80,0
+120.00,28.80,8.98,0.00,1.00,129.60,28.80,0
+124.80,28.80,9.02,0.00,1.00,139.20,28.80,0
+129.60,24.00,9.06,0.00,1.00,144.00,24.00,0
+134.40,24.00,9.10,0.00,1.00,148.80,24.00,0
+139.20,24.00,9.14,0.00,1.00,153.60,19.20,0
+144.00,19.20,9.18,0.00,1.00,153.60,19.20,0
+148.80,19.20,9.22,0.00,1.00,158.40,14.40,0
+153.60,14.40,9.26,0.00,1.00,163.20,14.40,0
+158.40,14.40,9.30,0.00,1.00,163.20,9.60,0
+163.20,9.60,9.34,0.00,1.00,168.00,9.60,0
+168.00,9.60,9.38,0.00,1.00,172.80,4.80,0
+168.00,4.80,9.42,0.00,1.00,172.80,4.80,0
+172.80,4.80,9.46,0.00,1.00,177.60,0.00,0
+177.60,0.00,9.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,9.54,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,9.58,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,9.62,0.00,1.00,-172.80,-9.60,0
+-168.00,-9.60,9.66,0.00,1.00,-172.80,-9.60,0
+-163.20,-9.60,9.70,0.00,1.00,-168.00,-14.40,0
+-158.40,-14.40,9.74,0.00,1.00,-163.20,-14.40,0
+-153.60,-14.40,9.78,0.00,1.00,-163.20,-19.20,0
+-148.80,-19.20,9.82,0.00,1.00,-158.40,-19.20,0
+-144.00,-19.20,9.86,0.00,1.00,-153.60,-24.00,0
+-139.20,-24.00,9.90,0.00,1.00,-153.60,-24.00,0
+-134.40,-24.00,9.94,0.00,1.00,-148.80,-28.80,0
+-129.60,-24.00,9.98,0.00,1.00,-144.00,-28.80,0
+-124.80,-28.80,10.03,0.00,1.00,-139.20,-28.80,0
+-120.00,-28.80,10.07,0.00,1.00,-129.60,-33.60,0
+-115.20,-28.80,10.11,0.00,1.00,-124.80,-33.60,0
+-110.40,-28.80,10.15,0.00,1.00,-115.20,-33.60,0
+-100.80,-33.60,10.19,0.00,1.00,-110.40,-33.60,0
+-96.00,-33.60,10.23,0.00,1.00,-100.80,-33.60,0
+-91.20,-33.60,10.27,0.00,1.00,-91.20,-33.60,0
+-86.40,-33.60,10.31,0.00,1.00,-81.60,-33.60,0
+-81.60,-33.60,10.35,0.00,1.00,-76.80,-33.60,0
+-76.80,-33.60,10.39,0.00,1.00,-67.20,-33.60,0
+-67.20,-28.80,10.43,0.00,1.00,-57.60,-28.80,0
+-62.40,-28.80,10.47,0.00,1.00,-52.80,-28.80,0
+-57.60,-28.80,10.51,0.00,1.00,-48.00,-28.80,0
+-52.80,-28.80,10.55,0.00,1.00,-38.40,-24.00,0
+-48.00,-24.00,10.59,0.00,1.00,-33.60,-24.00,0
+-43.20,-24.00,10.63,0.00,1.00,-28.80,-24.00,0
+-38.40,-19.20,10.67,0.00,1.00,-28.80,-19.20,0
+-33.60,-19.20,10.71,0.00,1.00,-24.00,-19.20,0
+-28.80,-19.20,10.75,0.00,1.00,-19.20,-14.40,0
+-24.00,-14.40,10.79,0.00,1.00,-14.40,-14.40,0
+-19.20,-14.40,10.83,0.00,1.00,-14.40,-9.60,0
+-14.40,-9.60,10.87,0.00,1.00,-9.60,-9.60,0
+-14.40,-9.60,10.91,0.00,1.00,-9.60,-4.80,0
+-9.60,-4.80,10.95,0.00,1.00,-4.80,-4.80,0
+-4.80,-4.80,10.99,0.00,1.00,-4.80,0.00,0
+0.00,0.00,11.03,0.00,1.00,0.00,0.00,0
+4.80,0.00,11.07,0.00,1.00,0.00,4.80,0
+9.60,4.80,11.11,0.00,1.00,4.80,4.80,0
+14.40,4.80,11.15,0.00,1.00,4.80,9.60,0
+19.20,9.60,11.19,0.00,1.00,9.60,9.60,0
+19.20,9.60,11.23,0.00,1.00,9.60,14.40,0
+24.00,14.40,11.27,0.00,1.00,14.40,14.40,0
+28.80,14.40,11.31,0.00,1.00,19.20,19.20,0
+33.60,14.40,11.35,0.00,1.00,19.20,19.20,0
+38.40,19.20,11.39,0.00,1.00,24.00,19.20,0
+43.20,19.20,11.43,0.00,1.00,28.80,24.00,0
+48.00,24.00,11.47,0.00,1.00,33.60,24.00,0
+52.80,24.00,11.51,0.00,1.00,38.40,24.00,0
+57.60,24.00,11.55,0.00,1.00,43.20,24.00,0
+62.40,24.00,11.59,0.00,1.00,48.00,28.80,0
+72.00,24.00,11.63,0.00,1.00,52.80,28.80,0
+76.80,28.80,11.67,0.00,1.00,62.40,28.80,0
+81.60,28.80,11.71,0.00,1.00,72.00,28.80,0
+86.40,28.80,11.75,0.00,1.00,81.60,28.80,0
+91.20,28.80,11.79,0.00,1.00,91.20,28.80,0
+96.00,28.80,11.83,0.00,1.00,100.80,28.80,0
+100.80,28.80,11.87,0.00,1.00,110.40,28.80,0
+105.60,28.80,11.91,0.00,1.00,120.00,28.80,0
+110.40,24.00,11.95,0.00,1.00,129.60,24.00,0
+120.00,24.00,11.99,0.00,1.00,134.40,24.00,0
+124.80,24.00,12.03,0.00,1.00,139.20,24.00,0
+129.60,24.00,12.07,0.00,1.00,144.00,24.00,0
+134.40,19.20,12.11,0.00,1.00,148.80,19.20,0
+139.20,19.20,12.15,0.00,1.00,153.60,19.20,0
+144.00,19.20,12.19,0.00,1.00,158.40,14.40,0
+148.80,14.40,12.23,0.00,1.00,163.20,14.40,0
+153.60,14.40,12.27,0.00,1.00,163.20,14.40,0
+158.40,9.60,12.31,0.00,1.00,168.00,9.60,0
+158.40,9.60,12.35,0.00,1.00,168.00,9.60,0
+163.20,9.60,12.39,0.00,1.00,172.80,4.80,0
+168.00,4.80,12.43,0.00,1.00,172.80,4.80,0
+172.80,4.80,12.47,0.00,1.00,177.60,0.00,0
+177.60,0.00,12.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,12.55,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,12.59,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,12.63,0.00,1.00,-172.80,-9.60,0
+-163.20,-9.60,12.67,0.00,1.00,-172.80,-9.60,0
+-158.40,-9.60,12.71,0.00,1.00,-168.00,-14.40,0
+-158.40,-9.60,12.75,0.00,1.00,-168.00,-14.40,0
+-153.60,-14.40,12.79,0.00,1.00,-163.20,-14.40,0
+-148.80,-14.40,12.83,0.00,1.00,-163.20,-19.20,0
+-144.00,-19.20,12.87,0.00,1.00,-158.40,-19.20,0
+-139.20,-19.20,12.91,0.00,1.00,-153.60,-24.00,0
+-134.40,-19.20,12.95,0.00,1.00,-148.80,-24.00,0
+-129.60,-24.00,12.99,0.00,1.00,-144.00,-24.00,0
+-124.80,-24.00,13.03,0.00,1.00,-139.20,-24.00,0
+-120.00,-24.00,13.07,0.00,1.00,-134.40,-28.80,0
+-110.40,-24.00,13.11,0.00,1.00,-129.60,-28.80,0
+-105.60,-28.80,13.15,0.00,1.00,-120.00,-28.80,0
+-100.80,-28.80,13.19,0.00,1.00,-110.40,-28.80,0
+-96.00,-28.80,13.23,0.00,1.00,-100.80,-28.80,0
+-91.20,-28.80,13.27,0.00,1.00,-91.20,-28.80,0
+-86.40,-28.80,13.31,0.00,1.00,-81.60,-28.80,0
+-81.60,-28.80,13.35,0.00,1.00,-72.00,-28.80,0
+-76.80,-28.80,13.39,0.00,1.00,-62.40,-28.80,0
+-72.00,-24.00,13.43,0.00,1.00,-52.80,-24.00,0
+-62.40,-24.00,13.47,0.00,1.00,-48.00,-24.00,0
+-57.60,-24.00,13.51,0.00,1.00,-43.20,-24.00,0
+-52.80,-24.00,13.55,0.00,1.00,-38.40,-24.00,0
+-48.00,-24.00,13.59,0.00,1.00,-33.60,-19.20,0
+-43.20,-19.20,13.63,0.00,1.00,-28.80,-19.20,0
+-38.40,-19.20,13.67,0.00,1.00,-24.00,-19.20,0
+-33.60,-14.40,13.71,0.00,1.00,-19.20,-14.40,0
+-28.80,-14.40,13.75,0.00,1.00,-19.20,-14.40,0
+-24.00,-14.40,13.79,0.00,1.00,-14.40,-9.60,0
+-19.20,-9.60,13.83,0.00,1.00,-9.60,-9.60,0
+-19.20,-9.60,13.87,0.00,1.00,-9.60,-4.80,0
+-14.40,-4.80,13.91,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,13.95,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,13.99,0.00,1.00,-0.00,0.00,0
+0.00,0.00,14.04,0.00,1.00,0.00,0.00,0
+4.80,0.00,14.08,0.00,1.00,0.00,4.80,0
+9.60,4.80,14.12,0.00,1.00,4.80,4.80,0
+14.40,4.80,14.16,0.00,1.00,4.80,9.60,0
+19.20,9.60,14.20,0.00,1.00,9.60,9.60,0
+24.00,9.60,14.24,0.00,1.00,9.60,9.60,0
+28.80,9.60,14.28,0.00,1.00,14.40,14.40,0
+33.60,14.40,14.32,0.00,1.00,14.40,14.40,0
+38.40,14.40,14.36,0.00,1.00,19.20,14.40,0
+43.20,14.40,14.40,0.00,1.00,19.20,19.20,0
+48.00,14.40,14.44,0.00,1.00,24.00,19.20,0
+52.80,19.20,14.48,0.00,1.00,28.80,19.20,0
+57.60,19.20,14.52,0.00,1.00,33.60,19.20,0
+62.40,19.20,14.56,0.00,1.00,38.40,24.00,0
+67.20,19.20,14.60,0.00,1.00,43.20,24.00,0
+72.00,24.00,14.64,0.00,1.00,48.00,24.00,0
+76.80,24.00,14.68,0.00,1.00,57.60,24.00,0
+81.60,24.00,14.72,0.00,1.00,67.20,24.00,0
+86.40,24.00,14.76,0.00,1.00,81.60,24.00,0
+91.20,24.00,14.80,0.00,1.00,91.20,24.00,0
+96.00,24.00,14.84,0.00,1.00,105.60,24.00,0
+100.80,24.00,14.88,0.00,1.00,115.20,24.00,0
+105.60,24.00,14.92,0.00,1.00,124.80,24.00,0
+110.40,19.20,14.96,0.00,1.00,134.40,19.20,0
+115.20,19.20,15.00,0.00,1.00,139.20,19.20,0
+120.00,19.20,15.04,0.00,1.00,144.00,19.20,0
+124.80,19.20,15.08,0.00,1.00,148.80,19.20,0
+129.60,19.20,15.12,0.00,1.00,153.60,19.20,0
+134.40,14.40,15.16,0.00,1.00,158.40,14.40,0
+139.20,14.40,15.20,0.00,1.00,163.20,14.40,0
+144.00,14.40,15.24,0.00,1.00,163.20,14.40,0
+148.80,9.60,15.28,0.00,1.00,168.00,9.60,0
+153.60,9.60,15.32,0.00,1.00,168.00,9.60,0
+158.40,9.60,15.36,0.00,1.00,172.80,4.80,0
+163.20,4.80,15.40,0.00,1.00,172.80,4.80,0
+168.00,4.80,15.44,0.00,1.00,177.60,4.80,0
+172.80,4.80,15.48,0.00,1.00,177.60,0.00,0
+177.60,0.00,15.52,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,15.56,0.00,1.00,-177.60,-4.80,0
+-172.80,-4.80,15.60,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,15.64,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,15.68,0.00,1.00,-172.80,-9.60,0
+-158.40,-9.60,15.72,0.00,1.00,-172.80,-9.60,0
+-153.60,-9.60,15.76,0.00,1.00,-168.00,-14.40,0
+-148.80,-9.60,15.80,0.00,1.00,-168.00,-14.40,0
+-144.00,-14.40,15.84,0.00,1.00,-163.20,-14.40,0
+-139.20,-14.40,15.88,0.00,1.00,-163.20,-19.20,0
+-134.40,-14.40,15.92,0.00,1.00,-158.40,-19.20,0
+-129.60,-19.20,15.96,0.00,1.00,-153.60,-19.20,0
+-124.80,-19.20,16.00,0.00,1.00,-148.80,-19.20,0
+-120.00,-19.20,16.00,0.00,1.00,-144.00,-19.20,0
+-115.20,-19.20,15.96,0.00,1.00,-139.20,-24.00,0
+-110.40,-19.20,15.92,0.00,1.00,-134.40,-24.00,0
+-105.60,-24.00,15.88,0.00,1.00,-124.80,-24.00,0
+-100.80,-24.00,15.84,0.00,1.00,-115.20,-24.00,0
+-96.00,-24.00,15.80,0.00,1.00,-105.60,-24.00,0
+-91.20,-24.00,15.76,0.00,1.00,-91.20,-24.00,0
+-86.40,-24.00,15.72,0.00,1.00,-81.60,-24.00,0
+-81.60,-24.00,15.68,0.00,1.00,-67.20,-24.00,0
+-76.80,-24.00,15.64,0.00,1.00,-57.60,-24.00,0
+-72.00,-24.00,15.60,0.00,1.00,-48.00,-24.00,0
+-67.20,-19.20,15.56,0.00,1.00,-43.20,-19.20,0
+-62.40,-19.20,15.52,0.00,1.00,-38.40,-19.20,0
+-57.60,-19.20,15.48,0.00,1.00,-33.60,-19.20,0
+-52.80,-19.20,15.44,0.00,1.00,-28.80,-19.20,0
+-48.00,-14.40,15.40,0.00,1.00,-24.00,-14.40,0
+-43.20,-14.40,15.36,0.00,1.00,-19.20,-14.40,0
+-38.40,-14.40,15.32,0.00,1.00,-19.20,-14.40,0
+-33.60,-14.40,15.28,0.00,1.00,-14.40,-9.60,0
+-28.80,-9.60,15.24,0.00,1.00,-14.40,-9.60,0
+-24.00,-9.60,15.20,0.00,1.00,-9.60,-9.60,0
+-19.20,-9.60,15.16,0.00,1.00,-9.60,-4.80,0
+-14.40,-4.80,15.12,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,15.08,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,15.04,0.00,1.00,-0.00,0.00,0
+0.00,0.00,15.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,14.96,0.00,1.00,0.00,4.80,0
+9.60,4.80,14.92,0.00,1.00,4.80,4.80,0
+14.40,4.80,14.88,0.00,1.00,4.80,4.80,0
+19.20,4.80,14.84,0.00,1.00,4.80,9.60,0
+24.00,9.60,14.80,0.00,1.00,9.60,9.60,0
+28.80,9.60,14.76,0.00,1.00,9.60,9.60,0
+33.60,9.60,14.72,0.00,1.00,9.60,9.60,0
+38.40,9.60,14.68,0.00,1.00,14.40,14.40,0
+43.20,14.40,14.64,0.00,1.00,14.40,14.40,0
+48.00,14.40,14.60,0.00,1.00,19.20,14.40,0
+52.80,14.40,14.56,0.00,1.00,24.00,14.40,0
+57.60,14.40,14.52,0.00,1.00,24.00,19.20,0
+62.40,14.40,14.48,0.00,1.00,28.80,19.20,0
+67.20,14.40,14.44,0.00,1.00,38.40,19.20,0
+72.00,19.20,14.40,0.00,1.00,43.20,19.20,0
+76.80,19.20,14.36,0.00,1.00,52.80,19.20,0
+81.60,19.20,14.32,0.00,1.00,62.40,19.20,0
+86.40,19.20,14.28,0.00,1.00,76.80,19.20,0
+91.20,19.20,14.24,0.00,1.00,96.00,19.20,0
+96.00,19.20,14.20,0.00,1.00,110.40,19.20,0
+100.80,19.20,14.16,0.00,1.00,120.00,19.20,0
+105.60,19.20,14.12,0.00,1.00,134.40,19.20,0
+110.40,19.20,14.08,0.00,1.00,139.20,19.20,0
+115.20,14.40,14.04,0.00,1.00,148.80,14.40,0
+120.00,14.40,13.99,0.00,1.00,153.60,14.40,0
+124.80,14.40,13.95,0.00,1.00,158.40,14.40,0
+129.60,14.40,13.91,0.00,1.00,158.40,14.40,0
+134.40,14.40,13.87,0.00,1.00,163.20,14.40,0
+139.20,9.60,13.83,0.00,1.00,163.20,9.60,0
+144.00,9.60,13.79,0.00,1.00,168.00,9.60,0
+148.80,9.60,13.75,0.00,1.00,168.00,9.60,0
+153.60,9.60,13.71,0.00,1.00,172.80,4.80,0
+158.40,4.80,13.67,0.00,1.00,172.80,4.80,0
+163.20,4.80,13.63,0.00,1.00,172.80,4.80,0
+168.00,4.80,13.59,0.00,1.00,177.60,0.00,0
+172.80,0.00,13.55,0.00,1.00,177.60,0.00,0
+177.60,0.00,13.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,13.47,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,13.43,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,13.39,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,13.35,0.00,1.00,-172.80,-4.80,0
+-158.40,-4.80,13.31,0.00,1.00,-172.80,-9.60,0
+-153.60,-9.60,13.27,0.00,1.00,-172.80,-9.60,0
+-148.80,-9.60,13.23,0.00,1.00,-168.00,-9.60,0
+-144.00,-9.60,13.19,0.00,1.00,-168.00,-14.40,0
+-139.20,-9.60,13.15,0.00,1.00,-163.20,-14.40,0
+-134.40,-14.40,13.11,0.00,1.00,-163.20,-14.40,0
+-129.60,-14.40,13.07,0.00,1.00,-158.40,-14.40,0
+-124.80,-14.40,13.03,0.00,1.00,-158.40,-14.40,0
+-120.00,-14.40,12.99,0.00,1.00,-153.60,-19.20,0
+-115.20,-14.40,12.95,0.00,1.00,-148.80,-19.20,0
+-110.40,-19.20,12.91,0.00,1.00,-139.20,-19.20,0
+-105.60,-19.20,12.87,0.00,1.00,-134.40,-19.20,0
+-100.80,-19.20,12.83,0.00,1.00,-120.00,-19.20,0
+-96.00,-19.20,12.79,0.00,1.00,-110.40,-19.20,0
+-91.20,-19.20,12.75,0.00,1.00,-96.00,-19.20,0
+-86.40,-19.20,12.71,0.00,1.00,-76.80,-19.20,0
+-81.60,-19.20,12.67,0.00,1.00,-62.40,-19.20,0
+-76.80,-19.20,12.63,0.00,1.00,-52.80,-19.20,0
+-72.00,-19.20,12.59,0.00,1.00,-43.20,-19.20,0
+-67.20,-14.40,12.55,0.00,1.00,-38.40,-19.20,0
+-62.40,-14.40,12.51,0.00,1.00,-28.80,-14.40,0
+-57.60,-14.40,12.47,0.00,1.00,-24.00,-14.40,0
+-52.80,-14.40,12.43,0.00,1.00,-24.00,-14.40,0
+-48.00,-14.40,12.39,0.00,1.00,-19.20,-14.40,0
+-43.20,-14.40,12.35,0.00,1.00,-14.40,-9.60,0
+-38.40,-9.60,12.31,0.00,1.00,-14.40,-9.60,0
+-33.60,-9.60,12.27,0.00,1.00,-9.60,-9.60,0
+-28.80,-9.60,12.23,0.00,1.00,-9.60,-9.60,0
+-24.00,-9.60,12.19,0.00,1.00,-9.60,-4.80,0
+-19.20,-4.80,12.15,0.00,1.00,-4.80,-4.80,0
+-14.40,-4.80,12.11,0.00,1.00,-4.80,-4.80,0
+-9.60,-4.80,12.07,0.00,1.00,-4.80,-0.00,0
+-4.80,-0.00,12.03,0.00,1.00,-0.00,0.00,0
+0.00,0.00,11.99,0.00,1.00,0.00,0.00,0
+4.80,0.00,11.95,0.00,1.00,0.00,0.00,0
+9.60,0.00,11.91,0.00,1.00,0.00,4.80,0
+14.40,4.80,11.87,0.00,1.00,4.80,4.80,0
+19.20,4.80,11.83,0.00,1.00,4.80,4.80,0
+24.00,4.80,11.79,0.00,1.00,4.80,4.80,0
+28.80,4.80,11.75,0.00,1.00,4.80,9.60,0
+33.60,9.60,11.71,0.00,1.00,9.60,9.60,0
+38.40,9.60,11.67,0.00,1.00,9.60,9.60,0
+43.20,9.60,11.63,0.00,1.00,14.40,9.60,0
+48.00,9.60,11.59,0.00,1.00,14.40,9.60,0
+52.80,9.60,11.55,0.00,1.00,14.40,14.40,0
+57.60,9.60,11.51,0.00,1.00,19.20,14.40,0
+62.40,9.60,11.47,0.00,1.00,24.00,14.40,0
+67.20,14.40,11.43,0.00,1.00,28.80,14.40,0
+72.00,14.40,11.39,0.00,1.00,33.60,14.40,0
+76.80,14.40,11.35,0.00,1.00,43.20,14.40,0
+81.60,14.40,11.31,0.00,1.00,57.60,14.40,0
+86.40,14.40,11.27,0.00,1.00,76.80,14.40,0
+91.20,14.40,11.23,0.00,1.00,96.00,14.40,0
+96.00,14.40,11.19,0.00,1.00,115.20,14.40,0
+100.80,14.40,11.15,0.00,1.00,129.60,14.40,0
+105.60,14.40,11.11,0.00,1.00,139.20,14.40,0
+110.40,14.40,11.07,0.00,1.00,148.80,14.40,0
+115.20,9.60,11.03,0.00,1.00,153.60,14.40,0
+120.00,9.60,10.99,0.00,1.00,158.40,9.60,0
+124.80,9.60,10.95,0.00,1.00,163.20,9.60,0
+129.60,9.60,10.91,0.00,1.00,163.20,9.60,0
+134.40,9.60,10.87,0.00,1.00,168.00,9.60,0
+139.20,9.60,10.83,0.00,1.00,168.00,9.60,0
+144.00,9.60,10.79,0.00,1.00,172.80,9.60,0
+148.80,4.80,10.75,0.00,1.00,172.80,4.80,0
+153.60,4.80,10.71,0.00,1.00,172.80,4.80,0
+158.40,4.80,10.67,0.00,1.00,172.80,4.80,0
+163.20,4.80,10.63,0.00,1.00,177.60,4.80,0
+168.00,4.80,10.59,0.00,1.00,177.60,0.00,0
+172.80,0.00,10.55,0.00,1.00,177.60,0.00,0
+177.60,0.00,10.51,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,10.47,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,10.43,0.00,1.00,-177.60,-4.80,0
+-168.00,-4.80,10.39,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,10.35,0.00,1.00,-177.60,-4.80,0
+-158.40,-4.80,10.31,0.00,1.00,-172.80,-4.80,0
+-153.60,-4.80,10.27,0.00,1.00,-172.80,-9.60,0
+-148.80,-4.80,10.23,0.00,1.00,-172.80,-9.60,0
+-144.00,-9.60,10.19,0.00,1.00,-172.80,-9.60,0
+-139.20,-9.60,10.15,0.00,1.00,-168.00,-9.60,0
+-134.40,-9.60,10.11,0.00,1.00,-168.00,-9.60,0
+-129.60,-9.60,10.07,0.00,1.00,-163.20,-9.60,0
+-124.80,-9.60,10.03,0.00,1.00,-163.20,-14.40,0
+-120.00,-9.60,9.98,0.00,1.00,-158.40,-14.40,0
+-115.20,-9.60,9.94,0.00,1.00,-153.60,-14.40,0
+-110.40,-14.40,9.90,0.00,1.00,-148.80,-14.40,0
+-105.60,-14.40,9.86,0.00,1.00,-139.20,-14.40,0
+-100.80,-14.40,9.82,0.00,1.00,-129.60,-14.40,0
+-96.00,-14.40,9.78,0.00,1.00,-115.20,-14.40,0
+-91.20,-14.40,9.74,0.00,1.00,-96.00,-14.40,0
+-86.40,-14.40,9.70,0.00,1.00,-76.80,-14.40,0
+-81.60,-14.40,9.66,0.00,1.00,-57.60,-14.40,0
+-76.80,-14.40,9.62,0.00,1.00,-43.20,-14.40,0
+-72.00,-14.40,9.58,0.00,1.00,-33.60,-14.40,0
+-67.20,-14.40,9.54,0.00,1.00,-28.80,-14.40,0
+-62.40,-9.60,9.50,0.00,1.00,-24.00,-14.40,0
+-57.60,-9.60,9.46,0.00,1.00,-19.20,-9.60,0
+-52.80,-9.60,9.42,0.00,1.00,-14.40,-9.60,0
+-48.00,-9.60,9.38,0.00,1.00,-14.40,-9.60,0
+-43.20,-9.60,9.34,0.00,1.00,-14.40,-9.60,0
+-38.40,-9.60,9.30,0.00,1.00,-9.60,-9.60,0
+-33.60,-9.60,9.26,0.00,1.00,-9.60,-4.80,0
+-28.80,-4.80,9.22,0.00,1.00,-4.80,-4.80,0
+-24.00,-4.80,9.18,0.00,1.00,-4.80,-4.80,0
+-19.20,-4.80,9.14,0.00,1.00,-4.80,-4.80,0
+-14.40,-4.80,9.10,0.00,1.00,-4.80,-0.00,0
+-9.60,-0.00,9.06,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,9.02,0.00,1.00,-0.00,0.00,0
+0.00,0.00,8.98,0.00,1.00,0.00,0.00,0
+4.80,0.00,8.94,0.00,1.00,0.00,0.00,0
+9.60,0.00,8.90,0.00,1.00,0.00,0.00,0
+14.40,0.00,8.86,0.00,1.00,0.00,4.80,0
+19.20,4.80,8.82,0.00,1.00,4.80,4.80,0
+24.00,4.80,8.78,0.00,1.00,4.80,4.80,0
+28.80,4.80,8.74,0.00,1.00,4.80,4.80,0
+33.60,4.80,8.70,0.00,1.00,4.80,4.80,0
+38.40,4.80,8.66,0.00,1.00,4.80,4.80,0
+43.20,4.80,8.62,0.00,1.00,9.60,4.80,0
+48.00,4.80,8.58,0.00,1.00,9.60,9.60,0
+52.80,4.80,8.54,0.00,1.00,9.60,9.60,0
+57.60,4.80,8.50,0.00,1.00,14.40,9.60,0
+62.40,9.60,8.46,0.00,1.00,14.40,9.60,0
+67.20,9.60,8.42,0.00,1.00,19.20,9.60,0
+72.00,9.60,8.38,0.00,1.00,24.00,9.60,0
+76.80,9.60,8.34,0.00,1.00,33.60,9.60,0
+81.60,9.60,8.30,0.00,1.00,43.20,9.60,0
+86.40,9.60,8.26,0.00,1.00,67.20,9.60,0
+91.20,9.60,8.22,0.00,1.00,96.00,9.60,0
+96.00,9.60,8.18,0.00,1.00,124.80,9.60,0
+100.80,9.60,8.14,0.00,1.00,144.00,9.60,0
+105.60,9.60,8.10,0.00,1.00,153.60,9.60,0
+110.40,9.60,8.06,0.00,1.00,158.40,9.60,0
+115.20,9.60,8.02,0.00,1.00,163.20,9.60,0
+120.00,9.60,7.98,0.00,1.00,168.00,9.60,0
+124.80,4.80,7.94,0.00,1.00,168.00,9.60,0
+129.60,4.80,7.90,0.00,1.00,168.00,4.80,0
+134.40,4.80,7.86,0.00,1.00,172.80,4.80,0
+139.20,4.80,7.82,0.00,1.00,172.80,4.80,0
+144.00,4.80,7.78,0.00,1.00,172.80,4.80,0
+148.80,4.80,7.74,0.00,1.00,172.80,4.80,0
+153.60,4.80,7.70,0.00,1.00,177.60,4.80,0
+158.40,4.80,7.66,0.00,1.00,177.60,4.80,0
+163.20,4.80,7.62,0.00,1.00,177.60,0.00,0
+168.00,0.00,7.58,0.00,1.00,177.60,0.00,0
+172.80,0.00,7.54,0.00,1.00,177.60,0.00,0
+177.60,0.00,7.50,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,7.46,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,7.42,0.00,1.00,-177.60,-0.00,0
+-168.00,-0.00,7.38,0.00,1.00,-177.60,-4.80,0
+-163.20,-4.80,7.34,0.00,1.00,-177.60,-4.80,0
+-158.40,-4.80,7.30,0.00,1.00,-177.60,-4.80,0
+-153.60,-4.80,7.26,0.00,1.00,-177.60,-4.80,0
+-148.80,-4.80,7.22,0.00,1.00,-172.80,-4.80,0
+-144.00,-4.80,7.18,0.00,1.00,-172.80,-4.80,0
+-139.20,-4.80,7.14,0.00,1.00,-172.80,-4.80,0
+-134.40,-4.80,7.10,0.00,1.00,-172.80,-9.60,0
+-129.60,-4.80,7.06,0.00,1.00,-168.00,-9.60,0
+-124.80,-4.80,7.02,0.00,1.00,-168.00,-9.60,0
+-120.00,-9.60,6.98,0.00,1.00,-168.00,-9.60,0
+-115.20,-9.60,6.94,0.00,1.00,-163.20,-9.60,0
+-110.40,-9.60,6.90,0.00,1.00,-158.40,-9.60,0
+-105.60,-9.60,6.86,0.00,1.00,-153.60,-9.60,0
+-100.80,-9.60,6.82,0.00,1.00,-144.00,-9.60,0
+-96.00,-9.60,6.78,0.00,1.00,-124.80,-9.60,0
+-91.20,-9.60,6.74,0.00,1.00,-96.00,-9.60,0
+-86.40,-9.60,6.70,0.00,1.00,-67.20,-9.60,0
+-81.60,-9.60,6.66,0.00,1.00,-43.20,-9.60,0
+-76.80,-9.60,6.62,0.00,1.00,-33.60,-9.60,0
+-72.00,-9.60,6.58,0.00,1.00,-24.00,-9.60,0
+-67.20,-9.60,6.54,0.00,1.00,-19.20,-9.60,0
+-62.40,-9.60,6.50,0.00,1.00,-14.40,-9.60,0
+-57.60,-4.80,6.46,0.00,1.00,-14.40,-9.60,0
+-52.80,-4.80,6.42,0.00,1.00,-9.60,-4.80,0
+-48.00,-4.80,6.38,0.00,1.00,-9.60,-4.80,0
+-43.20,-4.80,6.34,0.00,1.00,-9.60,-4.80,0
+-38.40,-4.80,6.30,0.00,1.00,-4.80,-4.80,0
+-33.60,-4.80,6.26,0.00,1.00,-4.80,-4.80,0
+-28.80,-4.80,6.22,0.00,1.00,-4.80,-4.80,0
+-24.00,-4.80,6.18,0.00,1.00,-4.80,-4.80,0
+-19.20,-4.80,6.14,0.00,1.00,-4.80,-0.00,0
+-14.40,-0.00,6.10,0.00,1.00,-0.00,-0.00,0
+-9.60,-0.00,6.06,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,6.02,0.00,1.00,-0.00,0.00,0
+0.00,0.00,5.97,0.00,1.00,0.00,0.00,0
+4.80,0.00,5.93,0.00,1.00,0.00,0.00,0
+9.60,0.00,5.89,0.00,1.00,0.00,0.00,0
+14.40,0.00,5.85,0.00,1.00,0.00,0.00,0
+19.20,0.00,5.81,0.00,1.00,0.00,0.00,0
+24.00,0.00,5.77,0.00,1.00,0.00,0.00,0
+28.80,0.00,5.73,0.00,1.00,0.00,4.80,0
+33.60,0.00,5.69,0.00,1.00,0.00,4.80,0
+38.40,0.00,5.65,0.00,1.00,4.80,4.80,0
+43.20,4.80,5.61,0.00,1.00,4.80,4.80,0
+48.00,4.80,5.57,0.00,1.00,4.80,4.80,0
+52.80,4.80,5.53,0.00,1.00,4.80,4.80,0
+57.60,4.80,5.49,0.00,1.00,4.80,4.80,0
+62.40,4.80,5.45,0.00,1.00,4.80,4.80,0
+67.20,4.80,5.41,0.00,1.00,9.60,4.80,0
+72.00,4.80,5.37,0.00,1.00,9.60,4.80,0
+76.80,4.80,5.33,0.00,1.00,14.40,4.80,0
+81.60,4.80,5.29,0.00,1.00,24.00,4.80,0
+86.40,4.80,5.25,0.00,1.00,43.20,4.80,0
+91.20,4.80,5.21,0.00,1.00,110.40,4.80,0
+96.00,4.80,5.17,0.00,1.00,148.80,4.80,0
+100.80,4.80,5.13,0.00,1.00,163.20,4.80,0
+105.60,4.80,5.09,0.00,1.00,168.00,4.80,0
+110.40,4.80,5.05,0.00,1.00,172.80,4.80,0
+115.20,4.80,5.01,0.00,1.00,172.80,4.80,0
+120.00,4.80,4.97,0.00,1.00,172.80,4.80,0
+124.80,4.80,4.93,0.00,1.00,172.80,4.80,0
+129.60,4.80,4.89,0.00,1.00,177.60,4.80,0
+134.40,4.80,4.85,0.00,1.00,177.60,4.80,0
+139.20,0.00,4.81,0.00,1.00,177.60,4.80,0
+144.00,0.00,4.77,0.00,1.00,177.60,4.80,0
+148.80,0.00,4.73,0.00,1.00,177.60,0.00,0
+153.60,0.00,4.69,0.00,1.00,177.60,0.00,0
+158.40,0.00,4.65,0.00,1.00,177.60,0.00,0
+163.20,0.00,4.61,0.00,1.00,177.60,0.00,0
+168.00,0.00,4.57,0.00,1.00,177.60,0.00,0
+172.80,0.00,4.53,0.00,1.00,177.60,0.00,0
+177.60,0.00,4.49,0.00,1.00,177.60,-0.00,0
+-177.60,-0.00,4.45,0.00,1.00,-177.60,-0.00,0
+-172.80,-0.00,4.41,0.00,1.00,-177.60,-0.00,0
+-168.00,-0.00,4.37,0.00,1.00,-177.60,-0.00,0
+-163.20,-0.00,4.33,0.00,1.00,-177.60,-0.00,0
+-158.40,-0.00,4.29,0.00,1.00,-177.60,-0.00,0
+-153.60,-0.00,4.25,0.00,1.00,-177.60,-4.80,0
+-148.80,-0.00,4.21,0.00,1.00,-177.60,-4.80,0
+-144.00,-0.00,4.17,0.00,1.00,-177.60,-4.80,0
+-139.20,-0.00,4.13,0.00,1.00,-177.60,-4.80,0
+-134.40,-4.80,4.09,0.00,1.00,-177.60,-4.80,0
+-129.60,-4.80,4.05,0.00,1.00,-177.60,-4.80,0
+-124.80,-4.80,4.01,0.00,1.00,-172.80,-4.80,0
+-120.00,-4.80,3.97,0.00,1.00,-172.80,-4.80,0
+-115.20,-4.80,3.93,0.00,1.00,-172.80,-4.80,0
+-110.40,-4.80,3.89,0.00,1.00,-172.80,-4.80,0
+-105.60,-4.80,3.85,0.00,1.00,-168.00,-4.80,0
+-100.80,-4.80,3.81,0.00,1.00,-163.20,-4.80,0
+-96.00,-4.80,3.77,0.00,1.00,-148.80,-4.80,0
+-91.20,-4.80,3.73,0.00,1.00,-110.40,-4.80,0
+-86.40,-4.80,3.69,0.00,1.00,-43.20,-4.80,0
+-81.60,-4.80,3.65,0.00,1.00,-24.00,-4.80,0
+-76.80,-4.80,3.61,0.00,1.00,-14.40,-4.80,0
+-72.00,-4.80,3.57,0.00,1.00,-9.60,-4.80,0
+-67.20,-4.80,3.53,0.00,1.00,-9.60,-4.80,0
+-62.40,-4.80,3.49,0.00,1.00,-4.80,-4.80,0
+-57.60,-4.80,3.45,0.00,1.00,-4.80,-4.80,0
+-52.80,-4.80,3.41,0.00,1.00,-4.80,-4.80,0
+-48.00,-4.80,3.37,0.00,1.00,-4.80,-4.80,0
+-43.20,-4.80,3.33,0.00,1.00,-4.80,-4.80,0
+-38.40,-0.00,3.29,0.00,1.00,-4.80,-4.80,0
+-33.60,-0.00,3.25,0.00,1.00,-0.00,-0.00,0
+-28.80,-0.00,3.21,0.00,1.00,-0.00,-0.00,0
+-24.00,-0.00,3.17,0.00,1.00,-0.00,-0.00,0
+-19.20,-0.00,3.13,0.00,1.00,-0.00,-0.00,0
+-14.40,-0.00,3.09,0.00,1.00,-0.00,-0.00,0
+-9.60,-0.00,3.05,0.00,1.00,-0.00,-0.00,0
+-4.80,-0.00,3.01,0.00,1.00,-0.00,0.00,0
+0.00,0.00,2.97,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,2.93,0.00,1.00,-0.00,0.00,0
+9.60,-0.00,2.89,0.00,1.00,-0.00,0.00,0
+14.40,-0.00,2.85,0.00,1.00,-0.00,0.00,0
+19.20,-0.00,2.81,0.00,1.00,-0.00,0.00,0
+24.00,-0.00,2.77,0.00,1.00,-0.00,0.00,0
+28.80,-0.00,2.73,0.00,1.00,-0.00,0.00,0
+33.60,-0.00,2.69,0.00,1.00,-0.00,0.00,0
+38.40,-0.00,2.65,0.00,1.00,-0.00,0.00,0
+43.20,-0.00,2.61,0.00,1.00,-0.00,0.00,0
+48.00,-0.00,2.57,0.00,1.00,-0.00,0.00,0
+52.80,-0.00,2.53,0.00,1.00,-0.00,0.00,0
+57.60,-0.00,2.49,0.00,1.00,-0.00,0.00,0
+62.40,-0.00,2.45,0.00,1.00,-0.00,0.00,0
+67.20,-0.00,2.41,0.00,1.00,-4.80,0.00,0
+72.00,-0.00,2.37,0.00,1.00,-4.80,0.00,0
+76.80,-0.00,2.33,0.00,1.00,-4.80,0.00,0
+81.60,-0.00,2.29,0.00,1.00,-9.60,0.00,0
+86.40,-0.00,2.25,0.00,1.00,-19.20,0.00,0
+91.20,-0.00,2.21,0.00,1.00,-134.40,0.00,0
+96.00,-0.00,2.17,0.00,1.00,-168.00,0.00,0
+100.80,-0.00,2.13,0.00,1.00,-172.80,0.00,0
+105.60,-0.00,2.09,0.00,1.00,-177.60,0.00,0
+110.40,-0.00,2.05,0.00,1.00,-177.60,0.00,0
+115.20,-0.00,2.01,0.00,1.00,-177.60,0.00,0
+120.00,-0.00,1.96,0.00,1.00,-177.60,0.00,0
+124.80,-0.00,1.92,0.00,1.00,-177.60,0.00,0
+129.60,-0.00,1.88,0.00,1.00,-177.60,0.00,0
+134.40,-0.00,1.84,0.00,1.00,-177.60,0.00,0
+139.20,-0.00,1.80,0.00,1.00,-177.60,0.00,0
+144.00,-0.00,1.76,0.00,1.00,-177.60,0.00,0
+148.80,-0.00,1.72,0.00,1.00,-177.60,0.00,0
+153.60,-0.00,1.68,0.00,1.00,-177.60,0.00,0
+158.40,-0.00,1.64,0.00,1.00,-177.60,0.00,0
+163.20,-0.00,1.60,0.00,1.00,-177.60,0.00,0
+168.00,-0.00,1.56,0.00,1.00,-177.60,0.00,0
+172.80,-0.00,1.52,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,1.48,0.00,1.00,-177.60,0.00,0
+-177.60,0.00,1.44,0.00,1.00,177.60,0.00,0
+-172.80,0.00,1.40,0.00,1.00,177.60,0.00,0
+-168.00,0.00,1.36,0.00,1.00,177.60,0.00,0
+-163.20,0.00,1.32,0.00,1.00,177.60,0.00,0
+-158.40,0.00,1.28,0.00,1.00,177.60,0.00,0
+-153.60,0.00,1.24,0.00,1.00,177.60,0.00,0
+-148.80,0.00,1.20,0.00,1.00,177.60,0.00,0
+-144.00,0.00,1.16,0.00,1.00,177.60,0.00,0
+-139.20,0.00,1.12,0.00,1.00,177.60,0.00,0
+-134.40,0.00,1.08,0.00,1.00,177.60,0.00,0
+-129.60,0.00,1.04,0.00,1.00,177.60,0.00,0
+-124.80,0.00,1.00,0.00,1.00,177.60,0.00,0
+-120.00,0.00,0.96,0.00,1.00,177.60,0.00,0
+-115.20,0.00,0.92,0.00,1.00,177.60,0.00,0
+-110.40,0.00,0.88,0.00,1.00,177.60,0.00,0
+-105.60,0.00,0.84,0.00,1.00,177.60,0.00,0
+-100.80,0.00,0.80,0.00,1.00,172.80,0.00,0
+-96.00,0.00,0.76,0.00,1.00,168.00,0.00,0
+-91.20,0.00,0.72,0.00,1.00,134.40,0.00,0
+-86.40,0.00,0.68,0.00,1.00,19.20,0.00,0
+-81.60,0.00,0.64,0.00,1.00,9.60,0.00,0
+-76.80,0.00,0.60,0.00,1.00,4.80,0.00,0
+-72.00,0.00,0.56,0.00,1.00,4.80,0.00,0
+-67.20,0.00,0.52,0.00,1.00,4.80,0.00,0
+-62.40,0.00,0.48,0.00,1.00,0.00,0.00,0
+-57.60,0.00,0.44,0.00,1.00,0.00,0.00,0
+-52.80,0.00,0.40,0.00,1.00,0.00,0.00,0
+-48.00,0.00,0.36,0.00,1.00,0.00,0.00,0
+-43.20,0.00,0.32,0.00,1.00,0.00,0.00,0
+-38.40,0.00,0.28,0.00,1.00,0.00,0.00,0
+-33.60,0.00,0.24,0.00,1.00,0.00,0.00,0
+-28.80,0.00,0.20,0.00,1.00,0.00,0.00,0
+-24.00,0.00,0.16,0.00,1.00,0.00,0.00,0
+-19.20,0.00,0.12,0.00,1.00,0.00,0.00,0
+-14.40,0.00,0.08,0.00,1.00,0.00,0.00,0
+-9.60,0.00,0.04,0.00,1.00,0.00,0.00,0
+-4.80,0.00,0.00,0.00,1.00,0.00,0.00,0
diff --git a/scripts/testv/stvOSBA_1ISM_2OA16c.wav b/scripts/testv/stvOSBA_1ISM_2OA16c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..c44fccaa735dbf3a2d5bd1daf801deb6cf7af4ed
--- /dev/null
+++ b/scripts/testv/stvOSBA_1ISM_2OA16c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:be86c330a7fb2082c8583fbe17b548aea454e96e6b96ad7924f626a61143cc58
+size 6400224
diff --git a/scripts/testv/stvOSBA_1ISM_2OA16c_ISM1.csv b/scripts/testv/stvOSBA_1ISM_2OA16c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOSBA_1ISM_2OA16c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOSBA_1ISM_2OA32c.wav b/scripts/testv/stvOSBA_1ISM_2OA32c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..67517d7e5c272c350e0c3c6dde2fb594395f61a6
--- /dev/null
+++ b/scripts/testv/stvOSBA_1ISM_2OA32c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:21a8069a2c6c636a5a90aa8a83dbf3b6f11ebc4ecf030661e4fa83c14b257e1f
+size 12800384
diff --git a/scripts/testv/stvOSBA_1ISM_2OA32c_ISM1.csv b/scripts/testv/stvOSBA_1ISM_2OA32c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOSBA_1ISM_2OA32c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOSBA_1ISM_2OA48c_ISM1.csv b/scripts/testv/stvOSBA_1ISM_2OA48c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOSBA_1ISM_2OA48c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOSBA_1ISM_3OA16c.wav b/scripts/testv/stvOSBA_1ISM_3OA16c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..fdce566906e4c0d1e0c91f9252efdb5a766593b1
--- /dev/null
+++ b/scripts/testv/stvOSBA_1ISM_3OA16c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:86afe884f3d3edf0362dc6be698c6c5f1fa7830a10895c0641532173cb822670
+size 10880350
diff --git a/scripts/testv/stvOSBA_1ISM_3OA16c_ISM1.csv b/scripts/testv/stvOSBA_1ISM_3OA16c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOSBA_1ISM_3OA16c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOSBA_1ISM_3OA32c.wav b/scripts/testv/stvOSBA_1ISM_3OA32c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..4d17f574ffa1f4f13642db64db7a7ca8a78c3998
--- /dev/null
+++ b/scripts/testv/stvOSBA_1ISM_3OA32c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:933c1c85ed3f4500ce42340a3c728861d157b531cb041fcaaa554ee5e351f249
+size 21760622
diff --git a/scripts/testv/stvOSBA_1ISM_3OA32c_ISM1.csv b/scripts/testv/stvOSBA_1ISM_3OA32c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOSBA_1ISM_3OA32c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOSBA_1ISM_3OA48c_ISM1.csv b/scripts/testv/stvOSBA_1ISM_3OA48c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOSBA_1ISM_3OA48c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOSBA_1ISM_FOA16c.wav b/scripts/testv/stvOSBA_1ISM_FOA16c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..a70f6af2931a7423736b790b3922f5a39fb30c48
--- /dev/null
+++ b/scripts/testv/stvOSBA_1ISM_FOA16c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4604a7f4b394fb0093e591b06aa7784721c30d194a3f8967934929b04dd90b92
+size 3200134
diff --git a/scripts/testv/stvOSBA_1ISM_FOA16c_ISM1.csv b/scripts/testv/stvOSBA_1ISM_FOA16c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOSBA_1ISM_FOA16c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOSBA_1ISM_FOA32c.wav b/scripts/testv/stvOSBA_1ISM_FOA32c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..aaa24af187823a124522473c6d0584a1d4b17313
--- /dev/null
+++ b/scripts/testv/stvOSBA_1ISM_FOA32c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:39b6a76d82b86fc7ed8896435fd55f22f262352fe92909068b015974c32f88b9
+size 6400214
diff --git a/scripts/testv/stvOSBA_1ISM_FOA32c_ISM1.csv b/scripts/testv/stvOSBA_1ISM_FOA32c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOSBA_1ISM_FOA32c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOSBA_1ISM_FOA48c_ISM1.csv b/scripts/testv/stvOSBA_1ISM_FOA48c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOSBA_1ISM_FOA48c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOSBA_2ISM_2OA16c.wav b/scripts/testv/stvOSBA_2ISM_2OA16c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..e0124840a1c75bc8973c5806d7460d25fdf7cbe1
--- /dev/null
+++ b/scripts/testv/stvOSBA_2ISM_2OA16c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f0f22f3132cd206f2ec61cb658596d3182d8446f2668645f58b3ca16a9777c36
+size 7040242
diff --git a/scripts/testv/stvOSBA_2ISM_2OA16c_ISM1.csv b/scripts/testv/stvOSBA_2ISM_2OA16c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOSBA_2ISM_2OA16c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOSBA_2ISM_2OA16c_ISM2.csv b/scripts/testv/stvOSBA_2ISM_2OA16c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOSBA_2ISM_2OA16c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOSBA_2ISM_2OA32c.wav b/scripts/testv/stvOSBA_2ISM_2OA32c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..0a07174cccdc00f02c2a767872456a038988a184
--- /dev/null
+++ b/scripts/testv/stvOSBA_2ISM_2OA32c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ba01d8f09a5b35df208d37a1613c516fc8eda66115e625549e9cf803702fc440
+size 14080418
diff --git a/scripts/testv/stvOSBA_2ISM_2OA32c_ISM1.csv b/scripts/testv/stvOSBA_2ISM_2OA32c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOSBA_2ISM_2OA32c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOSBA_2ISM_2OA32c_ISM2.csv b/scripts/testv/stvOSBA_2ISM_2OA32c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOSBA_2ISM_2OA32c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOSBA_2ISM_2OA48c_ISM1.csv b/scripts/testv/stvOSBA_2ISM_2OA48c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOSBA_2ISM_2OA48c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOSBA_2ISM_2OA48c_ISM2.csv b/scripts/testv/stvOSBA_2ISM_2OA48c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOSBA_2ISM_2OA48c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOSBA_2ISM_3OA16c.wav b/scripts/testv/stvOSBA_2ISM_3OA16c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..0719267572e3765acf3ebdd9ff02be912ccf362f
--- /dev/null
+++ b/scripts/testv/stvOSBA_2ISM_3OA16c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1818a12849c9ed08a3b164bec6afaa8eb981ef0620593abca813afbe1b32cfed
+size 11520368
diff --git a/scripts/testv/stvOSBA_2ISM_3OA16c_ISM1.csv b/scripts/testv/stvOSBA_2ISM_3OA16c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOSBA_2ISM_3OA16c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOSBA_2ISM_3OA16c_ISM2.csv b/scripts/testv/stvOSBA_2ISM_3OA16c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOSBA_2ISM_3OA16c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOSBA_2ISM_3OA32c_ISM1.csv b/scripts/testv/stvOSBA_2ISM_3OA32c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOSBA_2ISM_3OA32c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOSBA_2ISM_3OA32c_ISM2.csv b/scripts/testv/stvOSBA_2ISM_3OA32c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOSBA_2ISM_3OA32c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOSBA_2ISM_3OA48c_ISM1.csv b/scripts/testv/stvOSBA_2ISM_3OA48c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOSBA_2ISM_3OA48c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOSBA_2ISM_3OA48c_ISM2.csv b/scripts/testv/stvOSBA_2ISM_3OA48c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOSBA_2ISM_3OA48c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOSBA_2ISM_FOA16c.wav b/scripts/testv/stvOSBA_2ISM_FOA16c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..e8992c45d19cba215f98ebb5b42e401910ab92d9
--- /dev/null
+++ b/scripts/testv/stvOSBA_2ISM_FOA16c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:94b4643484c540e5ee1b2e3d1344ad8559d362770c32586947f063682423a8c5
+size 3840152
diff --git a/scripts/testv/stvOSBA_2ISM_FOA16c_ISM1.csv b/scripts/testv/stvOSBA_2ISM_FOA16c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOSBA_2ISM_FOA16c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOSBA_2ISM_FOA16c_ISM2.csv b/scripts/testv/stvOSBA_2ISM_FOA16c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOSBA_2ISM_FOA16c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOSBA_2ISM_FOA32c.wav b/scripts/testv/stvOSBA_2ISM_FOA32c.wav
new file mode 100644
index 0000000000000000000000000000000000000000..7fb0261e6753605748e83f889f9bfb95c76da452
--- /dev/null
+++ b/scripts/testv/stvOSBA_2ISM_FOA32c.wav
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b37afcf97230bf95e7fd7ba3e7be4d7b880e98c6d574b53e3328291522b484fa
+size 7680248
diff --git a/scripts/testv/stvOSBA_2ISM_FOA32c_ISM1.csv b/scripts/testv/stvOSBA_2ISM_FOA32c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOSBA_2ISM_FOA32c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOSBA_2ISM_FOA32c_ISM2.csv b/scripts/testv/stvOSBA_2ISM_FOA32c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOSBA_2ISM_FOA32c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOSBA_2ISM_FOA48c_ISM1.csv b/scripts/testv/stvOSBA_2ISM_FOA48c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOSBA_2ISM_FOA48c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOSBA_2ISM_FOA48c_ISM2.csv b/scripts/testv/stvOSBA_2ISM_FOA48c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOSBA_2ISM_FOA48c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0
+177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0
+172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0
+172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0
+168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0
+168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0
+168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0
+163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0
+158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0
+153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0
+144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0
+124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0
+96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0
+67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0
+43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0
+33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0
+24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0
+19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0
+14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0
+14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0
+9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0
+9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0
+9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0
+4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0
+4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0
+0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,11.19,0.00,1.00,0.00,0.00,0
+-0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,11.15,0.00,1.00,9.60,9.60,0
+-4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,11.11,0.00,1.00,14.40,19.20,0
+-4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,11.07,0.00,1.00,24.00,28.80,0
+-9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0
+-14.40,43.20,11.02,0.00,1.00,33.60,38.40,0
+-14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0
+-14.40,52.80,10.98,0.00,1.00,43.20,48.00,0
+-19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0
+-24.00,57.60,10.94,0.00,1.00,52.80,52.80,0
+-28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0
+-33.60,67.20,10.89,0.00,1.00,62.40,62.40,0
+-43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0
+-57.60,72.00,10.85,0.00,1.00,76.80,72.00,0
+-76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0
+-96.00,76.80,10.81,0.00,1.00,86.40,76.80,0
+-115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0
+-129.60,72.00,10.77,0.00,1.00,96.00,76.80,0
+-139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0
+-148.80,67.20,10.72,0.00,1.00,105.60,67.20,0
+-153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0
+-158.40,57.60,10.68,0.00,1.00,120.00,62.40,0
+-163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0
+-163.20,48.00,10.64,0.00,1.00,129.60,52.80,0
+-168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0
+-168.00,38.40,10.60,0.00,1.00,139.20,43.20,0
+-172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0
+-172.80,28.80,10.55,0.00,1.00,148.80,33.60,0
+-172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,10.51,0.00,1.00,158.40,24.00,0
+-177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,10.47,0.00,1.00,163.20,14.40,0
+-177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,10.42,0.00,1.00,172.80,4.80,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0
+172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0
+172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0
+168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0
+168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0
+163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0
+163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0
+158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0
+153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0
+148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0
+139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0
+129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0
+115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0
+96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0
+76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0
+57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0
+43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0
+33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0
+28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0
+24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0
+19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0
+14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0
+14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0
+14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0
+9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0
+9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0
+4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0
+4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0
+4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0
+0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,9.59,0.00,1.00,0.00,0.00,0
+-4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,9.55,0.00,1.00,9.60,9.60,0
+-4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,9.51,0.00,1.00,19.20,19.20,0
+-9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0
+-9.60,33.60,9.46,0.00,1.00,24.00,28.80,0
+-14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0
+-14.40,38.40,9.42,0.00,1.00,33.60,33.60,0
+-19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0
+-24.00,48.00,9.38,0.00,1.00,43.20,43.20,0
+-24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0
+-28.80,57.60,9.34,0.00,1.00,52.80,52.80,0
+-38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0
+-43.20,62.40,9.29,0.00,1.00,67.20,62.40,0
+-52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0
+-62.40,72.00,9.25,0.00,1.00,76.80,67.20,0
+-76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0
+-96.00,72.00,9.21,0.00,1.00,86.40,72.00,0
+-110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0
+-120.00,67.20,9.16,0.00,1.00,96.00,72.00,0
+-134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0
+-139.20,62.40,9.12,0.00,1.00,105.60,67.20,0
+-148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0
+-153.60,57.60,9.08,0.00,1.00,115.20,57.60,0
+-158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0
+-158.40,48.00,9.04,0.00,1.00,129.60,52.80,0
+-163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0
+-163.20,38.40,8.99,0.00,1.00,139.20,43.20,0
+-168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,8.95,0.00,1.00,148.80,33.60,0
+-172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,8.91,0.00,1.00,153.60,24.00,0
+-172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,8.87,0.00,1.00,163.20,14.40,0
+-177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,8.82,0.00,1.00,172.80,4.80,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0
+172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0
+168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0
+163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0
+163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0
+158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0
+158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0
+153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0
+148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0
+139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0
+134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0
+120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0
+110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0
+96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0
+76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0
+62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0
+52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0
+43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0
+38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0
+28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0
+24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0
+24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0
+19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0
+14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0
+14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0
+9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0
+9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0
+9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0
+4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0
+0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,7.99,0.00,1.00,0.00,0.00,0
+-4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,7.95,0.00,1.00,9.60,9.60,0
+-9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0
+-9.60,24.00,7.90,0.00,1.00,19.20,19.20,0
+-14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0
+-14.40,28.80,7.86,0.00,1.00,28.80,24.00,0
+-19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0
+-19.20,38.40,7.82,0.00,1.00,38.40,33.60,0
+-24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0
+-28.80,48.00,7.78,0.00,1.00,48.00,43.20,0
+-33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0
+-38.40,52.80,7.73,0.00,1.00,57.60,52.80,0
+-43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0
+-48.00,62.40,7.69,0.00,1.00,67.20,57.60,0
+-57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0
+-67.20,67.20,7.65,0.00,1.00,76.80,62.40,0
+-81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0
+-91.20,67.20,7.60,0.00,1.00,86.40,67.20,0
+-105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0
+-115.20,67.20,7.56,0.00,1.00,96.00,67.20,0
+-124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0
+-134.40,57.60,7.52,0.00,1.00,105.60,62.40,0
+-139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0
+-144.00,52.80,7.48,0.00,1.00,115.20,57.60,0
+-148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0
+-153.60,43.20,7.43,0.00,1.00,124.80,48.00,0
+-158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0
+-163.20,38.40,7.39,0.00,1.00,134.40,38.40,0
+-163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0
+-168.00,28.80,7.35,0.00,1.00,144.00,33.60,0
+-168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0
+-172.80,19.20,7.31,0.00,1.00,153.60,24.00,0
+-172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,7.26,0.00,1.00,163.20,14.40,0
+-177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,7.22,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0
+172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0
+168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0
+163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0
+158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0
+153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0
+148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0
+144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0
+139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0
+134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0
+124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0
+115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0
+105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0
+91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0
+81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0
+67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0
+57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0
+48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0
+43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0
+38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0
+33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0
+28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0
+24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0
+19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0
+19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0
+14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0
+9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0
+4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0
+4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0
+0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,6.39,0.00,1.00,0.00,0.00,0
+-4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0
+-4.80,14.40,6.34,0.00,1.00,9.60,9.60,0
+-9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0
+-9.60,19.20,6.30,0.00,1.00,19.20,14.40,0
+-14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,6.26,0.00,1.00,28.80,24.00,0
+-19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0
+-24.00,38.40,6.22,0.00,1.00,38.40,33.60,0
+-28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0
+-33.60,43.20,6.17,0.00,1.00,48.00,38.40,0
+-38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0
+-43.20,52.80,6.13,0.00,1.00,57.60,48.00,0
+-48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0
+-52.80,57.60,6.09,0.00,1.00,67.20,52.80,0
+-62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0
+-72.00,62.40,6.05,0.00,1.00,76.80,57.60,0
+-81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0
+-91.20,62.40,6.00,0.00,1.00,86.40,62.40,0
+-100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0
+-110.40,62.40,5.96,0.00,1.00,96.00,62.40,0
+-120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0
+-129.60,57.60,5.92,0.00,1.00,105.60,57.60,0
+-134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0
+-139.20,48.00,5.87,0.00,1.00,115.20,52.80,0
+-144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0
+-148.80,43.20,5.83,0.00,1.00,124.80,48.00,0
+-153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0
+-158.40,33.60,5.79,0.00,1.00,134.40,38.40,0
+-163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0
+-163.20,28.80,5.75,0.00,1.00,144.00,28.80,0
+-168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0
+-168.00,19.20,5.70,0.00,1.00,153.60,24.00,0
+-172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,5.66,0.00,1.00,163.20,14.40,0
+-177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,5.62,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0
+168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0
+163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0
+163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0
+158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0
+148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0
+144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0
+139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0
+134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0
+129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0
+120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0
+110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0
+100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0
+91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0
+81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0
+72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0
+62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0
+52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0
+48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0
+43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0
+38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0
+33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0
+28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0
+24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0
+19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0
+19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0
+14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0
+9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0
+9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0
+4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0
+0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0
+0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,4.79,0.00,1.00,0.00,0.00,0
+-4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0
+-9.60,14.40,4.74,0.00,1.00,9.60,9.60,0
+-9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,4.70,0.00,1.00,19.20,14.40,0
+-14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0
+-19.20,28.80,4.66,0.00,1.00,28.80,24.00,0
+-24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0
+-28.80,33.60,4.61,0.00,1.00,38.40,28.80,0
+-28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0
+-33.60,43.20,4.57,0.00,1.00,48.00,38.40,0
+-38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0
+-48.00,48.00,4.53,0.00,1.00,57.60,43.20,0
+-52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0
+-57.60,52.80,4.49,0.00,1.00,67.20,48.00,0
+-67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0
+-76.80,57.60,4.44,0.00,1.00,76.80,52.80,0
+-81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0
+-91.20,57.60,4.40,0.00,1.00,86.40,57.60,0
+-100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0
+-110.40,57.60,4.36,0.00,1.00,96.00,57.60,0
+-115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0
+-124.80,52.80,4.32,0.00,1.00,105.60,52.80,0
+-129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0
+-139.20,48.00,4.27,0.00,1.00,115.20,48.00,0
+-144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0
+-148.80,38.40,4.23,0.00,1.00,124.80,43.20,0
+-153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,4.19,0.00,1.00,134.40,38.40,0
+-158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0
+-163.20,24.00,4.14,0.00,1.00,144.00,28.80,0
+-163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,4.10,0.00,1.00,153.60,24.00,0
+-172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0
+-172.80,9.60,4.06,0.00,1.00,163.20,14.40,0
+-177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,4.02,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0
+172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0
+163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0
+163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0
+158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0
+153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0
+148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0
+144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0
+139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0
+129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0
+124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0
+115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0
+110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0
+100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0
+91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0
+81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0
+76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0
+67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0
+57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0
+52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0
+48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0
+38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0
+33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0
+28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0
+28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0
+24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0
+19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0
+14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0
+14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0
+9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0
+0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.18,0.00,1.00,0.00,0.00,0
+-4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,3.14,0.00,1.00,9.60,9.60,0
+-9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,3.10,0.00,1.00,19.20,14.40,0
+-19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,3.05,0.00,1.00,28.80,24.00,0
+-24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0
+-28.80,33.60,3.01,0.00,1.00,38.40,28.80,0
+-33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0
+-38.40,38.40,2.97,0.00,1.00,48.00,33.60,0
+-43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0
+-48.00,43.20,2.93,0.00,1.00,57.60,43.20,0
+-52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0
+-62.40,48.00,2.88,0.00,1.00,67.20,48.00,0
+-67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0
+-76.80,52.80,2.84,0.00,1.00,76.80,48.00,0
+-86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0
+-91.20,52.80,2.80,0.00,1.00,86.40,52.80,0
+-100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0
+-105.60,52.80,2.76,0.00,1.00,96.00,52.80,0
+-115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0
+-120.00,48.00,2.71,0.00,1.00,105.60,48.00,0
+-129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0
+-134.40,43.20,2.67,0.00,1.00,115.20,43.20,0
+-139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0
+-144.00,38.40,2.63,0.00,1.00,124.80,38.40,0
+-148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0
+-153.60,33.60,2.58,0.00,1.00,134.40,33.60,0
+-158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,2.54,0.00,1.00,144.00,28.80,0
+-163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0
+-168.00,19.20,2.50,0.00,1.00,153.60,19.20,0
+-168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.46,0.00,1.00,163.20,14.40,0
+-177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.41,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0
+168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0
+158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0
+153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0
+148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0
+144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0
+139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0
+134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0
+129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0
+120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0
+115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0
+105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0
+100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0
+91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0
+86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0
+76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0
+67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0
+62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0
+52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0
+48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0
+43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0
+38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0
+33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0
+28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0
+24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0
+24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0
+19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0
+9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0
+4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0
+0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.58,0.00,1.00,0.00,0.00,0
+-4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.54,0.00,1.00,9.60,4.80,0
+-14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0
+-14.40,19.20,1.50,0.00,1.00,19.20,14.40,0
+-19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0
+-24.00,24.00,1.45,0.00,1.00,28.80,19.20,0
+-28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,1.41,0.00,1.00,38.40,28.80,0
+-38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0
+-43.20,38.40,1.37,0.00,1.00,48.00,33.60,0
+-48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0
+-52.80,43.20,1.32,0.00,1.00,57.60,38.40,0
+-57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0
+-62.40,43.20,1.28,0.00,1.00,67.20,43.20,0
+-72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0
+-76.80,48.00,1.24,0.00,1.00,76.80,43.20,0
+-86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0
+-91.20,48.00,1.20,0.00,1.00,86.40,48.00,0
+-100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0
+-105.60,48.00,1.15,0.00,1.00,96.00,48.00,0
+-110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0
+-120.00,43.20,1.11,0.00,1.00,105.60,43.20,0
+-124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0
+-129.60,38.40,1.07,0.00,1.00,115.20,43.20,0
+-134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0
+-139.20,33.60,1.03,0.00,1.00,124.80,38.40,0
+-144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0
+-148.80,28.80,0.98,0.00,1.00,134.40,33.60,0
+-153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0
+-158.40,24.00,0.94,0.00,1.00,144.00,24.00,0
+-163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0
+-163.20,14.40,0.90,0.00,1.00,153.60,19.20,0
+-168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.85,0.00,1.00,163.20,14.40,0
+-172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.81,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0
+168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0
+163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0
+158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0
+148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0
+144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0
+139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0
+134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0
+129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0
+124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0
+120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0
+110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0
+105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0
+100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0
+91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0
+86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0
+76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0
+72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0
+62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0
+57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0
+52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0
+48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0
+43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0
+38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0
+28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0
+19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0
+14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0
+9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0
+0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,0.00,0.00,1.00,0.00,0.00,0
+-4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,0.04,0.00,1.00,9.60,4.80,0
+-14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,0.09,0.00,1.00,19.20,14.40,0
+-24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0
+-24.00,24.00,0.13,0.00,1.00,28.80,19.20,0
+-28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0
+-33.60,28.80,0.17,0.00,1.00,38.40,24.00,0
+-38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0
+-43.20,33.60,0.21,0.00,1.00,48.00,28.80,0
+-48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0
+-52.80,38.40,0.26,0.00,1.00,57.60,33.60,0
+-62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0
+-67.20,38.40,0.30,0.00,1.00,67.20,38.40,0
+-72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0
+-76.80,43.20,0.34,0.00,1.00,76.80,38.40,0
+-86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0
+-91.20,43.20,0.38,0.00,1.00,86.40,43.20,0
+-96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0
+-105.60,43.20,0.43,0.00,1.00,96.00,43.20,0
+-110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0
+-115.20,38.40,0.47,0.00,1.00,105.60,38.40,0
+-124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0
+-129.60,38.40,0.51,0.00,1.00,115.20,38.40,0
+-134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0
+-139.20,33.60,0.56,0.00,1.00,124.80,33.60,0
+-144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0
+-148.80,28.80,0.60,0.00,1.00,134.40,28.80,0
+-153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0
+-158.40,19.20,0.64,0.00,1.00,144.00,24.00,0
+-158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,0.68,0.00,1.00,153.60,19.20,0
+-168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,0.73,0.00,1.00,163.20,9.60,0
+-172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,0.77,0.00,1.00,172.80,4.80,0
+177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0
+158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0
+158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0
+153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0
+148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0
+144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0
+139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0
+134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0
+129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0
+124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0
+115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0
+110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0
+105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0
+96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0
+91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0
+86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0
+76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0
+72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0
+67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0
+62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0
+52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0
+48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0
+43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0
+38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0
+33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0
+28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0
+24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0
+19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0
+14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0
+4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0
+0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,1.60,0.00,1.00,0.00,0.00,0
+-9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0
+-9.60,9.60,1.64,0.00,1.00,9.60,4.80,0
+-14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,1.69,0.00,1.00,19.20,9.60,0
+-24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,1.73,0.00,1.00,28.80,19.20,0
+-33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,1.77,0.00,1.00,38.40,24.00,0
+-43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0
+-48.00,28.80,1.82,0.00,1.00,48.00,28.80,0
+-52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0
+-57.60,33.60,1.86,0.00,1.00,57.60,28.80,0
+-62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0
+-67.20,38.40,1.90,0.00,1.00,67.20,33.60,0
+-72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0
+-81.60,38.40,1.94,0.00,1.00,76.80,38.40,0
+-86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0
+-91.20,38.40,1.99,0.00,1.00,86.40,38.40,0
+-96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0
+-105.60,38.40,2.03,0.00,1.00,96.00,38.40,0
+-110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0
+-115.20,33.60,2.07,0.00,1.00,105.60,33.60,0
+-120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0
+-124.80,33.60,2.11,0.00,1.00,115.20,33.60,0
+-129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0
+-134.40,28.80,2.16,0.00,1.00,124.80,28.80,0
+-139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0
+-144.00,24.00,2.20,0.00,1.00,134.40,24.00,0
+-148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0
+-153.60,19.20,2.24,0.00,1.00,144.00,19.20,0
+-158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0
+-163.20,14.40,2.29,0.00,1.00,153.60,14.40,0
+-168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0
+-172.80,9.60,2.33,0.00,1.00,163.20,9.60,0
+-172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,2.37,0.00,1.00,172.80,4.80,0
+177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0
+172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0
+163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0
+153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0
+144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0
+134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0
+124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0
+120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0
+115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0
+110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0
+105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0
+96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0
+91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0
+86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0
+81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0
+72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0
+67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0
+62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0
+57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0
+52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0
+48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0
+43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0
+38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0
+33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0
+28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0
+24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0
+14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0
+9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0
+-4.80,4.80,3.20,0.00,1.00,0.00,0.00,0
+-9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0
+-14.40,9.60,3.25,0.00,1.00,9.60,4.80,0
+-14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0
+-19.20,14.40,3.29,0.00,1.00,19.20,9.60,0
+-24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0
+-28.80,19.20,3.33,0.00,1.00,28.80,14.40,0
+-33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0
+-38.40,24.00,3.38,0.00,1.00,38.40,19.20,0
+-43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,3.42,0.00,1.00,48.00,24.00,0
+-52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0
+-57.60,28.80,3.46,0.00,1.00,57.60,28.80,0
+-62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0
+-67.20,33.60,3.50,0.00,1.00,67.20,28.80,0
+-72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0
+-81.60,33.60,3.55,0.00,1.00,76.80,33.60,0
+-86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0
+-91.20,33.60,3.59,0.00,1.00,86.40,33.60,0
+-96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0
+-100.80,33.60,3.63,0.00,1.00,96.00,33.60,0
+-110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0
+-115.20,33.60,3.67,0.00,1.00,105.60,28.80,0
+-120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0
+-124.80,28.80,3.72,0.00,1.00,115.20,28.80,0
+-129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0
+-134.40,24.00,3.76,0.00,1.00,124.80,24.00,0
+-139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0
+-144.00,19.20,3.80,0.00,1.00,134.40,24.00,0
+-148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,3.85,0.00,1.00,144.00,19.20,0
+-158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,3.89,0.00,1.00,153.60,14.40,0
+-168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,3.93,0.00,1.00,163.20,9.60,0
+-172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,3.97,0.00,1.00,172.80,4.80,0
+177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0
+168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0
+148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0
+139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0
+129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0
+124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0
+120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0
+115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0
+110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0
+100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0
+96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0
+91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0
+86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0
+81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0
+72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0
+67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0
+62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0
+57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0
+52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0
+48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0
+43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0
+38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0
+33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0
+28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0
+24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0
+19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0
+14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0
+14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0
+4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0
+-4.80,0.00,4.81,0.00,1.00,0.00,0.00,0
+-9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,4.85,0.00,1.00,9.60,4.80,0
+-19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0
+-19.20,9.60,4.89,0.00,1.00,19.20,9.60,0
+-24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0
+-28.80,14.40,4.93,0.00,1.00,28.80,14.40,0
+-33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0
+-38.40,19.20,4.98,0.00,1.00,38.40,14.40,0
+-43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0
+-48.00,24.00,5.02,0.00,1.00,48.00,19.20,0
+-52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0
+-57.60,24.00,5.06,0.00,1.00,57.60,24.00,0
+-62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0
+-72.00,28.80,5.11,0.00,1.00,67.20,24.00,0
+-76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0
+-81.60,28.80,5.15,0.00,1.00,76.80,28.80,0
+-86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0
+-91.20,28.80,5.19,0.00,1.00,86.40,28.80,0
+-96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0
+-100.80,28.80,5.23,0.00,1.00,96.00,28.80,0
+-105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0
+-115.20,28.80,5.28,0.00,1.00,105.60,28.80,0
+-120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0
+-124.80,24.00,5.32,0.00,1.00,115.20,24.00,0
+-129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0
+-134.40,24.00,5.36,0.00,1.00,124.80,24.00,0
+-139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0
+-144.00,19.20,5.40,0.00,1.00,134.40,19.20,0
+-148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0
+-153.60,14.40,5.45,0.00,1.00,144.00,14.40,0
+-158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0
+-163.20,9.60,5.49,0.00,1.00,153.60,9.60,0
+-163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,5.53,0.00,1.00,163.20,9.60,0
+-172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,5.58,0.00,1.00,172.80,4.80,0
+177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0
+163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0
+163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0
+158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0
+153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0
+144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0
+134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0
+129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0
+124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0
+120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0
+115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0
+105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0
+100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0
+96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0
+91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0
+86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0
+81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0
+76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0
+72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0
+62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0
+57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0
+52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0
+48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0
+43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0
+38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0
+33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0
+28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0
+24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0
+19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0
+19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0
+0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,6.41,0.00,1.00,0.00,0.00,0
+-9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,6.45,0.00,1.00,9.60,4.80,0
+-19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,6.49,0.00,1.00,19.20,9.60,0
+-28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0
+-33.60,14.40,6.54,0.00,1.00,28.80,9.60,0
+-33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0
+-38.40,14.40,6.58,0.00,1.00,38.40,14.40,0
+-43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0
+-48.00,19.20,6.62,0.00,1.00,48.00,14.40,0
+-57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0
+-62.40,19.20,6.66,0.00,1.00,57.60,19.20,0
+-67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0
+-72.00,24.00,6.71,0.00,1.00,67.20,19.20,0
+-76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0
+-81.60,24.00,6.75,0.00,1.00,76.80,24.00,0
+-86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0
+-91.20,24.00,6.79,0.00,1.00,86.40,24.00,0
+-96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0
+-100.80,24.00,6.84,0.00,1.00,96.00,24.00,0
+-105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0
+-110.40,24.00,6.88,0.00,1.00,105.60,24.00,0
+-115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0
+-120.00,19.20,6.92,0.00,1.00,115.20,19.20,0
+-129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0
+-134.40,19.20,6.96,0.00,1.00,124.80,19.20,0
+-139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0
+-144.00,14.40,7.01,0.00,1.00,134.40,14.40,0
+-148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0
+-148.80,14.40,7.05,0.00,1.00,144.00,14.40,0
+-153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0
+-158.40,9.60,7.09,0.00,1.00,153.60,9.60,0
+-163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0
+-168.00,4.80,7.13,0.00,1.00,163.20,4.80,0
+-172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,7.18,0.00,1.00,172.80,4.80,0
+177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0
+172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0
+163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0
+158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0
+148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0
+148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0
+144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0
+139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0
+134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0
+129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0
+120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0
+115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0
+110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0
+105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0
+100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0
+96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0
+91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0
+86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0
+81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0
+76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0
+72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0
+67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0
+62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0
+57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0
+48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0
+43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0
+38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0
+33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0
+33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0
+28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0
+24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0
+19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0
+9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0
+0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,8.01,0.00,1.00,0.00,0.00,0
+-9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,8.05,0.00,1.00,9.60,4.80,0
+-19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0
+-24.00,9.60,8.10,0.00,1.00,19.20,4.80,0
+-28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0
+-33.60,9.60,8.14,0.00,1.00,24.00,9.60,0
+-38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0
+-43.20,14.40,8.18,0.00,1.00,33.60,9.60,0
+-48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0
+-52.80,14.40,8.22,0.00,1.00,43.20,14.40,0
+-57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0
+-62.40,19.20,8.27,0.00,1.00,52.80,14.40,0
+-67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0
+-72.00,19.20,8.31,0.00,1.00,62.40,14.40,0
+-76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0
+-81.60,19.20,8.35,0.00,1.00,76.80,19.20,0
+-86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0
+-91.20,19.20,8.40,0.00,1.00,86.40,19.20,0
+-96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0
+-100.80,19.20,8.44,0.00,1.00,96.00,19.20,0
+-105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0
+-110.40,19.20,8.48,0.00,1.00,105.60,19.20,0
+-115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0
+-120.00,14.40,8.52,0.00,1.00,120.00,14.40,0
+-124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0
+-129.60,14.40,8.57,0.00,1.00,129.60,14.40,0
+-134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0
+-139.20,14.40,8.61,0.00,1.00,139.20,14.40,0
+-144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,8.65,0.00,1.00,148.80,9.60,0
+-153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0
+-158.40,4.80,8.69,0.00,1.00,158.40,9.60,0
+-163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,8.74,0.00,1.00,163.20,4.80,0
+-172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0
+153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0
+148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0
+144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0
+139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0
+134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0
+129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0
+124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0
+120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0
+115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0
+110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0
+105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0
+100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0
+96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0
+91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0
+86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0
+81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0
+76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0
+72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0
+67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0
+62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0
+52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0
+48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0
+43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0
+38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0
+33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0
+28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0
+24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0
+19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0
+14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0
+9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0
+0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,9.61,0.00,1.00,0.00,0.00,0
+-9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0
+-14.40,4.80,9.66,0.00,1.00,9.60,0.00,0
+-19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0
+-24.00,4.80,9.70,0.00,1.00,14.40,4.80,0
+-28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0
+-33.60,9.60,9.74,0.00,1.00,24.00,4.80,0
+-38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0
+-43.20,9.60,9.78,0.00,1.00,33.60,9.60,0
+-48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0
+-52.80,9.60,9.83,0.00,1.00,43.20,9.60,0
+-57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0
+-62.40,14.40,9.87,0.00,1.00,52.80,9.60,0
+-67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0
+-72.00,14.40,9.91,0.00,1.00,62.40,14.40,0
+-76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0
+-81.60,14.40,9.95,0.00,1.00,76.80,14.40,0
+-86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0
+-91.20,14.40,10.00,0.00,1.00,86.40,14.40,0
+-96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0
+-100.80,14.40,10.04,0.00,1.00,96.00,14.40,0
+-105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0
+-110.40,14.40,10.08,0.00,1.00,110.40,14.40,0
+-115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0
+-120.00,14.40,10.13,0.00,1.00,120.00,9.60,0
+-124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0
+-129.60,9.60,10.17,0.00,1.00,129.60,9.60,0
+-134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0
+-139.20,9.60,10.21,0.00,1.00,139.20,9.60,0
+-144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0
+-148.80,9.60,10.25,0.00,1.00,148.80,9.60,0
+-153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0
+-158.40,4.80,10.30,0.00,1.00,158.40,4.80,0
+-163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0
+-168.00,4.80,10.34,0.00,1.00,168.00,4.80,0
+-172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0
+168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0
+158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0
+148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0
+144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0
+139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0
+134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0
+129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0
+124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0
+120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0
+115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0
+110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0
+105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0
+100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0
+96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0
+91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0
+86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0
+81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0
+76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0
+72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0
+67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0
+62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0
+57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0
+48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0
+43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0
+38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0
+33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0
+28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0
+24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0
+19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0
+14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,11.21,0.00,1.00,0.00,0.00,0
+-9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,11.26,0.00,1.00,9.60,0.00,0
+-19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0
+-24.00,4.80,11.30,0.00,1.00,14.40,4.80,0
+-28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0
+-33.60,4.80,11.34,0.00,1.00,24.00,4.80,0
+-38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0
+-43.20,4.80,11.39,0.00,1.00,33.60,4.80,0
+-48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0
+-52.80,9.60,11.43,0.00,1.00,43.20,4.80,0
+-57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0
+-62.40,9.60,11.47,0.00,1.00,52.80,4.80,0
+-67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0
+-72.00,9.60,11.51,0.00,1.00,62.40,9.60,0
+-76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0
+-81.60,9.60,11.56,0.00,1.00,72.00,9.60,0
+-86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0
+-91.20,9.60,11.60,0.00,1.00,86.40,9.60,0
+-96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0
+-100.80,9.60,11.64,0.00,1.00,96.00,9.60,0
+-105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0
+-110.40,9.60,11.68,0.00,1.00,110.40,9.60,0
+-115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0
+-120.00,9.60,11.73,0.00,1.00,120.00,9.60,0
+-124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0
+-129.60,9.60,11.77,0.00,1.00,129.60,4.80,0
+-134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,11.81,0.00,1.00,139.20,4.80,0
+-144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0
+-148.80,4.80,11.86,0.00,1.00,148.80,4.80,0
+-153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0
+-158.40,4.80,11.90,0.00,1.00,158.40,4.80,0
+-163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0
+-168.00,0.00,11.94,0.00,1.00,168.00,4.80,0
+-172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0
+163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0
+158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0
+153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0
+148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0
+144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0
+139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0
+134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0
+129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0
+124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0
+120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0
+115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0
+110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0
+105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0
+100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0
+96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0
+91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0
+86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0
+81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0
+76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0
+72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0
+67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0
+62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0
+57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0
+52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0
+43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0
+33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0
+28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0
+24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0
+19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0
+9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,12.82,0.00,1.00,0.00,0.00,0
+-9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0
+-14.40,0.00,12.86,0.00,1.00,9.60,0.00,0
+-19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0
+-24.00,0.00,12.90,0.00,1.00,14.40,0.00,0
+-28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0
+-33.60,4.80,12.95,0.00,1.00,24.00,0.00,0
+-38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0
+-43.20,4.80,12.99,0.00,1.00,28.80,0.00,0
+-48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0
+-52.80,4.80,13.03,0.00,1.00,38.40,4.80,0
+-57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0
+-62.40,4.80,13.07,0.00,1.00,48.00,4.80,0
+-67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0
+-72.00,4.80,13.12,0.00,1.00,62.40,4.80,0
+-76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0
+-81.60,4.80,13.16,0.00,1.00,72.00,4.80,0
+-86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0
+-91.20,4.80,13.20,0.00,1.00,86.40,4.80,0
+-96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0
+-100.80,4.80,13.24,0.00,1.00,96.00,4.80,0
+-105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0
+-110.40,4.80,13.29,0.00,1.00,110.40,4.80,0
+-115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0
+-120.00,4.80,13.33,0.00,1.00,120.00,4.80,0
+-124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0
+-129.60,4.80,13.37,0.00,1.00,134.40,4.80,0
+-134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0
+-139.20,4.80,13.42,0.00,1.00,144.00,4.80,0
+-144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0
+-148.80,4.80,13.46,0.00,1.00,153.60,0.00,0
+-153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0
+-158.40,0.00,13.50,0.00,1.00,158.40,0.00,0
+-163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0
+-168.00,0.00,13.54,0.00,1.00,168.00,0.00,0
+-172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0
+168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0
+163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0
+158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0
+153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0
+148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0
+144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0
+139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0
+134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0
+129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0
+124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0
+120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0
+115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0
+110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0
+105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0
+100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0
+96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0
+91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0
+86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0
+81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0
+76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0
+72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0
+67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0
+57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0
+52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0
+48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0
+43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0
+38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0
+33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0
+28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0
+24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0
+19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0
+14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0
+9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0
+4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0
+-4.80,0.00,14.42,0.00,1.00,0.00,0.00,0
+-9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0
+-14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0
+-19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0
+-24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0
+-28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0
+-33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0
+-38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0
+-43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0
+-48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0
+-52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0
+-57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0
+-62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0
+-67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0
+-72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0
+-76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0
+-81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0
+-86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0
+-91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0
+-96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0
+-100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0
+-105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0
+-110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0
+-115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0
+-120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0
+-124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0
+-129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0
+-134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0
+-139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0
+-144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0
+-148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0
+-153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0
+-158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0
+-163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0
+-168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0
+-172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0
+177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0
+172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0
+168.00,0.00,15.25,0.00,1.00,4.80,0.00,0
+163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0
+158.40,0.00,15.30,0.00,1.00,9.60,0.00,0
+153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0
+148.80,0.00,15.34,0.00,1.00,19.20,0.00,0
+144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0
+139.20,0.00,15.38,0.00,1.00,28.80,0.00,0
+134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0
+129.60,0.00,15.42,0.00,1.00,33.60,0.00,0
+124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0
+120.00,0.00,15.47,0.00,1.00,43.20,0.00,0
+115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0
+110.40,0.00,15.51,0.00,1.00,57.60,0.00,0
+105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0
+100.80,0.00,15.55,0.00,1.00,67.20,0.00,0
+96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0
+91.20,0.00,15.59,0.00,1.00,81.60,0.00,0
+86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0
+81.60,0.00,15.64,0.00,1.00,96.00,0.00,0
+76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0
+72.00,0.00,15.68,0.00,1.00,110.40,0.00,0
+67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0
+62.40,0.00,15.72,0.00,1.00,120.00,0.00,0
+57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0
+52.80,0.00,15.77,0.00,1.00,134.40,0.00,0
+48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0
+43.20,0.00,15.81,0.00,1.00,144.00,0.00,0
+38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0
+33.60,0.00,15.85,0.00,1.00,153.60,0.00,0
+28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0
+24.00,0.00,15.89,0.00,1.00,158.40,0.00,0
+19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0
+14.40,0.00,15.94,0.00,1.00,168.00,0.00,0
+9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0
+4.80,0.00,15.98,0.00,1.00,172.80,0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
diff --git a/scripts/testv/stvOSBA_3ISM_2OA16c_ISM1.csv b/scripts/testv/stvOSBA_3ISM_2OA16c_ISM1.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9100a52238a17843ed9bd03fc3ded73440efb2d2
--- /dev/null
+++ b/scripts/testv/stvOSBA_3ISM_2OA16c_ISM1.csv
@@ -0,0 +1,1500 @@
+0.00,0.00,0.00,0.00,1.00,0.00,0.00,0
+4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0
+9.60,0.00,0.04,0.00,1.00,0.00,4.80,0
+14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0
+19.20,0.00,0.09,0.00,1.00,0.00,14.40,0
+24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0
+28.80,0.00,0.13,0.00,1.00,0.00,19.20,0
+33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0
+38.40,0.00,0.17,0.00,1.00,0.00,24.00,0
+43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0
+48.00,0.00,0.21,0.00,1.00,0.00,33.60,0
+52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0
+57.60,0.00,0.26,0.00,1.00,0.00,38.40,0
+62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0
+67.20,0.00,0.30,0.00,1.00,4.80,38.40,0
+72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0
+76.80,0.00,0.34,0.00,1.00,9.60,43.20,0
+81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0
+86.40,0.00,0.38,0.00,1.00,134.40,43.20,0
+91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0
+96.00,0.00,0.43,0.00,1.00,172.80,43.20,0
+100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0
+105.60,0.00,0.47,0.00,1.00,177.60,43.20,0
+110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0
+115.20,0.00,0.51,0.00,1.00,177.60,38.40,0
+120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0
+124.80,0.00,0.56,0.00,1.00,177.60,33.60,0
+129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0
+134.40,0.00,0.60,0.00,1.00,177.60,28.80,0
+139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0
+144.00,0.00,0.64,0.00,1.00,177.60,24.00,0
+148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0
+153.60,0.00,0.68,0.00,1.00,177.60,19.20,0
+158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0
+163.20,0.00,0.73,0.00,1.00,177.60,9.60,0
+168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0
+172.80,0.00,0.77,0.00,1.00,177.60,4.80,0
+177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0
+-177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0
+-172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0
+-168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0
+-163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0
+-158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0
+-153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0
+-148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0
+-144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0
+-139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0
+-134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0
+-129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0
+-124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0
+-120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0
+-115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0
+-110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0
+-105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0
+-100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0
+-96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0
+-91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0
+-86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0
+-81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0
+-76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0
+-72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0
+-67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0
+-62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0
+-57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0
+-52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0
+-48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0
+-43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0
+-38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0
+-33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0
+-28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0
+-24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0
+-19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0
+-14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0
+-9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0
+-4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0
+0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0
+19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0
+24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0
+28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0
+33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0
+43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0
+48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0
+52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0
+57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0
+62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0
+67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0
+72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0
+76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0
+81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0
+86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0
+91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0
+96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0
+100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0
+105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0
+110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0
+115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0
+120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0
+124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0
+129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0
+134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0
+139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0
+144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0
+148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0
+153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0
+158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0
+163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0
+172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,2.44,0.00,1.00,177.60,4.80,0
+-168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0
+-163.20,0.00,2.48,0.00,1.00,177.60,9.60,0
+-158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0
+-153.60,0.00,2.52,0.00,1.00,177.60,14.40,0
+-148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0
+-144.00,4.80,2.56,0.00,1.00,177.60,24.00,0
+-139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0
+-134.40,4.80,2.61,0.00,1.00,177.60,28.80,0
+-129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0
+-124.80,4.80,2.65,0.00,1.00,172.80,33.60,0
+-120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0
+-115.20,4.80,2.69,0.00,1.00,172.80,33.60,0
+-110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0
+-105.60,4.80,2.73,0.00,1.00,163.20,38.40,0
+-100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0
+-96.00,4.80,2.78,0.00,1.00,110.40,38.40,0
+-91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0
+-86.40,4.80,2.82,0.00,1.00,24.00,38.40,0
+-81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0
+-76.80,4.80,2.86,0.00,1.00,9.60,38.40,0
+-72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0
+-67.20,4.80,2.91,0.00,1.00,4.80,38.40,0
+-62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0
+-57.60,4.80,2.95,0.00,1.00,4.80,33.60,0
+-52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0
+-48.00,4.80,2.99,0.00,1.00,4.80,28.80,0
+-43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,3.03,0.00,1.00,0.00,24.00,0
+-33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0
+-28.80,0.00,3.08,0.00,1.00,0.00,19.20,0
+-24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0
+-19.20,0.00,3.12,0.00,1.00,0.00,14.40,0
+-14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,3.16,0.00,1.00,0.00,4.80,0
+-4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0
+0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0
+14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0
+28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0
+33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0
+38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0
+43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0
+48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0
+52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0
+57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0
+62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0
+67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0
+72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0
+76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0
+81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0
+86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0
+91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0
+96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0
+100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0
+105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0
+110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0
+115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0
+120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0
+124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0
+129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0
+134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0
+139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0
+144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0
+148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0
+153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0
+158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0
+163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0
+168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,4.04,0.00,1.00,177.60,4.80,0
+-168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,4.08,0.00,1.00,177.60,9.60,0
+-158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0
+-153.60,4.80,4.12,0.00,1.00,172.80,14.40,0
+-148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0
+-144.00,4.80,4.17,0.00,1.00,172.80,19.20,0
+-139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0
+-134.40,4.80,4.21,0.00,1.00,168.00,24.00,0
+-129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0
+-124.80,9.60,4.25,0.00,1.00,168.00,28.80,0
+-120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0
+-115.20,9.60,4.29,0.00,1.00,158.40,33.60,0
+-110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0
+-105.60,9.60,4.34,0.00,1.00,144.00,33.60,0
+-100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0
+-96.00,9.60,4.38,0.00,1.00,96.00,33.60,0
+-91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0
+-86.40,9.60,4.42,0.00,1.00,43.20,33.60,0
+-81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0
+-76.80,9.60,4.46,0.00,1.00,24.00,33.60,0
+-72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0
+-67.20,9.60,4.51,0.00,1.00,14.40,33.60,0
+-62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0
+-57.60,9.60,4.55,0.00,1.00,9.60,28.80,0
+-52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0
+-48.00,4.80,4.59,0.00,1.00,9.60,24.00,0
+-43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0
+-38.40,4.80,4.64,0.00,1.00,4.80,19.20,0
+-33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0
+-28.80,4.80,4.68,0.00,1.00,4.80,14.40,0
+-24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0
+-19.20,4.80,4.72,0.00,1.00,0.00,9.60,0
+-14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,4.76,0.00,1.00,0.00,4.80,0
+-4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0
+0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0
+9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0
+19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0
+24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0
+28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0
+38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0
+43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0
+48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0
+52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0
+57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0
+62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0
+67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0
+72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0
+76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0
+81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0
+86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0
+91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0
+96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0
+100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0
+105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0
+110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0
+115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0
+120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0
+124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0
+129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0
+134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0
+139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0
+144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0
+148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0
+153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0
+158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0
+163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,5.64,0.00,1.00,177.60,4.80,0
+-168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0
+-163.20,4.80,5.68,0.00,1.00,172.80,9.60,0
+-158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0
+-153.60,4.80,5.72,0.00,1.00,172.80,14.40,0
+-148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0
+-144.00,9.60,5.77,0.00,1.00,168.00,19.20,0
+-139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0
+-134.40,9.60,5.81,0.00,1.00,163.20,19.20,0
+-129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0
+-124.80,9.60,5.85,0.00,1.00,158.40,24.00,0
+-120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0
+-115.20,14.40,5.90,0.00,1.00,148.80,28.80,0
+-110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0
+-105.60,14.40,5.94,0.00,1.00,129.60,28.80,0
+-100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0
+-96.00,14.40,5.98,0.00,1.00,96.00,28.80,0
+-91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0
+-86.40,14.40,6.02,0.00,1.00,57.60,28.80,0
+-81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0
+-76.80,14.40,6.07,0.00,1.00,33.60,28.80,0
+-72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0
+-67.20,14.40,6.11,0.00,1.00,24.00,28.80,0
+-62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0
+-57.60,14.40,6.15,0.00,1.00,14.40,24.00,0
+-52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0
+-48.00,9.60,6.19,0.00,1.00,14.40,24.00,0
+-43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0
+-38.40,9.60,6.24,0.00,1.00,9.60,19.20,0
+-33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0
+-28.80,4.80,6.28,0.00,1.00,4.80,14.40,0
+-24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,6.32,0.00,1.00,4.80,9.60,0
+-14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0
+-9.60,0.00,6.37,0.00,1.00,0.00,4.80,0
+-4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0
+0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0
+19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0
+24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0
+28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0
+33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0
+38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0
+43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0
+48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0
+52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0
+57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0
+62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0
+67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0
+72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0
+76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0
+81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0
+86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0
+91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0
+96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0
+100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0
+105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0
+110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0
+115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0
+120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0
+124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0
+129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0
+134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0
+139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0
+144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0
+148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0
+153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0
+158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0
+168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0
+172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0
+-172.80,0.00,7.24,0.00,1.00,177.60,4.80,0
+-168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,7.28,0.00,1.00,172.80,9.60,0
+-158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0
+-153.60,9.60,7.33,0.00,1.00,168.00,9.60,0
+-148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0
+-144.00,9.60,7.37,0.00,1.00,163.20,14.40,0
+-139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0
+-134.40,14.40,7.41,0.00,1.00,158.40,19.20,0
+-129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0
+-124.80,14.40,7.46,0.00,1.00,153.60,19.20,0
+-120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0
+-115.20,19.20,7.50,0.00,1.00,139.20,24.00,0
+-110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0
+-105.60,19.20,7.54,0.00,1.00,120.00,24.00,0
+-100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0
+-96.00,19.20,7.58,0.00,1.00,96.00,24.00,0
+-91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0
+-86.40,19.20,7.63,0.00,1.00,62.40,24.00,0
+-81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0
+-76.80,19.20,7.67,0.00,1.00,43.20,24.00,0
+-72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0
+-67.20,19.20,7.71,0.00,1.00,28.80,24.00,0
+-62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0
+-57.60,14.40,7.75,0.00,1.00,24.00,19.20,0
+-52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0
+-48.00,14.40,7.80,0.00,1.00,14.40,19.20,0
+-43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0
+-38.40,9.60,7.84,0.00,1.00,9.60,14.40,0
+-33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0
+-28.80,9.60,7.88,0.00,1.00,9.60,14.40,0
+-24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0
+-19.20,4.80,7.93,0.00,1.00,4.80,9.60,0
+-14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,7.97,0.00,1.00,0.00,4.80,0
+-4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0
+0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0
+24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0
+28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0
+33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0
+33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0
+38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0
+43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0
+48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0
+57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0
+62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0
+67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0
+72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0
+76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0
+81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0
+86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0
+91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0
+96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0
+100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0
+105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0
+110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0
+115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0
+120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0
+129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0
+134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0
+139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0
+144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0
+148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0
+148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0
+153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0
+158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0
+163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0
+168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,8.84,0.00,1.00,177.60,4.80,0
+-168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0
+-163.20,4.80,8.89,0.00,1.00,172.80,4.80,0
+-158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0
+-153.60,9.60,8.93,0.00,1.00,168.00,9.60,0
+-148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,8.97,0.00,1.00,163.20,14.40,0
+-144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0
+-139.20,19.20,9.01,0.00,1.00,153.60,14.40,0
+-134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0
+-129.60,19.20,9.06,0.00,1.00,144.00,19.20,0
+-120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0
+-115.20,19.20,9.10,0.00,1.00,134.40,19.20,0
+-110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0
+-105.60,24.00,9.14,0.00,1.00,115.20,19.20,0
+-100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0
+-96.00,24.00,9.19,0.00,1.00,91.20,19.20,0
+-91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0
+-86.40,24.00,9.23,0.00,1.00,67.20,19.20,0
+-81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0
+-76.80,24.00,9.27,0.00,1.00,48.00,19.20,0
+-72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0
+-67.20,24.00,9.31,0.00,1.00,38.40,19.20,0
+-62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0
+-57.60,19.20,9.36,0.00,1.00,28.80,19.20,0
+-48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0
+-43.20,19.20,9.40,0.00,1.00,19.20,14.40,0
+-38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0
+-33.60,14.40,9.44,0.00,1.00,14.40,14.40,0
+-33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0
+-28.80,9.60,9.48,0.00,1.00,9.60,9.60,0
+-24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0
+-19.20,9.60,9.53,0.00,1.00,4.80,4.80,0
+-14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,9.57,0.00,1.00,0.00,4.80,0
+-4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0
+0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0
+4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0
+14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0
+19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0
+19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0
+28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0
+33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0
+38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0
+43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0
+52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0
+57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0
+62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0
+72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0
+76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0
+81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0
+86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0
+91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0
+96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0
+100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0
+105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0
+115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0
+120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0
+124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0
+129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0
+134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0
+139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0
+144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0
+148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0
+153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0
+158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0
+163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0
+172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,10.45,0.00,1.00,172.80,0.00,0
+-168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0
+-163.20,9.60,10.49,0.00,1.00,168.00,4.80,0
+-163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0
+-158.40,14.40,10.53,0.00,1.00,163.20,4.80,0
+-153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0
+-148.80,14.40,10.57,0.00,1.00,158.40,9.60,0
+-144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0
+-139.20,19.20,10.62,0.00,1.00,148.80,9.60,0
+-134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0
+-129.60,24.00,10.66,0.00,1.00,139.20,14.40,0
+-124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0
+-120.00,24.00,10.70,0.00,1.00,129.60,14.40,0
+-115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0
+-105.60,28.80,10.74,0.00,1.00,110.40,14.40,0
+-100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0
+-96.00,28.80,10.79,0.00,1.00,91.20,14.40,0
+-91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0
+-86.40,28.80,10.83,0.00,1.00,72.00,14.40,0
+-81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0
+-76.80,28.80,10.87,0.00,1.00,52.80,14.40,0
+-72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0
+-62.40,24.00,10.92,0.00,1.00,43.20,14.40,0
+-57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0
+-52.80,24.00,10.96,0.00,1.00,33.60,14.40,0
+-48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0
+-43.20,19.20,11.00,0.00,1.00,24.00,9.60,0
+-38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0
+-33.60,19.20,11.04,0.00,1.00,19.20,9.60,0
+-28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0
+-24.00,14.40,11.09,0.00,1.00,9.60,9.60,0
+-19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0
+-19.20,9.60,11.13,0.00,1.00,4.80,4.80,0
+-14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,11.17,0.00,1.00,0.00,4.80,0
+-4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0
+0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0
+14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0
+14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0
+19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0
+24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0
+28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0
+33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0
+43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0
+48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0
+52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0
+57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0
+62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0
+67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0
+72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0
+81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0
+86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0
+91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0
+96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0
+100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0
+110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0
+115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0
+120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0
+124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0
+129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0
+134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0
+139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0
+144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0
+148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0
+153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0
+163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0
+168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0
+168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,12.05,0.00,1.00,172.80,0.00,0
+-168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0
+-168.00,9.60,12.09,0.00,1.00,168.00,4.80,0
+-163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,12.13,0.00,1.00,163.20,4.80,0
+-153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,12.18,0.00,1.00,153.60,4.80,0
+-144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0
+-139.20,24.00,12.22,0.00,1.00,148.80,9.60,0
+-134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0
+-129.60,28.80,12.26,0.00,1.00,139.20,9.60,0
+-124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0
+-120.00,28.80,12.30,0.00,1.00,124.80,9.60,0
+-115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0
+-110.40,33.60,12.35,0.00,1.00,110.40,9.60,0
+-100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0
+-96.00,33.60,12.39,0.00,1.00,91.20,9.60,0
+-91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0
+-86.40,33.60,12.43,0.00,1.00,76.80,9.60,0
+-81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0
+-72.00,33.60,12.48,0.00,1.00,57.60,9.60,0
+-67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0
+-62.40,28.80,12.52,0.00,1.00,48.00,9.60,0
+-57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0
+-52.80,28.80,12.56,0.00,1.00,33.60,9.60,0
+-48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0
+-43.20,24.00,12.60,0.00,1.00,28.80,9.60,0
+-38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0
+-33.60,19.20,12.65,0.00,1.00,19.20,4.80,0
+-28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0
+-24.00,14.40,12.69,0.00,1.00,14.40,4.80,0
+-19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,12.73,0.00,1.00,9.60,4.80,0
+-14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0
+-9.60,4.80,12.77,0.00,1.00,4.80,0.00,0
+-4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0
+0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0
+9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0
+14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0
+24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0
+28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0
+33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0
+38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0
+43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0
+48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0
+52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0
+57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0
+62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0
+67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0
+72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0
+81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0
+86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0
+91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0
+96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0
+105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0
+110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0
+115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0
+120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0
+124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0
+129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0
+134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0
+139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0
+144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0
+148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0
+153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0
+158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0
+163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0
+168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0
+172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0
+-172.80,4.80,13.65,0.00,1.00,172.80,0.00,0
+-172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,13.69,0.00,1.00,168.00,0.00,0
+-163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0
+-158.40,14.40,13.74,0.00,1.00,158.40,4.80,0
+-153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0
+-148.80,19.20,13.78,0.00,1.00,153.60,4.80,0
+-144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0
+-139.20,24.00,13.82,0.00,1.00,144.00,4.80,0
+-134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0
+-129.60,28.80,13.86,0.00,1.00,134.40,4.80,0
+-124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0
+-120.00,33.60,13.91,0.00,1.00,120.00,4.80,0
+-115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0
+-110.40,38.40,13.95,0.00,1.00,105.60,4.80,0
+-105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0
+-96.00,38.40,13.99,0.00,1.00,91.20,4.80,0
+-91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0
+-86.40,38.40,14.03,0.00,1.00,76.80,4.80,0
+-81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0
+-72.00,38.40,14.08,0.00,1.00,62.40,4.80,0
+-67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0
+-62.40,33.60,14.12,0.00,1.00,48.00,4.80,0
+-57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0
+-52.80,33.60,14.16,0.00,1.00,38.40,4.80,0
+-48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0
+-43.20,28.80,14.21,0.00,1.00,28.80,4.80,0
+-38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0
+-33.60,24.00,14.25,0.00,1.00,24.00,4.80,0
+-28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0
+-24.00,19.20,14.29,0.00,1.00,14.40,4.80,0
+-19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0
+-14.40,9.60,14.33,0.00,1.00,9.60,0.00,0
+-9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0
+-9.60,4.80,14.38,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0
+0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0
+4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0
+9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0
+14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0
+19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0
+24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0
+24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0
+28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0
+33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0
+38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0
+43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0
+48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0
+52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0
+62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0
+67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0
+72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0
+76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0
+86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0
+91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0
+96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0
+105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0
+110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0
+115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0
+124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0
+129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0
+134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0
+139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0
+144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0
+148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0
+153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0
+158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0
+158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0
+163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0
+168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0
+172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0
+172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0
+-177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0
+-172.80,4.80,15.25,0.00,1.00,172.80,0.00,0
+-172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0
+-168.00,9.60,15.30,0.00,1.00,163.20,0.00,0
+-163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0
+-158.40,19.20,15.34,0.00,1.00,158.40,0.00,0
+-158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0
+-153.60,24.00,15.38,0.00,1.00,148.80,0.00,0
+-148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0
+-144.00,28.80,15.42,0.00,1.00,139.20,0.00,0
+-139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0
+-134.40,33.60,15.47,0.00,1.00,129.60,0.00,0
+-129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0
+-124.80,38.40,15.51,0.00,1.00,120.00,0.00,0
+-115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0
+-110.40,43.20,15.55,0.00,1.00,105.60,0.00,0
+-105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0
+-96.00,43.20,15.59,0.00,1.00,91.20,0.00,0
+-91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0
+-86.40,43.20,15.64,0.00,1.00,76.80,0.00,0
+-76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0
+-72.00,43.20,15.68,0.00,1.00,62.40,0.00,0
+-67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0
+-62.40,38.40,15.72,0.00,1.00,52.80,0.00,0
+-52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0
+-48.00,33.60,15.77,0.00,1.00,43.20,0.00,0
+-43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0
+-38.40,28.80,15.81,0.00,1.00,33.60,0.00,0
+-33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0
+-28.80,24.00,15.85,0.00,1.00,24.00,0.00,0
+-24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0
+-24.00,19.20,15.89,0.00,1.00,14.40,0.00,0
+-19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0
+-14.40,14.40,15.94,0.00,1.00,9.60,0.00,0
+-9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,15.98,0.00,1.00,4.80,0.00,0
+-4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0
+0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0
+14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0
+14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0
+19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0
+24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0
+28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0
+33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0
+38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0
+43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0
+48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0
+52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0
+57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0
+62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0
+72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0
+76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0
+86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0
+91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0
+100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0
+105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0
+110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0
+120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0
+124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0
+129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0
+134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0
+139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0
+144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0
+148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0
+153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0
+158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0
+163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0
+163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0
+168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0
+172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0
+-177.60,0.00,15.19,0.00,1.00,172.80,0.00,0
+-172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,15.15,0.00,1.00,168.00,0.00,0
+-168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0
+-163.20,14.40,15.10,0.00,1.00,158.40,0.00,0
+-163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0
+-158.40,24.00,15.06,0.00,1.00,153.60,0.00,0
+-153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0
+-148.80,28.80,15.02,0.00,1.00,144.00,0.00,0
+-144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0
+-139.20,33.60,14.97,0.00,1.00,134.40,0.00,0
+-134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0
+-129.60,38.40,14.93,0.00,1.00,124.80,4.80,0
+-124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0
+-120.00,43.20,14.89,0.00,1.00,110.40,4.80,0
+-110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0
+-105.60,48.00,14.85,0.00,1.00,96.00,4.80,0
+-100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0
+-91.20,48.00,14.80,0.00,1.00,86.40,4.80,0
+-86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0
+-76.80,48.00,14.76,0.00,1.00,72.00,4.80,0
+-72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0
+-62.40,43.20,14.72,0.00,1.00,62.40,4.80,0
+-57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0
+-52.80,43.20,14.68,0.00,1.00,48.00,4.80,0
+-48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0
+-43.20,38.40,14.63,0.00,1.00,38.40,0.00,0
+-38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0
+-33.60,28.80,14.59,0.00,1.00,28.80,0.00,0
+-28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0
+-24.00,24.00,14.55,0.00,1.00,24.00,0.00,0
+-19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0
+-14.40,19.20,14.50,0.00,1.00,14.40,0.00,0
+-14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0
+-9.60,9.60,14.46,0.00,1.00,4.80,0.00,0
+-4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,14.42,0.00,1.00,0.00,0.00,0
+0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0
+9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0
+9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0
+19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0
+24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0
+24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0
+28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0
+33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0
+38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0
+43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0
+48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0
+52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0
+62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0
+67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0
+76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0
+86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0
+91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0
+100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0
+105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0
+115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0
+120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0
+134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0
+139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0
+144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0
+148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0
+153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0
+158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0
+158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0
+163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0
+168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0
+172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0
+177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0
+-177.60,0.00,13.59,0.00,1.00,172.80,0.00,0
+-177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0
+-172.80,9.60,13.54,0.00,1.00,168.00,0.00,0
+-168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0
+-168.00,19.20,13.50,0.00,1.00,158.40,4.80,0
+-163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0
+-158.40,24.00,13.46,0.00,1.00,148.80,4.80,0
+-158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0
+-153.60,33.60,13.42,0.00,1.00,139.20,4.80,0
+-148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0
+-144.00,38.40,13.37,0.00,1.00,129.60,4.80,0
+-139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0
+-134.40,43.20,13.33,0.00,1.00,120.00,4.80,0
+-129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0
+-120.00,48.00,13.29,0.00,1.00,110.40,9.60,0
+-115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0
+-105.60,52.80,13.24,0.00,1.00,96.00,9.60,0
+-100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0
+-91.20,52.80,13.20,0.00,1.00,86.40,9.60,0
+-86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0
+-76.80,52.80,13.16,0.00,1.00,72.00,9.60,0
+-67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0
+-62.40,48.00,13.12,0.00,1.00,62.40,9.60,0
+-52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0
+-48.00,43.20,13.07,0.00,1.00,52.80,4.80,0
+-43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0
+-38.40,38.40,13.03,0.00,1.00,43.20,4.80,0
+-33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0
+-28.80,33.60,12.99,0.00,1.00,33.60,4.80,0
+-24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0
+-24.00,24.00,12.95,0.00,1.00,24.00,4.80,0
+-19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,12.90,0.00,1.00,14.40,4.80,0
+-9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0
+-9.60,9.60,12.86,0.00,1.00,9.60,0.00,0
+-4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,12.82,0.00,1.00,0.00,0.00,0
+0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0
+4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0
+9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0
+9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0
+14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0
+19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0
+24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0
+28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0
+28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0
+33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0
+38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0
+48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0
+52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0
+57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0
+67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0
+76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0
+81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0
+91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0
+100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0
+110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0
+115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0
+124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0
+129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0
+139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0
+144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0
+148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0
+153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0
+153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0
+158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0
+163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0
+163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0
+168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0
+172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0
+-177.60,0.00,11.98,0.00,1.00,172.80,0.00,0
+-177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,11.94,0.00,1.00,168.00,4.80,0
+-172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,11.90,0.00,1.00,158.40,4.80,0
+-163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0
+-163.20,24.00,11.86,0.00,1.00,148.80,4.80,0
+-158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0
+-153.60,33.60,11.81,0.00,1.00,139.20,9.60,0
+-153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0
+-148.80,38.40,11.77,0.00,1.00,129.60,9.60,0
+-144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0
+-139.20,48.00,11.73,0.00,1.00,120.00,9.60,0
+-129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0
+-124.80,52.80,11.68,0.00,1.00,110.40,9.60,0
+-115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0
+-110.40,57.60,11.64,0.00,1.00,96.00,14.40,0
+-100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0
+-91.20,57.60,11.60,0.00,1.00,86.40,14.40,0
+-81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0
+-76.80,57.60,11.56,0.00,1.00,72.00,14.40,0
+-67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0
+-57.60,52.80,11.51,0.00,1.00,62.40,9.60,0
+-52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0
+-48.00,48.00,11.47,0.00,1.00,52.80,9.60,0
+-38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0
+-33.60,43.20,11.43,0.00,1.00,43.20,9.60,0
+-28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0
+-28.80,33.60,11.39,0.00,1.00,33.60,9.60,0
+-24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,11.34,0.00,1.00,24.00,4.80,0
+-14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0
+-14.40,19.20,11.30,0.00,1.00,14.40,4.80,0
+-9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0
+-9.60,14.40,11.26,0.00,1.00,9.60,4.80,0
+-4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0
+-4.80,4.80,11.21,0.00,1.00,0.00,0.00,0
+0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0
+9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0
+14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0
+19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0
+19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0
+24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0
+28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0
+33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0
+38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0
+43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0
+48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0
+52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0
+62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0
+72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0
+81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0
+91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0
+100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0
+110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0
+120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0
+129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0
+134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0
+139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0
+144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0
+148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0
+153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0
+158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0
+163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0
+163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0
+168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0
+168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0
+172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0
+172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0
+177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0
+-177.60,0.00,10.38,0.00,1.00,172.80,0.00,0
+-177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0
+-172.80,9.60,10.34,0.00,1.00,163.20,4.80,0
+-172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0
+-168.00,19.20,10.30,0.00,1.00,158.40,4.80,0
+-168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0
+-163.20,28.80,10.25,0.00,1.00,148.80,9.60,0
+-163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0
+-158.40,33.60,10.21,0.00,1.00,139.20,9.60,0
+-153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0
+-148.80,43.20,10.17,0.00,1.00,129.60,14.40,0
+-144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0
+-139.20,48.00,10.13,0.00,1.00,120.00,14.40,0
+-134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0
+-129.60,57.60,10.08,0.00,1.00,105.60,14.40,0
+-120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0
+-110.40,62.40,10.04,0.00,1.00,96.00,19.20,0
+-100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0
+-91.20,62.40,10.00,0.00,1.00,86.40,19.20,0
+-81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0
+-72.00,62.40,9.95,0.00,1.00,76.80,19.20,0
+-62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0
+-52.80,57.60,9.91,0.00,1.00,62.40,14.40,0
+-48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0
+-43.20,52.80,9.87,0.00,1.00,52.80,14.40,0
+-38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0
+-33.60,43.20,9.83,0.00,1.00,43.20,14.40,0
+-28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0
+-24.00,38.40,9.78,0.00,1.00,33.60,9.60,0
+-19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0
+-19.20,28.80,9.74,0.00,1.00,24.00,9.60,0
+-14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0
+-9.60,19.20,9.70,0.00,1.00,19.20,4.80,0
+-9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,9.66,0.00,1.00,9.60,4.80,0
+-4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,9.61,0.00,1.00,0.00,0.00,0
+0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0
+9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0
+9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0
+14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0
+14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0
+19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0
+19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0
+24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0
+28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0
+33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0
+38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0
+43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0
+48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0
+57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0
+67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0
+81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0
+91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0
+105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0
+115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0
+124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0
+134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0
+139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0
+144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0
+148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0
+153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0
+158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0
+163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0
+163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0
+168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0
+177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0
+-177.60,0.00,8.78,0.00,1.00,172.80,0.00,0
+-177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,8.74,0.00,1.00,163.20,4.80,0
+-172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0
+-172.80,19.20,8.69,0.00,1.00,153.60,9.60,0
+-168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,8.65,0.00,1.00,148.80,9.60,0
+-163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0
+-163.20,38.40,8.61,0.00,1.00,139.20,14.40,0
+-158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0
+-153.60,43.20,8.57,0.00,1.00,129.60,19.20,0
+-148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0
+-144.00,52.80,8.52,0.00,1.00,115.20,19.20,0
+-139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0
+-134.40,57.60,8.48,0.00,1.00,105.60,19.20,0
+-124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0
+-115.20,67.20,8.44,0.00,1.00,96.00,24.00,0
+-105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0
+-91.20,67.20,8.40,0.00,1.00,86.40,24.00,0
+-81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0
+-67.20,67.20,8.35,0.00,1.00,76.80,24.00,0
+-57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0
+-48.00,62.40,8.31,0.00,1.00,67.20,19.20,0
+-43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0
+-38.40,52.80,8.27,0.00,1.00,57.60,19.20,0
+-33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0
+-28.80,48.00,8.22,0.00,1.00,43.20,19.20,0
+-24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0
+-19.20,38.40,8.18,0.00,1.00,33.60,14.40,0
+-19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0
+-14.40,28.80,8.14,0.00,1.00,28.80,14.40,0
+-14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0
+-9.60,24.00,8.10,0.00,1.00,19.20,9.60,0
+-9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0
+-4.80,14.40,8.05,0.00,1.00,9.60,4.80,0
+-4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,8.01,0.00,1.00,0.00,0.00,0
+0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0
+4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0
+4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0
+9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0
+9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0
+14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0
+14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0
+19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0
+24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0
+24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0
+28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0
+38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0
+43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0
+52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0
+62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0
+76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0
+96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0
+110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0
+120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0
+134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0
+139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0
+148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0
+153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0
+158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0
+158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0
+163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0
+163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0
+168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0
+168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0
+172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0
+172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0
+-177.60,0.00,7.18,0.00,1.00,172.80,0.00,0
+-177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,7.13,0.00,1.00,163.20,4.80,0
+-172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,7.09,0.00,1.00,153.60,9.60,0
+-172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0
+-168.00,28.80,7.05,0.00,1.00,144.00,14.40,0
+-168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0
+-163.20,38.40,7.01,0.00,1.00,134.40,19.20,0
+-163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0
+-158.40,48.00,6.96,0.00,1.00,124.80,19.20,0
+-158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0
+-153.60,57.60,6.92,0.00,1.00,115.20,24.00,0
+-148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0
+-139.20,62.40,6.88,0.00,1.00,105.60,24.00,0
+-134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0
+-120.00,67.20,6.84,0.00,1.00,96.00,28.80,0
+-110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0
+-96.00,72.00,6.79,0.00,1.00,86.40,28.80,0
+-76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0
+-62.40,72.00,6.75,0.00,1.00,76.80,28.80,0
+-52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0
+-43.20,62.40,6.71,0.00,1.00,67.20,24.00,0
+-38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0
+-28.80,57.60,6.66,0.00,1.00,57.60,24.00,0
+-24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0
+-24.00,48.00,6.62,0.00,1.00,48.00,19.20,0
+-19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0
+-14.40,38.40,6.58,0.00,1.00,38.40,19.20,0
+-14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0
+-9.60,33.60,6.54,0.00,1.00,28.80,14.40,0
+-9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0
+-9.60,24.00,6.49,0.00,1.00,19.20,9.60,0
+-4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,6.45,0.00,1.00,9.60,4.80,0
+-4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,6.41,0.00,1.00,0.00,0.00,0
+0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0
+4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0
+9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0
+9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0
+14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0
+14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0
+14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0
+19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0
+24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0
+28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0
+33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0
+43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0
+57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0
+76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0
+96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0
+115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0
+129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0
+139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0
+148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0
+153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0
+158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0
+163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0
+163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0
+168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0
+168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0
+172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0
+172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0
+172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0
+177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0
+-177.60,0.00,5.58,0.00,1.00,172.80,0.00,0
+-177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,5.53,0.00,1.00,163.20,4.80,0
+-177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0
+-172.80,19.20,5.49,0.00,1.00,153.60,9.60,0
+-172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,5.45,0.00,1.00,144.00,14.40,0
+-172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0
+-168.00,38.40,5.40,0.00,1.00,134.40,19.20,0
+-168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0
+-163.20,48.00,5.36,0.00,1.00,124.80,24.00,0
+-163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0
+-158.40,57.60,5.32,0.00,1.00,115.20,28.80,0
+-153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0
+-148.80,67.20,5.28,0.00,1.00,105.60,28.80,0
+-139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0
+-129.60,72.00,5.23,0.00,1.00,96.00,28.80,0
+-115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0
+-96.00,76.80,5.19,0.00,1.00,86.40,33.60,0
+-76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0
+-57.60,72.00,5.15,0.00,1.00,76.80,33.60,0
+-43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0
+-33.60,67.20,5.11,0.00,1.00,67.20,28.80,0
+-28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0
+-24.00,57.60,5.06,0.00,1.00,57.60,28.80,0
+-19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0
+-14.40,52.80,5.02,0.00,1.00,48.00,24.00,0
+-14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0
+-14.40,43.20,4.98,0.00,1.00,38.40,19.20,0
+-9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0
+-9.60,33.60,4.93,0.00,1.00,28.80,19.20,0
+-4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,4.89,0.00,1.00,19.20,14.40,0
+-4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0
+-4.80,14.40,4.85,0.00,1.00,9.60,9.60,0
+-0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,4.81,0.00,1.00,0.00,4.80,0
+0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0
+4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0
+4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0
+4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0
+4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0
+9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0
+9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0
+9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0
+14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0
+14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0
+19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0
+24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0
+33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0
+43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0
+67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0
+96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0
+124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0
+144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0
+153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0
+158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0
+163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0
+168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0
+168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0
+168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0
+172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0
+172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0
+172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0
+172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0
+177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0
+177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0
+-177.60,0.00,3.97,0.00,1.00,172.80,0.00,0
+-177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,3.93,0.00,1.00,163.20,4.80,0
+-177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,3.89,0.00,1.00,153.60,14.40,0
+-177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0
+-172.80,28.80,3.85,0.00,1.00,144.00,19.20,0
+-172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0
+-172.80,38.40,3.80,0.00,1.00,134.40,24.00,0
+-172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0
+-168.00,48.00,3.76,0.00,1.00,124.80,28.80,0
+-168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0
+-168.00,57.60,3.72,0.00,1.00,115.20,28.80,0
+-163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0
+-158.40,67.20,3.67,0.00,1.00,105.60,33.60,0
+-153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0
+-144.00,76.80,3.63,0.00,1.00,96.00,33.60,0
+-124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0
+-96.00,81.60,3.59,0.00,1.00,86.40,38.40,0
+-67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0
+-43.20,76.80,3.55,0.00,1.00,76.80,38.40,0
+-33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0
+-24.00,72.00,3.50,0.00,1.00,67.20,33.60,0
+-19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0
+-14.40,62.40,3.46,0.00,1.00,57.60,33.60,0
+-14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0
+-9.60,52.80,3.42,0.00,1.00,48.00,28.80,0
+-9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0
+-9.60,43.20,3.38,0.00,1.00,38.40,24.00,0
+-4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0
+-4.80,33.60,3.33,0.00,1.00,28.80,19.20,0
+-4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0
+-4.80,24.00,3.29,0.00,1.00,19.20,14.40,0
+-4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0
+-0.00,14.40,3.25,0.00,1.00,9.60,9.60,0
+-0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,3.20,0.00,1.00,0.00,4.80,0
+0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0
+0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0
+0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0
+0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0
+0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0
+0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0
+0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0
+0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0
+4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0
+4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0
+4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0
+4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0
+4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0
+4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0
+9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0
+9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0
+14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0
+24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0
+43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0
+110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0
+148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0
+163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0
+168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0
+172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0
+172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0
+172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0
+172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0
+177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0
+177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0
+177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0
+177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0
+177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0
+177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0
+177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0
+177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0
+177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0
+177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0
+177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0
+-177.60,0.00,2.37,0.00,1.00,172.80,0.00,0
+-177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0
+-177.60,9.60,2.33,0.00,1.00,163.20,9.60,0
+-177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0
+-177.60,19.20,2.29,0.00,1.00,153.60,14.40,0
+-177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0
+-177.60,28.80,2.24,0.00,1.00,144.00,19.20,0
+-177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0
+-177.60,38.40,2.20,0.00,1.00,134.40,24.00,0
+-177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0
+-177.60,48.00,2.16,0.00,1.00,124.80,28.80,0
+-172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0
+-172.80,57.60,2.11,0.00,1.00,115.20,33.60,0
+-172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0
+-172.80,67.20,2.07,0.00,1.00,105.60,38.40,0
+-168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0
+-163.20,76.80,2.03,0.00,1.00,96.00,38.40,0
+-148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0
+-110.40,86.40,1.99,0.00,1.00,86.40,43.20,0
+-43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0
+-24.00,81.60,1.94,0.00,1.00,76.80,43.20,0
+-14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0
+-9.60,72.00,1.90,0.00,1.00,67.20,38.40,0
+-9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0
+-4.80,62.40,1.86,0.00,1.00,57.60,33.60,0
+-4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0
+-4.80,52.80,1.82,0.00,1.00,48.00,33.60,0
+-4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0
+-4.80,43.20,1.77,0.00,1.00,38.40,28.80,0
+-4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0
+-0.00,33.60,1.73,0.00,1.00,28.80,19.20,0
+-0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0
+-0.00,24.00,1.69,0.00,1.00,19.20,14.40,0
+-0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0
+-0.00,14.40,1.64,0.00,1.00,9.60,9.60,0
+-0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0
+-0.00,4.80,1.60,0.00,1.00,0.00,4.80,0
+-0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0
+-0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0
+-0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0
+-0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0
+-0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0
+-0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0
+-0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0
+-0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0
+-0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0
+-0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0
+-0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0
+-0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0
+-0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0
+-0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0
+-4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0
+-4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0
+-4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0
+-9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0
+-19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0
+-134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0
+-168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0
+-172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0
+-177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0
+-177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0
+-177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0
+-177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0
+-177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0
+-177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0
+-177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0
+-177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0
+-177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0
+-177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0
+-177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0
+-177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0
+-177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0
+-177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0
+-177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0
+-177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0
+177.60,0.00,0.77,0.00,1.00,172.80,0.00,0
+177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0
+177.60,9.60,0.73,0.00,1.00,163.20,9.60,0
+177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0
+177.60,19.20,0.68,0.00,1.00,153.60,14.40,0
+177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0
+177.60,28.80,0.64,0.00,1.00,144.00,24.00,0
+177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0
+177.60,38.40,0.60,0.00,1.00,134.40,28.80,0
+177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0
+177.60,48.00,0.56,0.00,1.00,124.80,33.60,0
+177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0
+177.60,57.60,0.51,0.00,1.00,115.20,38.40,0
+177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0
+177.60,67.20,0.47,0.00,1.00,105.60,43.20,0
+177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0
+172.80,76.80,0.43,0.00,1.00,96.00,43.20,0
+168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0
+134.40,86.40,0.38,0.00,1.00,86.40,48.00,0
+19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0
+9.60,81.60,0.34,0.00,1.00,76.80,43.20,0
+4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0
+4.80,72.00,0.30,0.00,1.00,67.20,43.20,0
+4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0
+0.00,62.40,0.26,0.00,1.00,57.60,38.40,0
+0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0
+0.00,52.80,0.21,0.00,1.00,48.00,33.60,0
+0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0
+0.00,43.20,0.17,0.00,1.00,38.40,28.80,0
+0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0
+0.00,33.60,0.13,0.00,1.00,28.80,24.00,0
+0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0
+0.00,24.00,0.09,0.00,1.00,19.20,19.20,0
+0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0
+0.00,14.40,0.04,0.00,1.00,9.60,9.60,0
+0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0
+0.00,4.80,0.00,0.00,1.00,0.00,4.80,0
diff --git a/scripts/testv/stvOSBA_3ISM_2OA16c_ISM2.csv b/scripts/testv/stvOSBA_3ISM_2OA16c_ISM2.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f
--- /dev/null
+++ b/scripts/testv/stvOSBA_3ISM_2OA16c_ISM2.csv
@@ -0,0 +1,1500 @@
+0.00,4.80,16.00,0.00,1.00,0.00,0.00,0
+0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0
+0.00,14.40,15.96,0.00,1.00,4.80,9.60,0
+0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0
+0.00,24.00,15.91,0.00,1.00,14.40,19.20,0
+0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0
+0.00,33.60,15.87,0.00,1.00,19.20,28.80,0
+0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0
+0.00,43.20,15.83,0.00,1.00,28.80,38.40,0
+0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0
+0.00,52.80,15.79,0.00,1.00,38.40,48.00,0
+0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0
+0.00,62.40,15.74,0.00,1.00,48.00,57.60,0
+4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0
+4.80,72.00,15.70,0.00,1.00,57.60,67.20,0
+4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0
+9.60,81.60,15.66,0.00,1.00,72.00,76.80,0
+19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0
+134.40,86.40,15.62,0.00,1.00,86.40,86.40,0
+168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0
+172.80,76.80,15.57,0.00,1.00,100.80,86.40,0
+177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0
+177.60,67.20,15.53,0.00,1.00,110.40,76.80,0
+177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0
+177.60,57.60,15.49,0.00,1.00,124.80,67.20,0
+177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0
+177.60,48.00,15.44,0.00,1.00,134.40,57.60,0
+177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0
+177.60,38.40,15.40,0.00,1.00,144.00,48.00,0
+177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0
+177.60,28.80,15.36,0.00,1.00,153.60,38.40,0
+177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0
+177.60,19.20,15.32,0.00,1.00,158.40,28.80,0
+177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0
+177.60,9.60,15.27,0.00,1.00,168.00,19.20,0
+177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0
+177.60,0.00,15.23,0.00,1.00,172.80,9.60,0
+-177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0
+-177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0
+-177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0
+-177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0
+-177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0
+-177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0
+-177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0
+-177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0
+-177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0
+-177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0
+-177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0
+-177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0
+-177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0
+-177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0
+-177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0
+-177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0
+-172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0
+-168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0
+-134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0
+-19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0
+-9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0
+-4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0
+-4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0
+-4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0
+-0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0
+-0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0
+-0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0
+-0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0
+-0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0
+-0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0
+-0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0
+-0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0
+-0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0
+-0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0
+-0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0
+-0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0
+-0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0
+-0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,14.40,0.00,1.00,0.00,0.00,0
+-0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,14.36,0.00,1.00,9.60,9.60,0
+-0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0
+-0.00,24.00,14.31,0.00,1.00,14.40,19.20,0
+-0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0
+-0.00,33.60,14.27,0.00,1.00,24.00,28.80,0
+-4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0
+-4.80,43.20,14.23,0.00,1.00,28.80,38.40,0
+-4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0
+-4.80,52.80,14.18,0.00,1.00,38.40,48.00,0
+-4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0
+-4.80,62.40,14.14,0.00,1.00,48.00,57.60,0
+-9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0
+-9.60,72.00,14.10,0.00,1.00,62.40,67.20,0
+-14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0
+-24.00,81.60,14.06,0.00,1.00,72.00,76.80,0
+-43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0
+-110.40,86.40,14.01,0.00,1.00,86.40,86.40,0
+-148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0
+-163.20,76.80,13.97,0.00,1.00,96.00,81.60,0
+-168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0
+-172.80,67.20,13.93,0.00,1.00,110.40,72.00,0
+-172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0
+-172.80,57.60,13.89,0.00,1.00,120.00,62.40,0
+-172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0
+-177.60,48.00,13.84,0.00,1.00,134.40,52.80,0
+-177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0
+-177.60,38.40,13.80,0.00,1.00,144.00,43.20,0
+-177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0
+-177.60,28.80,13.76,0.00,1.00,148.80,33.60,0
+-177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,13.71,0.00,1.00,158.40,24.00,0
+-177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,13.67,0.00,1.00,168.00,14.40,0
+-177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,13.63,0.00,1.00,172.80,4.80,0
+177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0
+177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0
+177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0
+177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0
+177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0
+177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0
+177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0
+177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0
+177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0
+177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0
+177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0
+172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0
+172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0
+172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0
+172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0
+168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0
+163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0
+148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0
+110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0
+43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0
+24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0
+14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0
+9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0
+9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0
+4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0
+4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0
+4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0
+4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0
+4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0
+4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0
+0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0
+0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0
+0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0
+0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0
+0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0
+0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0
+0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0
+0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0
+-0.00,4.80,12.80,0.00,1.00,0.00,0.00,0
+-0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0
+-0.00,14.40,12.75,0.00,1.00,9.60,9.60,0
+-4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0
+-4.80,24.00,12.71,0.00,1.00,14.40,19.20,0
+-4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0
+-4.80,33.60,12.67,0.00,1.00,24.00,28.80,0
+-4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0
+-9.60,43.20,12.62,0.00,1.00,33.60,38.40,0
+-9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0
+-9.60,52.80,12.58,0.00,1.00,43.20,48.00,0
+-14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0
+-14.40,62.40,12.54,0.00,1.00,52.80,57.60,0
+-19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0
+-24.00,72.00,12.50,0.00,1.00,62.40,67.20,0
+-33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0
+-43.20,76.80,12.45,0.00,1.00,72.00,72.00,0
+-67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0
+-96.00,81.60,12.41,0.00,1.00,86.40,81.60,0
+-124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0
+-144.00,76.80,12.37,0.00,1.00,96.00,76.80,0
+-153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0
+-158.40,67.20,12.33,0.00,1.00,110.40,72.00,0
+-163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0
+-168.00,57.60,12.28,0.00,1.00,120.00,62.40,0
+-168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0
+-168.00,48.00,12.24,0.00,1.00,129.60,52.80,0
+-172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0
+-172.80,38.40,12.20,0.00,1.00,139.20,43.20,0
+-172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0
+-172.80,28.80,12.15,0.00,1.00,148.80,33.60,0
+-177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0
+-177.60,19.20,12.11,0.00,1.00,158.40,24.00,0
+-177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0
+-177.60,9.60,12.07,0.00,1.00,168.00,14.40,0
+-177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0
+-177.60,0.00,12.03,0.00,1.00,172.80,4.80,0
+177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0
+177.60